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

  • Users: GP
  • Order by date
  1. GP

    Form does not appear

    My first form is a selection screen and the user clicks OK to generate something. I like the second form to open up becuase my users would worry if the first form was still displayed with a counter. I have now solved my problem firstform.visible = false then in each loop: secondform.repaint
  2. GP

    Cannot send email - urgent help

    The SMTP server is hosted by a different ISP to the internet connection. They only accept authenticated users - by way of verifying the connection OR by username and password. If our ISP provided our connection all would be OK but they dont.
  3. GP

    Progress Bar

    I have some code which loops doing some action (takes a few minutes). How do i get a progress bar?
  4. GP

    Form does not appear

    I have a form which runs some code (takes a few minutes) so I opened another form which displays a counter of records. But this form only partially appears, the title and record counter as it is refreshed, the rest is just white. How do get the form to display properly?
  5. GP

    Cannot send email - urgent help

    Thanks Marc I have defined it as a smart host, the problem is that the SMTP server requires a username and password for authentication. How do I input the username and password (like you can do in Outlook POP3 account setup).
  6. GP

    VPN Windows 2000 Tutorial

    We have a single Windows 2000 server connected by static IP ADSL connection via a Liksys Router. Can someone give me a tutorial for setting up VPN - i know it involves port fowarding but thats about it.
  7. GP

    Cannot send email - urgent help

    We send our mail to our ISP's SMTP server. We now get the error message: There was a SMTP communication problem with the recipient's email server. Please contact your system administrator. <#5.5.0 smtp; 530 Authentication required> I have contacted our ISP who said we need to enter our...
  8. GP

    SMTP authentication

    Hello We have SBS on a single server and used an SMTP connector to forward all mail to our ISP www.btconnect.com. Today they have changed their server to require SMTP mail authentication. They supply instructions for outlook express (which works - see...
  9. GP

    Delete folders and subfolders

    Tried that but I get a different error runtime error 76 permission denied
  10. GP

    Delete folders and subfolders

    I have used the script off the KB on tek-tips but when I run the script it deletes all files and subfolders but not the main folder and gives an error &quot;run-time '76' Path not found Script: Sub DeleteFolder(strNewDir) ' *********************************************************** ' ***...
  11. GP

    FileCopy all files

    I need to copy a few folders and files to a new location. How can I copy the all the files. I tried filecopy(strSrcDir & &quot;pictures\*.*&quot;, strNewDir & &quot;pictures\*.*&quot;) but get the error &quot;Run-time error '75': Path/File Access Error. Any help.
  12. GP

    Open Window

    Thanks, it works perfectly....
  13. GP

    Open Window

    Hello I use the following code to open a pop-up window and load an image. I send the image size details so that the pop-up window is the right dimensions. My problem is that if you dont close the window when you click another pop-up it does not change the dimensions, so the image does not fit...
  14. GP

    Images resize to screen size

    I have made a webpage which shows pages of images in a 3 column 5 rows table. I can make the table dynamically resize to the page by using width=30%, etc. How can I get the images to resize in the same way?
  15. GP

    Microsoft Word Autocorrect Entries

    I need to extract the autocorrect entries to a file, how do I do that? I have a script for autotext entries: Sub ExtractAutoText() ' ' ExtractAutoText Macro ' Macro created 1/14/2004 by ' Dim Entry As AutoTextEntry Documents.Add For Each Entry In NormalTemplate.AutoTextEntries ' Turn bold...
  16. GP

    Microsoft Word Autocorrect Entries

    I need to extract all the Autocorrect entries to a file. How do i do it? I have found a succesful script for autotext entries: Sub ExtractAutoText() ' ' ExtractAutoText Macro ' Macro created 1/14/2004 by ' Dim Entry As AutoTextEntry Documents.Add For Each Entry In...
  17. GP

    Word read from Access

    That is just what I was looking for, thanks.
  18. GP

    Word read from Access

    I have a word template for invoicing which a secretary uses to type invoices. I have an access database with names and addresses. Can I get Word to open a connection to Access, load the 'tblAddress' and find a single record based on a 'strRef'. Then take the record and enter it in the word...
  19. GP

    Table row size

    I have a table with 7 rows and 2 columns. The second column has a row span of 5. In the rows in the first column I have some navigation and have input <tr height=&quot;xxx&quot;> and used images which have the sizes input. If the second column grows larger than the first column (i.e. a lot of...
  20. GP

    PC v Mac Browser

    I am using some javascript on my pages. Can anyone give me an idea of compatability for javascript, specifically: 1) I have written on a PC, should it work on Macs (or Unix)? 2) What browsers support it OK (i.e. IE 5, Netscape 6??) 3) Microsoft v Sun battle - has this meant javascript being...

Part and Inventory Search

Back
Top