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. mikey2nicey

    Remove specific fields from query results.

    Hi Sunil, Your code does just what I was looking for so thanks very much! A star for a star! :-) Regards, Mike mikey2nicey "Dream, but don't quit your day job."
  2. mikey2nicey

    Problem browsing internet & public folder web pages in Outlook

    I think the Microsoft support article http://support.microsoft.com/default.aspx?scid=kb;EN-US;q223541 answers my question. There doesn't seem to be any way around my problem[cry]. Never mind! mikey2nicey "Dream, but don't quit your day job."
  3. mikey2nicey

    Need code for multiple rollovers PLEASE! (newbie!)

    Hi Paul. Good to see that its sorted now. I'm not fishing for stars but the protocol on this site is if a post has been helpful or informative then you should give it a star by marking it as helpful. It also helps others see where helpful posts have been made. Regards [thumbsup2] mikey2nicey...
  4. mikey2nicey

    Need code for multiple rollovers PLEASE! (newbie!)

    Hi Paul, Here is an example of what I think you are looking for. It displays three boxes: red, green and blue. When you move your mouse pointer over one of the boxes, the other two turn pink. When the mouse pointer moves out of the box they revert back to their original colours. Heres the code...
  5. mikey2nicey

    compiling 4gl programs

    Hi Michelle, Yes I believe you can use fglpc. I do not have any examples but here is the format of the fglpc command: fglpc { [-ansi] [-a] [-anyerr] [-p <pathname>] } <.4gl source code module> ... The options in this command are defined as follows: -ansi makes the...
  6. mikey2nicey

    Strlength

    Hi thewishla, I'm pleased that your problem has been resolved but xlbo is right in what he says - the post that solved your problem should really get a star. Cheers,[smile] mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  7. mikey2nicey

    VBScript and RegRead error

    Hi Turkbear, I'm just fishing but if the registry entry is a key rather than a value then the registry path will need a backslash on the end. To save typing you can also use the abbreviation HKLM rather than HKEY_LOCAL_MACHINE. Check out this link...
  8. mikey2nicey

    open an access db in access the application not IE

    Hi 229257, Try objACC.OpenCurrentDatabase(&quot;H:\GRPAPPS\Hardware\db1.mdb&quot;). Or objACC.OpenCurrentDatabase &quot;H:\GRPAPPS\Hardware\db1.mdb&quot;. HTH [smile] mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  9. mikey2nicey

    Strlength

    Hi thewishla, If you are using VBA then try the following link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/odeopg/html/deconformattingnumericvalues.asp It gives advice on how to use the VBA Format function to format numeric values. HTH [smile] mikey2nicey &quot;Dream...
  10. mikey2nicey

    Looking for a good, simple &quot;how to&quot; site for win2k server..

    Hi Dave, A quick search on Google revealed the following sites that may be of interest: www.microsoft.com/windows2000 www.win2000mag.com www.windows2000faq.com www.win2kworld.com www.winportal.com If these do not help then enter &quot;windows 2000 server&quot; (with quotes) into any search...
  11. mikey2nicey

    Running MSWord from within IE

    Hi DavidJA, Would you like to try the following: <html> <body> <script language=&quot;javascript&quot;> var objWord = new ActiveXObject(&quot;Word.Application&quot;); if (objWord != null) { objWord.Documents.open(&quot;\\Fileserver2\documents\david\MyDoc.HTM&quot;); objWord.visible = true; }...
  12. mikey2nicey

    Problem browsing internet &amp; public folder web pages in Outlook

    I have a problem put to me by a user. I have developed a web page that sits in the company's public folder network and presents a graphical representation of all of the public folders that the user can see. When the user goes to a web site in Outlook using the web toolbar and then tries to go...
  13. mikey2nicey

    Showing a textbox on screen for feedback

    Hi Norm, Yes that is probably better suited to what Pete199 needs. A star goes 2U.[Smile] Cheers, mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  14. mikey2nicey

    Can i use Sendkey method of VB in VBscript

    Hi Kitan, No, but you can use the SendKeys method of the Windows Script Host, for example: set WshShell = CreateObject(&quot;WScript.Shell&quot;) WshShell.SendKeys &quot;%A&quot; will send ALT+A to the UI. HTH mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  15. mikey2nicey

    Does MaxRecords really work?

    Hi Bob, Not with ADO. See http://support.microsoft.com/default.aspx?scid=kb;EN-US;q186267 HTH mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  16. mikey2nicey

    Showing a textbox on screen for feedback

    Hi Pete199, Try this link: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/script56/html/vsfctmsgbox.asp HTH mikey2nicey &quot;Dream, but don't quit your day job.&quot;
  17. mikey2nicey

    DatePart: End of the Month

    Hi again BradB, There should of course be an extra bracket on the end. Oops! Regards. mikey2nicey Dream, but don't quit your day job.
  18. mikey2nicey

    DatePart: End of the Month

    Hi BradB, Try the following: lstEndDate.AddItem(actDate.Value + DateAdd(&quot;m&quot;, 1, actDate) - DatePart(&quot;d&quot;, actDate) It adds one month to the date then subtracts a day. Good Luck. mikey2nicey Dream, but don't quit your day job.

Part and Inventory Search

Back
Top