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

    Disable Application in Remote desktop client

    Hi i dont know if this can be done but i need to disable an app from runnuning in remote desktop Im using VB6 to design it. Thanks Dan
  2. Danielgraham

    How can i send power throug a comm port

    I need to send between 3-9 volts through a comm port. e.g 1 + 1-. what i need to be able to do is to open a cash drawer. But i dont know please help dan
  3. Danielgraham

    Adding item from listbox to database.

    Station is a table name as well Cheers Dan
  4. Danielgraham

    Adding item from listbox to database.

    Ok changed the way of doing this and it still has the same error. Private Sub Command1_Click() Dim mycon As New ADODB.Connection Set mycon = New ADODB.Connection mycon.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\station.mdb;Persist Security...
  5. Danielgraham

    Adding item from listbox to database.

    I Dont know where im going wrong admin.data.Open admin.data.Execute "insert into data (test) values (Dan)" admin.data.Close Dan
  6. Danielgraham

    Adding item from listbox to database.

    Hello. im useing VB6 with a listbox. and on a button click i would like to insert that data to a table in a microsoft access database. Please help Thankyou Daniel
  7. Danielgraham

    Does anyone know how i could Filter a report?

    I using Good old MS Access database with visual basic 6 reports. Cheers Daniel
  8. Danielgraham

    Access form doesn't display pic stored from within vb in ole field

    Sorry. This is a Visual Basic Forum Not Access. Dan
  9. Danielgraham

    How do I change command button properties from another form?

    You can change everything from even who logins in...e.g if username admin then main.caption = "Admin user" Form6.Caption = "Admin User" Form12.Command1.Caption = "Test" Form16.Option1.Enabled = False Else main.caption = "User" Form6.Caption = "User" Form12.Command1.Caption = "Cool"...
  10. Danielgraham

    How do I schedule a VB app ?

    Hey Have you tried it with adding your username and password. i had he same problem,doh Dan
  11. Danielgraham

    Give a Control Focus via Hotkey

    Try this If SendKeys = "{ALT}+{S}" Then '*****Your Code Goes Here***** Else '*****Extra Code for Else***** End If Dan
  12. Danielgraham

    Get/Input Into registry

    Try this. this has some sample on http://www.vbaccelerator.com/home/VB/Code/Libraries/Registry_and_Ini_Files/Complete_Registry_Control/article.asp Helped me. you can read modify and set registry keys Dan
  13. Danielgraham

    Comm Control Question

    Try this http://www.winsockvb.com/forums/attachment.php?attachmentid=117 You could send iles like text file through winsock. works well. and this is a sample so you can workout the code. www.winsockvb.com Dan
  14. Danielgraham

    Form to have List1.List(1) selected by default on Form_Load

    You havent put any idex's in have you. so this wont work. try putting list1.text = "Please select item from the list" this is always a winner Dan
  15. Danielgraham

    Quick question???

    You could make a batch file tha checks that for you.its so much easier. e.g @echo off if not exist c:\test.exe then copy d:\test.exe c:\test.exe /y end if echo. echo The Application did not exist locally so it has been copied to your hardrive. pause > none
  16. Danielgraham

    2 Questions about the winsock control

    www.Winsockvb.com Whats wrong with me tonight.lol
  17. Danielgraham

    2 Questions about the winsock control

    Again sorry its not www.winsock.co.uk its www.winsock.com
  18. Danielgraham

    2 Questions about the winsock control

    Sorry to send data theres one on www.winsockvb.co.uk or here http://www.winsockvb.com/forums/attachment.php?attachmentid=117 Thisis a simple demo. (No protection or rights held) and you can see how this is done Dan
  19. Danielgraham

    2 Questions about the winsock control

    No...But once connected there is a two way communication between the server and Workstation client. You can have more than one connection with the server too. its like a domain. you cant have two omains. but add a second winsock on a different port and itll work. with chat rooms you can log the...
  20. Danielgraham

    HOW DO YOU USE YOUR OWN LICENSE/ICON WITH THE PKG/DEPLOY WIZARD

    Try Inno Setup http://www.jrsoftware.org/isinfo.php This is the best software that i have found...Its totaly free too. Dan

Part and Inventory Search

Back
Top