Search results

  1. J

    "First Word" & chr(13) & " Second Word"

    Great!!! Thanks a lot!!!
  2. J

    "First Word" & chr(13) & " Second Word"

    Hi All, I have a text box. I want to display "First Word" and "Second Word" in two separate lines. If I use Chr(13), it simply adds a small box between the two words. Is there any way I can have them on two diff lines. Thanks in advance, Jatz
  3. J

    MIN in Row

    Thanks Pat, I used a function to get my job done. But i'll definitely learn normalization to make my software more efficient. Regards, Jatz
  4. J

    MIN in Row

    Hi All, In order to determine the minimum value for a field in a table, we can use MIN() function. BUT, is there a way that I can find minimum value in a particular row of a table. For Eg: I have 5 date fields in the table & for each row I want to display minimum of all these dates. Thanks...
  5. J

    Move or Copy Email by Drag & Drop on form

    Hi all, Is there a way that I can move or copy emails directly from Outlook to a form by using drag & drop? I know how to do for the files in explorer, but can't figure out how to do from outlook. Thanks, Jatz
  6. J

    The Expression On Click / On Load - Errors

    can somebody pls help me Regards, Jatz
  7. J

    The Expression On Click / On Load - Errors

    Hi All, I have a access code that is working fine on 5 machines. But when i try to run it on my 6th machine, I get all kinds of errors, such as : "The expression On Click you entered as the event property setting produced the following error: Sub or Function not defined" Similarly I am getting...
  8. J

    Opening forms directly (instead of Opening MS ACCESS)

    Hi All, Is there a way that when the user clicks on a database file, the form pops up without opening MS Access window. Thx, Jatz
  9. J

    Windows Explorer on Form

    Thanks Mikk, I used Microsoft TreeView Class on form to get my job done. I used two panes - one for the Folders & one for the files thanks all, Jatz
  10. J

    transferspreadsheet

    Try the following code: File = "c:\temp.xls" If Shell("excel.exe " & Chr(34) & File & Chr(34), 1) then ' Success else 'Failure Msgbox " error opening the file" endif
  11. J

    Extract LastSavedBy information

    Actually I am writing an Access application that will store links to all the files in a particular folder. In adddition to storing the links, I want it to save information such as "Last Saved by" or "Author". the files could be any file (text, excel, word, mdb) Thanks, Jatz
  12. J

    Extract LastSavedBy information

    Thx for the reply, BUT FSO does not have the function to extract the "LAST SAVED BY" data. It can extract most of the other data such as "Last Saved"..... Thanks, Jatz
  13. J

    Extract LastSavedBy information

    Hi All, Is there a function using which the "Last Saved By" attribute of a file can be determined? Thanks, Jatz
  14. J

    Windows Explorer on Form

    Hi All, Is there a way that I can view window explorer within a Form. Is it also possible to have Drag & Drop facility in that form. Thanks in advance, Jatz
  15. J

    Windows Explorer on Form

    Hi All, Is there a way that I can view window explorer within a Form. Is it also possible to have Drag & Drop facility in that form. Thanks in advance, Jatinder Kalsi
  16. J

    Windows Explorer on Form

    Hi All, Is there a way that I can view window explorer within a Form. Is it also possible to have Drag & Drop facility in that form. Thanks in advance, Jatinder Kalsi
  17. J

    Email table in text file format

    Hi, I am trying to email a table in text format using : DoCmd.SendObject acSendTable, "Table", acFormatTXT, , , , "Results", "Attached are the reslts" It sends the file in text file format, but it adds "-" & "|" characters all over the file. Is there a way that I can send the file in simple...
  18. J

    Calculating business days

    thx a lot Jon.... its a great solution & works great !!!
  19. J

    Calculating business days

    Hi, Is there any access formula that can calculate the net business days between two dates. Regards, Jatz
Back
Top Bottom