Search results

  1. M

    save date in table

    Hi there... I have a table which contains a field with the name "date". i have defined the property "date/time" on the data type of this field and as an input mask I have: “99/99/0000;0;_” i want the date to be saved as 02/02/2008 but every time I try to save it the zero digits are deleted and...
  2. M

    calculate table fields in the report

    Hi there. I have two tables in my database. the first one called "customers" where the customer's data goes. the second called "kiniseis" and there are connected together. The table “kinisis” has two fields the first one called “phre” and the second called “edose” When my customer buy...
  3. M

    openfile with date in the filename

    :confused: hi there i use this code to copy a file from a source folder to the destination folder. Dim myfolder$, myfoldertarget myfolder = "C:\source\" myfoldertarget = "c:\target\" Dim fs As Object Set fs = CreateObject("scripting.filesystemobject") fs.CopyFile (myfolder) & [Mylistbox]...
  4. M

    copyfile with date in the filename

    hi there i use this code to copy a file from a source folder to the destination folder. Dim myfolder$, myfoldertarget myfolder = "C:\source\" myfoldertarget = "c:\target\" Dim fs As Object Set fs = CreateObject("scripting.filesystemobject") fs.CopyFile (myfolder) & [mylistbox]...
  5. M

    label on mouse move

    hi there i have a label caled "lbl1" i would like om mouse move, the label's name to be bold only the time that the mouse is up to label can you please help me?
  6. M

    copy a folder to many subfolders

    Hi there it's the second time that i'm trying to find answer to my problem. the first, nobody answer me. Please help me it;s very important to me... i have this code to copy the contents of the source folder to many subfolders: Private Sub Command0_Click() Dim fso As Scripting.FileSystemObject...
  7. M

    how can i copy one folder to many subfolders??

    Hi there i have this code to copy the contents of the source folder to many subfolders: Private Sub Command0_Click() Dim fso As Scripting.FileSystemObject Set fso = CreateObject("Scripting.FileSystemObject") Dim dfol As Folder Dim sfol As Folder Dim subfldr As Folder...
  8. M

    how can i copy a folder to many subfolders?

    Hi there i would like to copy folders through forms specifically i would like to copy the folder "C:\mike" to the subfolders of the "c:\test\" how can i do that? in the past i used the "copyfolder" function to do something like that: ' copy all folders from source to destination folder Dim...
Back
Top Bottom