Search results

  1. A

    How to run a command prompt script automatically from MS Access

    I want to run a Command Prompt instruction. Is it possible to do it pass it from MS Access, not from the Command Prompt Window? Thanks,
  2. A

    How to assign a popup menu to a text box

    But how can I get the user selection so I write the instruction in the related event after the user selet the menu item. Thanks
  3. A

    How to assign a popup menu to a text box

    But how can I get the user selection so I write the instruction in the related event after the user selet the menu item. Thanks
  4. A

    How to assign a popup menu to a text box

    But how can I get the user selection so I write the instruction in the related event after the user selet the menu item. Thanks
  5. A

    How to assign a popup menu to a text box

    I have a text box. when I right click on this text box, I want to show a popup menu with a shortcut: Shift to another department. when I click this shortcut, I want to execute instructions. How can I make this. Thanks,
  6. A

    How to delay the processing for seconds

    Is there any function to delay the system processing for a number of seconds. For the time being I am do it indirectly by using loops, however, it is un proper way, as it is not scalable. Also I dont want to use the timer control. Thanks,
  7. A

    How to know the user default email client

    Is there any way to programmatically detect the user email client: eithere Microsoft outlook or outlook express. This is just to switch to the email automatic sending as each of them has its own method. Thanks,
  8. A

    How to hide all the bars

    Thanks Kabz, However, it desnt hide the Menu bar:File, Edit, View...
  9. A

    How to hide all the bars

    How can I remove all the bars specially the menu bar: File, Edit, View, Insert,...
  10. A

    How to get full permission:Add, Delete, Update, Edit in the SQL server database

    Yes it is READ ONLY. However, I reset it and unchek the read only attribute in the directory:Microsoft SQL Server\MSSQL\Data. I have a problem with my file system that when I reopen the folders, it is automatically rechecked to Read only, which leads to the problem again. Would you please help me.
  11. A

    How to get full permission:Add, Delete, Update, Edit in the SQL server database

    I wrote the following statements to update a SQL server database: Dim MyDb As Database Dim MyRs As Recordset Set MyDb = DBEngine.Workspaces(0).OpenDatabase("AMD", dbDriverPrompt, False, "ODBC;DATABASE=AMD;DSN=Remote") Set MyRs = MyDb.OpenRecordset("SELECT...
  12. A

    Invalid argument error generated with openrecordser dbopentable

    I have a strange error: I open a table by following dim db as database dim Rs as recordset set _ db=dbengine.opendatabase "AMD",dbdriverprompt,FALSE,"ODBC;DATABASE=AMD;DSN=Remote") set rs=db.openrecordset("AllAttendanceEvents",dbopentable) when excutes the red line code, it generate the...
  13. A

    Date/Time Picker

    Where can I check the samples? If you have please suggest me other software
  14. A

    Date/Time Picker

    I want to let the user to select the date and time by showing a control/screen fot this. I used the MS access control: Microsoft Date and Time Picker Control 6.0. however, this doesnt show the date properly. Is there any Fully Free software that I can use to show a screen to allow the user to...
  15. A

    A Problem with .index property with a linked table

    I am using .index just to sort the field called Entrytime Desc. I use this to save the time So I dont use it to seek only to sort the table. Do you think because it is a read only database, and this error will not appear if I open the database in a read/write mode, using the statement: set...
  16. A

    A Problem with .index property with a linked table

    I have a linked table to a SQL server table called AllAttendanceEvents. the AllAttendanceEvents table has index called "AttEvents". I wrote the following code: set AllAttendanceEvents=currentdb.openrecordset("AllAttendanceEvents") AllAttendanceEvents.movefirst...
  17. A

    Calender ActiveX control display also Hours, Minutes and Seconds

    I am using the calender control 11.0. By this calender I can only set the date year, month and day. I can not set the clock time:Hours, minutes and seconds. Is there a calender that enables me to set the date in the format:dd-mm-yyyy HH:MM:SS, means day,month,year Hour:Minutes:Seconds. Grateful
  18. A

    My system is ready now. What is the best installer I can use

    After hard work done, my system become ready. Now I want to deploy it in the clients computers. What is the best installation software my system files from the CD disk into the user computer? Thanks Very Much
  19. A

    How to programmatically disabled the warning messages in the Outlook 2003

    when trying to automatically send email through MS Access application, the following message appears: "a program is trying to access e-mail addresses you have stored in Outlook and asking if you want to allow this" "a program is trying to automatically send e-mail..." How to disable these...
  20. A

    How to run a command Prompt (MS DOS) instruction from a VB code

    What I need is to make stream writing, not manually. Also to not show the Promt screen
Back
Top Bottom