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 Mike Lewis 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: *

  1. n554386

    open up another application from EBM file

    What UI are you referring to? Your function will just open up windows explorer.
  2. n554386

    Attachmate with Citrix

    Can you post your code? Are you maybe using the getobject function without Attachmate open?
  3. n554386

    Opeining a Word Doc based on Screen name

    You need to scrape the screen name and then use a Select Case statement. Physedo code below Select case Myscreen.Getstring(x,y,l) case is=Screen 1 open doc for screen 1 case is=Screen 2 open doc screen 2 ......
  4. n554386

    HostSettle... more info for beginner pleease

    You may experiance problems with the Do While xstatus<>0 because if the users enters an invalid character or other varous situations the xclock can stay at different values therefore creating an infite loop. I have had this situtation in the past. But you can add a select case statement to the...
  5. n554386

    Enable/disable or start/stop timer on form ?

    What do you mean by disable? I don't think there is a way that you can have access just ignore the event but you could use Global Variables to just not do anything in the events. For example create the below global vairables in a module Public blnFrm1 as boolean Publicl blnFrm2 as boolean ...
  6. n554386

    calcuation based on date

    Sorry but I don't usnderstand what you are trying to do. Can you please give an example of what you are trying to achieve and I am sure someone could help you out. I know I can for sure but I don't understand the question.
  7. n554386

    INNER JOIN syntax problem

    Your problem is that you don't define which fields to join on after the join statement.
  8. n554386

    End a process in task manager

    You want to close the application before set the variable to nothing xlApp.quit set xlApp=Nothing
  9. n554386

    How to activate &quot;getting external data&quot; function in access 2003

    If you can't reinstall the program you could always use a pass through query instead.
  10. n554386

    Change Font for Dialog Box?

    No you could create a custom form though.
  11. n554386

    How to checked whether the access database table is open by the user?

    Why not just trap the error and then prompt the user to close the table. Actually, why not check to see what database object are open (ie tables, queries, forms) and if any objects are open prompt the user to close them before deleting the tables.
  12. n554386

    Screen displays incorrectly with coded vs manual inputting

    I would also suggest using the Putstring method of the Screen Object.
  13. n554386

    Check for Open File

    What do you mean by file? Checking for an open session? If so you need to loop through the session collection and checking its name property.

Part and Inventory Search

Back
Top