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 TouchToneTommy 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. krymat

    Congruent logon limiter

    might that be concurrent logons
  2. krymat

    New Server Question

    depending on number of workstation you may just want to bite the bullet or maybe check into a login script that can change the dns servers for you.
  3. krymat

    New Server Question

    DHCP will make your life much easier when dns servers change or IP segments change, use Reservations for IPs that need to be static. (servers, printers, switches...)
  4. krymat

    My scheduled script won't start (server: MS WIN2000)

    Make sure you have the full executable path inside your script. For example if you were to use the xcopy command in a batch file you must use: c:\windows\system32\xcopy.exe source dest so it will work when you are not logged into the console.
  5. krymat

    xcopy failures to remote server

    also make sure long file names with spaces are in quotes ex. "\\servername\share name\files
  6. krymat

    xcopy failures to remote server

    xcopy source destination /c The /c switch lets xcopy continue even if there is an error. I used to have this same error with no apparent reason, everything seems to copy ok now.
  7. krymat

    queries in code vs. query wizard

    wildcards must be % in ado
  8. krymat

    Scroll disable

    I've never actually used this solution but I would assume you would want to call: Dim blRet As Boolean blRet = MouseWheelOFF sometime on app or form startup, maybe the form OnOpen event
  9. krymat

    Scroll disable

    Check out this link: http://www.lebans.com/mousewheelonoff.htm
  10. krymat

    Access to Outlook - stop warning messages from Outloook

    If using an exchange server, your exchange admin can allow cdo automation Also check out Outlook Redemption (http://www.dimastr.com/redemption/home.htm) or this app "Express ClickYes" from http://www.express-soft.com/mailmate/clickyes.html
  11. krymat

    Menu Version needed to run event procedure

    DoCmd.RunCommand acCmdFilterBySelection The trick is to have focus on selected text before running example Private Sub Command0_Click() me.controlname.setfocus DoCmd.RunCommand acCmdFilterBySelection end sub you can turn of filtering with DoCmd.RunCommand acCmdRemoveFilterSort...
  12. krymat

    Menu Version needed to run event procedure

    try Docmd.RunCommand acCmdApplyFilterSort DoMenuItems are only for backward compatibility
  13. krymat

    I made a dumb move....

    I have reset AD administrator password successfully using directions from here: http://www.jms1.net/nt-unlock.html
  14. krymat

    Nortel VPN & local Printing/Access

    Make sure your home network subnet is different from your work subnet example home: 192.168.1.x work: 192.168.1.x = home network browsing doesn't work home:192.168.10.x work:192.168.1.x = home network browsing does work
  15. krymat

    Treeview Question

    Not quite what I'm looking for. I want to be able to expand all children nodes from a selected parent node.
  16. krymat

    Treeview Question

    I know that For Each Node In TreeView1.Nodes Node.Expanded = True Next will expand all nodes but I just want to expand a selected node. Any Ideas?
  17. krymat

    Newbie needs workable Pause function

    or just rename the basPause module to something else..
  18. krymat

    Newbie needs workable Pause function

    Create a module called Module1. A module can't have the same name as a sub or function and insert the basPause procedure into that.
  19. krymat

    Newbie needs workable Pause function

    Add this procedure to a public module Sub basPause(intSec As Integer) Dim lngTimerValue As Long lngTimerValue = Timer Do Until Timer - lngTimerValue >= intSec Loop End Sub Function CollateReports(NumPages, Rpt1 As String, Rpt2 As String, Rpt3 As String, Rpt4 As String, Rpt5 As...

Part and Inventory Search

Back
Top