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

    Advice sought on managing desktops remotely

    I am surprised no one said NetMeeting - it comes installed on just about every windows computer I have ever touched and works great. The only bad thing is you need to have a directory server running, or be able to route to the computers IP address. Greg Conely www.ImageMentor.net...
  2. gjconely

    AxWebBrowser unable to Navigate

    Try using this instead of using a webbrowser. You will then have to parse through the URLs and get what you want. You can get the images using the same call if you want. Public Function GetPageHTML2(ByVal URL As String, Optional ByVal TimeoutSeconds As Integer = 5) As String '...
  3. gjconely

    Watch exe on server

    Following SqueakinSweeps' idea, make an EXE that launches the said application, waits for it to exit and then exits itself. Greg Conely www.ImageMentor.net www.gregsdirectory.com
  4. gjconely

    vbscript and sql table view

    You can use the CreateObject procedure to create an ADODB object and then use that like you would in standard VB. set adoCon = CreateObject("ADODB.Connection") adoCon.Open(connectionstring) set adoRs = adoCon.Execute(sqlstatement) while not adoRs.Eof() .. adoRs.MoveNext wend Greg Conely...
  5. gjconely

    Move to next object

    I will give Golom a star for that answer. Greg Conely www.ImageMentor.net www.gregsdirectory.com
  6. gjconely

    How to divide a big Project

    When you call the different projects, you are simply calling there EXE, DLL or OCX files, not individual objects within that project. With that in mind, I have started using the "Plug-In" or "Add-In" method to link dlls within a product. I have not done much of this in VB6, but do know it is a...
  7. gjconely

    Problems with Winsock and UDP access

    Is the computer connected to a network of some sort? Also I would make sure that there is not the windows firewall blocking it - you can access this through the control panel. Also if you are using something else like Norton Internet security this may be causing an issue. Greg Conely...
  8. gjconely

    Check for zero-length array?

    Will it show up as a Nothing object - and if that is the case you can do something like: if isnothing(myarray) then or if not (myarray is nothing) then Greg Conely www.ImageMentor.net www.gregsdirectory.com
  9. gjconely

    Activex won't Load... Please Help!

    Did you sign your control? Also, can you show us the code used in the web page to load your control? Greg Conely www.ImageMentor.net www.seo-position-plus.com
  10. gjconely

    Lines of code

    newbie1983 You cannot easily write an addin for VB.Net in VB6. I tried to find a way to upgrade a plugin that I wrote for VB6 to .Net and couldn't find any way of doing it. Vb.Net uses a lot of different methods to intergrate. Greg Conely www.ImageMentor.net www.seo-position-plus.com
  11. gjconely

    Reading CSV file

    I always use a Line Input command. Then seperate the CSV entries into an array using the SPLIT command. Here is an example open "myfile.csv" for input as #1 while not eof(1) line input #1, tmpvar tmpArray=split(tmpvar,",") .... wend The tmpArray would then have each of the fields as...
  12. gjconely

    Users who have left.

    Do you have Microsoft Excel installed? This script creates a new excel spreadsheet and populates it with the info. If you don't have excel installed, the script won't work. It shouldn't be too difficult to change it to dump to a CSV instead. Greg Conely www.ImageMentor.net...
  13. gjconely

    Simple Batch Question

    Thanks trollacious - I didn't know about the >> I always made a bunch of files and then used a copy command to put them together. Greg Conely www.ImageMentor.net www.seo-position-plus.com
  14. gjconely

    Combining foles

    I am not sure exactly what you mean. Maybe an example would help. Normally, unless you are are using different languages, you can have one script file execute multiple scripts. But you may be able to manually combine your code and remove some redundent stuff. Greg Conely www.ImageMentor.net...
  15. gjconely

    Write error description to database?

    I normally use something like: mycode...... ' Check for an error if err.number<>0 then ' there is an error, do something end if morecode..... Greg Conely www.ImageMentor.net www.seo-position-plus.com
  16. gjconely

    Simple Batch Question

    You should be able to use a simple batch file. Something like the following' IPs.BAT ping 10.1.1.114 > c:\pc1.txt ping 10.1.1.132 > c:\pc2.txt Greg Conely www.ImageMentor.net www.seo-position-plus.com
  17. gjconely

    Shared DSL connection problem - slow for clients

    Go to here and use this tool along with their DrTCP utility. http://www.dslreports.com/tweaks/ I changed my MNU for my clients and they are working alot better. Greg Conely www.ImageMentor.net
  18. gjconely

    Shared DSL connection problem - slow for clients

    Go to here and use this tool along with their DrTCP utility. http://www.dslreports.com/tweaks/ I changed my MNU for my clients and they are working alot better. Greg Conely www.ImageMentor.net
  19. gjconely

    Shared DSL connection problem - slow for clients

    I have a Win 2K box using ICS to share DSL connection to other PCs. PC had one nic, but decided to install second to try to resolve. Now Win 2K box has 2 nics, one connected to LAN, other connected to DSL via cross-over cable. Host computer (one running ICS) connects\browses fine. Client...
  20. gjconely

    Shared DSL connection problem - slow for clients

    PS: It is a PPPoE connection that DSL software makes. PS: Sometimes the client(s) will load the requested page fine. Greg Conely www.ImageMentor.net

Part and Inventory Search

Back
Top