Search results

  1. arnelgp

    Ghantt charts

    i think he wanted to create, not to Buy..
  2. arnelgp

    Another simple Appointment Calendar

    revisited and added some "priority" coloring and at a glance you can know how may appointment on a particular day (number of appointments in parenthesis beside day number).
  3. arnelgp

    Solved Funny sorting

    i tested the finnish sort order on a test db with some records with extended chars and it sorted right, same as in english sort order.
  4. arnelgp

    Getting an error 3825, complaining about multi-valued fields, but none are involved.

    it's not about the backslash, it's about the code actually. it is different from what code you posted.
  5. arnelgp

    Solved Funny sorting

    you can create an Update query to remove those "space" thing (be sure to make a copy of your table first, for backup). Update YourTableName Set [SecondFieldName] = RemoveNonPrintable([SecondFieldName]) Where Not ([SecondFieldName] Is Null); on a module: Function RemoveNonPrintable$(ByVal...
  6. arnelgp

    Getting an error 3825, complaining about multi-valued fields, but none are involved.

    did you try the "code", because it is different from what you have.
  7. arnelgp

    Solved Funny sorting

    what do you mean by ANSI codes?
  8. arnelgp

    Solved Funny sorting

    not sure if there are "non-printable" characters on your field. sometimes these hidden chars are the culprit. they can get there by copy/pasting from other source apps.
  9. arnelgp

    Solved Funny sorting

    on which field(s) did you sort?
  10. arnelgp

    Opening record by ID opens a new record

    if you want your Form to be Always on New Record, you set it to Yes.
  11. arnelgp

    Control format disappears when clicked

    or you can create a "button" on your form (btnCopyID) and on the click event of the form it willl copy the "formatted" id: Private sub YourBtn_Click() Dim sID As String If IsNumeric(Me.ID) Then sID =Format$(Me.[ID], "PUR00000") 'copy sID to clipboard Clipboard sID End If End Sub '...
  12. arnelgp

    Control format disappears when clicked

    the "Format" is for "display" purpose only, what is stored is Numeric (your field is Numeric). if you need to make copy of the "formatted" textbox. create another textbox (dummy textbox) and assign =Format$([ID], "PUR00000") as the Control Source.
  13. arnelgp

    Opening record by ID opens a new record

    your Main Form's Data Entry property is Set to Yes. set it to No. Property->Data->Data Entry No
  14. arnelgp

    Showing progress window in a macro

    you can also use the Status bar of Ms Access to show the progress: syscmd acSysCmdSetStatus,"40% completed" when done, just clear the Status bar: syscmd acSysCmdClearStatus
  15. arnelgp

    Getting an error 3825, complaining about multi-valued fields, but none are involved.

    i believe strOutFile is the externa db name, 'make sure to add backspace to OutPath strOutPath = Replace$(strOutPath & "\", "\\", "\") strSQL = "Insert Into [" & strOutTableName & "] In '" & strOutPath & strOutFile & "' " & _ "Select X.* from [" & strSource & "] As X;"
  16. arnelgp

    Variable assignment not working.

    it's not a problem alright. it tells that the return of the function is a string. that is the old vb declaration and still works.
  17. arnelgp

    Solved Date is displaying odd behavior

    it will not affect previous saved records. btw, just tested on ms access BE, and did work.
  18. arnelgp

    Smart Domain Functions Builder

    the startup form has an arabic control name (the detail section of the form). so you need to rename it to english. you create new db and copy all objects from the original db.
  19. arnelgp

    Solved Date is displaying odd behavior

    use: =Now() as the Default value and don't use any Format on it. on design view of Form, Forms!Form0_AddEditJob, click on TBOX_DateInitial textbox and on Property->Format, use: dd-mm-yyyy ms access save date in US date format. the Format property of TBox_DAteInitial is for viewing purpose...
  20. arnelgp

    Variable assignment not working.

    if somehow the reference to the Object is lost, can you "force" re-create the object again: Public Function RegKeyRead$(ByVal RegKey$) ' Reads registry key RegKey, if key doesn't exist, return value is "" On Error Resume Next ' re-create the gbl_SH again before ' calling any of its Method ' '...
Back
Top Bottom