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 bkrike 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: TURNERMICH
  • Content: Threads
  • Order by date
  1. TURNERMICH

    Perl Install. Script error

    I am running Windows 98 se I accidently installed the zip dos ?? version of perl and then realized i should install the .msi version ActivePerl-5.8.4.810-MSWin32-x86 is the version i am installing. The install goes right to the end and then gives a message There is a problem with this...
  2. TURNERMICH

    VB6 to .net

    If i have a program a program written in vb6 , am i able to transfer it to .net
  3. TURNERMICH

    ie.document - list of commands

    I am using the above ie.document command to fill in a web document form, using vb6. Is there anywhere where i can get a FULL list of all the commands available using the ie.dociment command ie. .value ("Submit").click There must be a large number of commands...
  4. TURNERMICH

    Winsock. Large number of connections for Testing

    I have a winsock server running on a remote server. The client winsock program i have written,will only allow approx 20 copies of the program to run, until i run out of memory. **** I am trying to test how the server goes with a large number of connections. **** I do not wish to alter the client...
  5. TURNERMICH

    Run Access2000 macro. Database has Password

    The Access Database has a security password admin The following works fine., but asks for a password eg admin There does not seem to be a password option on the db_app.OpenCurrentDatabase strDBName line. ???How do i run this without having to manually enter the password all the time...
  6. TURNERMICH

    Using SEEK on Multiple Field Index

    I am using Access2000 Mdb file. Set db = OpenDatabase("c:\accounting\accounting.mdb") Set td = db.OpenRecordset("TheData", dbOpenTable) Set td2 = db.OpenRecordset("DataUnique", dbOpenTable) Set td3 = db.OpenRecordset("Results", dbOpenTable) td3.Index...
  7. TURNERMICH

    Windows 2000 Slow! Performance

    Windows 2000 when 1st installed ok. BUT Then,,Windows 2000 gradually gets slower!!! Opening files, clicking on icons to run programs,closing down...etc... I have had a pretty good look around various forums , and find a lot of users get the same problem., but, nowhere is there a clear answer...
  8. TURNERMICH

    Printing using Printer.print (Spacing Output)

    I am trying to print output to the printer so that the fields are in an aligned columns. Printer.Print Indent & rs.Fields("title"); Printer.Print Spc(40 - Len(Trim(rs.Fields("title")))); Printer.Print rs.Fields("quantity"); Printer.Print Spc(20 -...
  9. TURNERMICH

    Saving Web Page to EXCEL or ????

    I am using the following to capture data from a web page. Openfile="http://www. etc .html IEObj.Navigate "" & Openf IEObj.Visible = False Private Sub IEObj_DocumentComplete(ByVal pDisp As Object, URL As Variant) Print #1...
  10. TURNERMICH

    Adodc . Be able to Vary the Source at Runtime.

    I have set up a form using the wizard, use an access database as the source. The Resultant Connection String Adodc1 control is> PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=C:\aaa\xxx.mdb; ------- I have set up variable mdblocation and say have the value c:\bbb Private Sub Form_Load()...
  11. TURNERMICH

    Altering Adodc (Mdb) Source Directory at Runtime

    I have set up a form using the wizard, use an access database as the source. The Resultant Connection String Adodc1 control is> PROVIDER=Microsoft.Jet.OLEDB.4.0;Data Source=C:\aaa\xxx.mdb; ------- I have set up variable mdblocation and say have the value c:\bbb Private Sub Form_Load()...
  12. TURNERMICH

    Wininet.dll...InternetCloseHandle Problem

    I am using wininet to ftpput and ftpget files. When i use InternetCloseHandle hconnection1 to disconnect on a NT server all ok. I have tried several 3rd party FTP Servers, serv-u,bison etc, and when i send this command to the server does not close the connection. If i connect using say...
  13. TURNERMICH

    Hide Program in (Ctrl Alt Del) Tasks (Alt Tab)

    I would like to make a program transparent. ie something like. App.ShowInTaskbar = False This does not seem to work in VB, Only Delphi??? I need to have the program not show in (ctrl alt del)tasks and also (alt tab) Is this possible in VB. Appreciate any help
  14. TURNERMICH

    Lookup The Value of a Regisrty Key Win98

    Appreciate the code to lookup a registry Key... Win98 Example Below... HKEY_CURRENT_USER SOFTWARE PROG1 OPTIONS DIRINPUT THE VALUE of DIRINPUT... SHOULD RETURN AS EG C:\SENDALL ---------- GetSetting ...ETC Does not seem to be the way???!!!! ---------- Appreciate any help.
  15. TURNERMICH

    InternetCloseHandle "wininet.dll" , not Close FTP Server Connection

    am connecting to an FTP site. using "wininet.dll" hOpen = InternetOpen(scUserAgent, INTERNET_OPEN_TYPE_DIRECT, vbNullString, vbNullString, 0) If hOpen = 0 Then MsgBox ("Internet Not Connected...") Exit Sub End If 2. hConnection =...
  16. TURNERMICH

    InternetConnect.. Ftp Site Not on Line. Hangs!!

    I am connecting to an FTP site. using "wininet.dll" 1. hOpen = InternetOpen(scUserAgent, INTERNET_OPEN_TYPE_DIRECT, vbNullString, vbNullString, 0) If hOpen = 0 Then MsgBox ("Internet Not Connected...") Exit Sub End If ========This is...
  17. TURNERMICH

    DIM Statement EG Dim Test1% ,How to Alter

    I am using some code i downloaded and have it all working fine under Windows98. Most of the code is API Based, Window Handles etc. Under Windows98 all handles are eg 1162 2345 etc Under Windows2000 Server they are 131234 121555 etc Existing Code eg Dim Test1% Will not work...
  18. TURNERMICH

    API Calls In Windows2000 Server

    I have written a program in (VB6).using a large number of Windows API calls. ie. Findwindow, SendMessage etc..... Under Win98 all ok............ When i run on Windows2000 Server. No go@#!#!#@@#$ Error '6' Overflow messages etc. I suspect this is due to different DLL's etc,in 2000 server...
  19. TURNERMICH

    Terminal Services. Restricted Desktop

    I have a Win2000 Server Setup with Terminal Services. All users are able to log in correctly, and works fine. BUT................ I only need the Users to run a Single Program (I have a Shortcut on the Desktop) I do not wish them to goto START and see all the program, ie. not even say...
  20. TURNERMICH

    VB Printing Simple Report !!

    I need to print a *simple* report from VB6. Need the distributed program to be small. Ie. Do not wish to distribute Crystal etc. I have produced the report using datareport,but, this seems??.. to increase the size of the distributed program a lot! ------- If I,Place the report data formatted...

Part and Inventory Search

Back
Top