Compare cert salaries and plan your next career move
cairtaker wrote: Sounds like a really big job for access? I'm only avg with access and sql but do you think access will handle it? I've noticed that access tends to bog down pretty quick. Good luck, April 7, my security test.
2lazybutsmart wrote: Notes...?? That's like giving access something to choke on. I think the NoteID method you mentioned in your first post is the best solution. Coupled with a simple VB program that will display the notes on a rich text box control or something like that, you're done. 2lbs.
Megadeth4168 wrote: I've tried altering other fields
Silver Bullet wrote: Megadeth4168 wrote: I've tried altering other fields I apologize. I was referring to the Table name..... but now I see that the table name has a "-". Rename the Table to read tblrms and the field to read Reported Date Time. (Be sure that you rename the field in the Table and the Form) In other words just remove the special characters form your "fields" and "tables". If your forms have special characters then rename them as well. I am assuming that since you have created a command button then you have a form created from the table [tbl-rms]. You will want to have the Macro set the Date in that form.....not the table In the SetValue...it should look like this after renaming. Item: [Forms]!i]your form name[/i![Report Date Time] Expression: Now()Or Item: [Report Date Time] Expression: Now() Note that there are NO = before the Item or the Expression.
Megadeth4168 wrote: I guess it's back to my original question now...
2lazybutsmart wrote: You can accomplish all of that in a simple --very very very simple -- VB application. Heck, you can even do it with a few lines of asp code. Really. This isn't frusturating at all if you don't make it so. It's very simple. Are you familiar with VB or asp coding? 2lbs.
Private Sub Command3_Click() On Error GoTo Err_Command3_Click Dim oApp As Object Dim strSaveName As String strSaveName = Nz(Me![Case Number]) Set oApp = CreateObject("Word.Application") oApp.Visible = True oApp.Documents.Add ' Writes the word Case Number followed by variable on doc oApp.Selection.TypeText "Case Number: " & strSaveName ' Save the document. oApp.ActiveDocument.SaveAs filename:="P:\nav\" & strSaveName ' Clear the variable from memory. Set oApp = Nothing Exit_Command3_Click: Exit Sub Err_Command3_Click: MsgBox Err.Description Resume Exit_Command3_Click End Sub Private Sub Command5_Click() On Error GoTo Err_Command5_Click Dim oApp As Object Dim strSaveName As String strSaveName = Nz(Me![Case Number]) Set oApp = CreateObject("Word.Application") oApp.Visible = True 'Opens document in Word oApp.Documents.Open filename:="P:\nav\" & strSaveName Exit_Command5_Click: Exit Sub Err_Command5_Click: MsgBox Err.Description Resume Exit_Command5_Click End Sub
Compare salaries for top cybersecurity certifications. Free download for TechExams community.