Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: rene1000
  • Order by date
  1. rene1000

    I want to add a printer from ms access

    I want the users of my database be able to add a printer by clicking a button on a form. does anyone know how to do this ?
  2. rene1000

    how to check which tab control is active

    Thank you very much Danvlas !
  3. rene1000

    how to check which tab control is active

    it are 3 tabs or tab controls
  4. rene1000

    how to check which tab control is active

    unfortunately it doesn't seem to work buj123. any other ideas ?
  5. rene1000

    how to check which tab control is active

    I have a form which has three tab controls on it. I have a button on the form which needs to run some vb code depending on the tab which is currently active. Does anyone know how to do this ?
  6. rene1000

    default button in msgbox vbYesNo

    It's so easy if you know it ! Thanks again Roy
  7. rene1000

    default button in msgbox vbYesNo

    How can i set the default button in a message box with a Yes and No button. It always defaults to Yes but i want it to default to No. I used this code: Dim msg, Style, Title, Response msg = "Are you sure you want to exit without saving the changes ?" Style = vbYesNo +...
  8. rene1000

    counting the record between two dates (using dcount)

    thanks Roy ! your first solution works great however the second one doesn't. I have now used the >= and <= solution to include 1-1-2003 and 31-1-2003
  9. rene1000

    counting the record between two dates (using dcount)

    i am trying to count the amount of records between 1-1-2003 and 31-12-2003 using the dcount command: inc_jan = DCount(&quot;ID&quot;, &quot;module_IM&quot;, &quot;[Call_date] > #1-1-2003# AND < #31-1-2003#&quot;) i get the error message &quot;Missing operator in query...
  10. rene1000

    Exit of a form without save?

    you can use the following code to achieve this: 'first undo changes and close DoCmd.DoMenuItem acFormBar, acEditMenu, acUndo, ,acMenuVer70 DoCmd.Close
  11. rene1000

    how to disable &quot;filter by selection&quot; using VBA

    I have created a button on a form which does a filter by selection. i have used this code: DoCmd.RunCommand acCmdFilterBySelection Does anyone know how to undo the filter by selection with VBA code ?
  12. rene1000

    How to configure a printer to print duplex

    okay,well thanks for the help anyway.
  13. rene1000

    How to configure a printer to print duplex

    Hello, I have created a script which creates printer connections. I also want these printer to print duplex by default. Does anyone know how to configure this using VBA ? My current script so far: 'create printer connections Set WSHNetwork = CreateObject(&quot;WScript.Network&quot;)...
  14. rene1000

    Emailing: MS Outlook closes

    You have to remove the following three lines of code: **closes outlook objOutlook.Quit Set objEmail = Nothing this will solve your problem
  15. rene1000

    problem starting Samba at boot

    I found what was wrong. There was a typo in the path (stupid mistake).
  16. rene1000

    problem starting Samba at boot

    Thanks for the reply PH. Unfortunately that didn't help. I still get the same error message when i try to run the file manually. ./S89samba[3]:/usr/lib/samba/sbin/smbd: not found when the file is started automatically at boot i see the error message: /etc/rc2.d/S89samba...
  17. rene1000

    problem starting Samba at boot

    I have created a startup script in the /etc/rc2.d directory to start Samba during boot. The file contains the right command to start Samba. It works when i enter the same command at the command line, however when i manually run the startup script or automatically at boot it doesn't work. The...
  18. rene1000

    Yes/No Messages Boxes

    try this: Dim msg, Style, Title, Response msg = &quot;Are you sure ?&quot; Style = vbYesNo + vbQuestion Title = &quot;My question&quot; Response = MsgBox(msg, Style, Title) If Response = vbYes Then 'your code if answered yes Else 'your code if...
  19. rene1000

    Open the print select screen before printing a report

    ok, thanks for the help. i think i'll try the access book for the code.

Part and Inventory Search

Back
Top