Recent content by miketamp

  1. M

    save date in table

    Thank you all for the answers. The problem was on the regional settings. In my table the date is correct now. But I still have a problem. I have a query to find all the records for a specific month. In the query there is an extra field “monthfind” which is hidden and in the criteria line I have...
  2. 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...
  3. M

    calculate table fields in the report

    Can You Please Be More Specific??
  4. M

    calculate table fields in the report

    the customer with the kinisis are connected through the code_cust field. the problem is that in the report i need to have all the customers that own to me only their names and the total amount that they own to me. i dont want to make a report for each one
  5. 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...
  6. M

    openfile with date in the filename

    help.... If you look my example you will understand what I am looking for. It’s not a specific file that I need to open. Every time a file copied from the source folder to the destination folder, the program add's to the filename the current date. After that the program must run the file that...
  7. M

    openfile with date in the filename

    Hi Summerwind first of all thanks for the reply can you please post me the code to do that because i don't know exactly what you mean. thanx...
  8. 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]...
  9. M

    copyfile with date in the filename

    thanx men... it works!
  10. M

    copyfile with date in the filename

    hi there thanx for the reply, but it doesn't work i have an run-time error '13' time mismatch. Can you please tell me why? what about if it isn't a *.doc file but any file??? can you please help me? thanx...
  11. 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]...
  12. 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?
  13. M

    copy a folder to many subfolders

    Hi lagbolt thanx for the reply, but the code you give me has exactly the same results with my code .please help me with this: if we suppose that my source folder is :"source" and includes the subfolder "srcsub1" and "srcsub2" .if we suppose that the destination folder is the "destination" i want...
  14. 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...
  15. 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...
Back
Top Bottom