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 strongm 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. accessuserva

    Mouse keeps highlighting in Excel

    Make sure the scroll lock key is not on
  2. accessuserva

    Question on MCSA/MCSE test paths

    You might want to look at the requirements for Server 2008..I belive the MCSE is going away for that version. To be replaced by more specific certs.
  3. accessuserva

    canot turn off system restore or reduce amount of space

    What antivirus program are you running...Norton perhaps?
  4. accessuserva

    Windows XP slow login/logoff

    What is the size of your profile..rather large profiles can cause slower than normal logons & logoffs
  5. accessuserva

    Printer setup for local user

    Does user y have permissions to add printers...check domain policy or local policy..one or the other could be set to deny permissions to "users
  6. accessuserva

    Remove Printing status message

    go to "Printers & Faxes" File Server properties Advanced Uncheck the bottom 2 (1 if the other is greyed out) That should solve your issue
  7. accessuserva

    Fail to Map Network Drives

    try flushing your dns cache with ipconfig
  8. accessuserva

    autolisp for checking what the current / active space is..

    This should get you started (defun c:Inscale (/ ip) (setq tm (getvar "tilemode")); This is the variable you are looking for (if (= tm 0) (progn (alert "You Are Currently in Paper Space\nYou Will Be Switched to Model Space") );progn );if (command "tilemode" 0)...
  9. accessuserva

    Osnap Lisp routine

    I have the following "hot keys" programmed in a lisp routine that gets automatically loaded (defun C:LI () (command "LINE""QUICK,INT")(prin1)) (defun C:LE () (command "LINE""QUICK,END")(prin1)) (DEFUN C:LQ () (COMMAND "LINE""QUICK,QUAD")(PRIN1)) (defun C:LM () (command...
  10. accessuserva

    Round circles

    Look under tools\options and go to display tab..in the "ars and circle smoothnes" box enter a higher number than 1000...I have gone as high as 10000 before.
  11. accessuserva

    Excel subnet formula

    How about a program that runs thru javascript. You can subnet based on number of subnets needed, or number of hosts needed per subnet. accessuserva
  12. accessuserva

    Uninstall SP2

    Why do you need to uninstall sp2..I loaded Autocad 2005 on 11 cad machines with sp2..Just make sure the firewall is disabled first along with any other monitoring softwarte you may have running
  13. accessuserva

    2004 express tools...

    Look at the help file..some of them went to the command line for whatever reason accessuserva
  14. accessuserva

    can't select on defpoints layer

    Make sure layer 0 is not off of frozen accessuserva
  15. accessuserva

    xrefs and associative dimensions

    Check the dim settings on the dwg that you are plotting from You could be having a conflict if you are bringing in many x-refs that contain the same named dim styles.... accessuserva
  16. accessuserva

    Converting a dwg to pdf?

    You can download cutepdf printer which installs itself as a windows printer. It will print pdf's full size 24x36 etc. Its a free program by the way. It may not have all the bells & whistles that Arcoplot & Acrobat have but it seems to do a descent job of creating pdf's Tim
  17. accessuserva

    Huge Autocad file - running out of options

    Try wblocking out the visable objects to a new drawing. That might solve youre problem as blocking it out will only select the visable on-screen items leaving all the other junk.
  18. accessuserva

    Limit Display in Text Box

    How Do I Limit the display in a text box to only 1 decimal place. The query from which it is pulling its data only has 2 decimal places but when the text box fills it goes out to 8 decimal places. I have the text box formated for "fixed" with 1 decimal place. Any suggestions accessuserva
  19. accessuserva

    Fill List Box in Form From Query

    You are correct in that when the form first opens the list box is empty..it should be until after the query gets run. When I say it pops up in front of the from I am talking about in datasheet view..and no I did not write code for it to do that..... the data needed to run the query comes from...
  20. accessuserva

    Fill List Box in Form From Query

    The particular query (qrysitedistance) does not run when the form first opens because it needs data from the form in order to work. i.e. I am using lats & longs to calculate the distance between 2 sites. The base site information fill in the form after the site number is picked from another list...

Part and Inventory Search

Back
Top