Search:

Type: Posts; User: Rattled_Cage

Page 1 of 9 1 2 3 4

Search: Search took 0.39 seconds.

  1. Replies
    6
    Views
    2,390

    Re: Turn off the network card

    try . . .


    Private Sub disable_Click()
    Dim command As String
    command = "netsh interface set interface " & Chr(34) & "Local Area Connection" & Chr(34) & " DISABLED"
    Shell "cmd.exe /c " &...
  2. Replies
    2
    Views
    3,809

    Re: Read text file from website VB6

    prob a few diferent ways ive used this way . . .
    put this in a form


    Private Sub Form_Load()
    Text1.Text = URLSource("http://www.yoursite.com/svrip.txt")
    End Sub

    and this in a module
  3. Replies
    22
    Views
    4,836

    Re: Mediaplayer VB6 pictures

    change ....


    WMP1.URL = BackSlash(File1.Path) & File1.List(File1.ListIndex)

    to . . .


    WMP1.URL = File1.Path & "\" & File1.FileName
  4. Replies
    7
    Views
    800

    Re: End a process via a batch command?

    TASKKILL /S YOURPCNAME /F /IM notepad.exe /T
  5. Replies
    7
    Views
    800

    Re: End a process via a batch command?

    the %hostname% is your pc name ...



    hostname.exe >>log >c:\netcheck.log
  6. Replies
    7
    Views
    800

    Re: End a process via a batch command?

    i hope your trying to kill things that need to be killed .. . . .
    try


    TASKKILL /S %hostname% /F /IM block-checker.exe /T

    you can read about the switches here >>...
  7. Replies
    44
    Views
    6,146

    Re: vb6 apps on ARM (maybe?)

    if they do alow us to run vb6 on phones i pray they give us a new service pack with some better components sliders etc : )
  8. Replies
    10
    Views
    4,116

    Re: Creating a UI for CNC Laser Engraver

    yes as long as the pins are configured in the code on ardunio
    look at getting a nano expansion shield makes wiring it up easier
  9. Replies
    10
    Views
    4,116

    Re: Creating a UI for CNC Laser Engraver

    you could try this board https://www.pc-control.co.uk/vb_stepperbee.htm to controll the stepper motors and display the results using there
    or
    ardunio with stepper motor board...
  10. Re: Is S y s t e m 3 2 a word that's not allowed in these forums?

    easy
    system31+1
  11. Re: Change screen resolution - device independent

    found this in a helpfull notepad

    worked for me in win 64

    The ChangeDisplaySettings function lets you set the screen resolution to a different graphics mode. The DEVMODE structure holds the...
  12. Replies
    18
    Views
    4,827

    Re: Playing Sounds on a Keypress

    try this midi piano exp for picking up key presses
    https://support.microsoft.com/en-us/kb/181360
  13. Replies
    19
    Views
    6,671

    Re: Sound player with speed control

    this might help
    http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=49332&lngWId=1
  14. Replies
    3
    Views
    5,778

    Re: VB6 Communicating Via Serial Port

    are you sure you have the right comport ?

    or try sending an end of line


    MSComm1.Output = Chr$(255) & Chr$(LED) & CrLf
  15. Replies
    5
    Views
    684

    Re: draw on picturebox

    Pic.Circle (Pts(i)(0), Pts(i)(1)), 1, vbBlue


    or just leave out that
  16. Replies
    5
    Views
    684

    Re: draw on picturebox

    try running the last code posted on this http://www.vbforums.com/showthread.php?787913-How-to-plot-points-in-the-coordinate-grid
  17. Replies
    6
    Views
    6,213

    Re: Send SMS through vb6 code

    theres sites like https://www.messagebird.com/en-gb/sms-gateway that if you sign up you can send sms though there site
    or if you wanted own hardware with a mobile sims you could get a Siemens...
  18. Replies
    4
    Views
    1,357

    Re: VB6 and Linux Operating System

    u should look into qt creator /qt for windows / linux / mac

    im not expert at it but plenty of tutorials on you tube to cross platform program and has a visual studio add in . . .....
  19. Replies
    16
    Views
    4,992

    Re: programming usb output power

    well what ever it is to be powered watch out for the amps it draws i doubt the usb ports will power up much
    it would be better to buy a usb pro micro and accept serial commands from your own...
  20. Replies
    16
    Views
    4,992

    Re: programming usb output power

    to what ? a led ? solid state relay ?
    what do you intend to control with power source
    you said you wanted to do it without any external device
    your not going to be able to access a usb device...
  21. Replies
    16
    Views
    4,992

    Re: programming usb output power

    i think the circuit of the usb modules provides power all the time
    if a usb light as example has a software button to turn it on and off
    it will be sending a signal to an onboard chip like the...
  22. Replies
    32
    Views
    24,231

    Re: VB6 and USB

    can you post a link to the usb volume device .....a spec sheet or name of it ?
    does it have install software already ?

    you could make your own like this for about £5 and then send it com port...
  23. Replies
    21
    Views
    6,686

    Re: Antivirus assume my program a virus

    use online virus scanner like https://virusscan.jotti.org/ click submit file
  24. Replies
    2
    Views
    2,207

    Re: Send/receive using mscomm

    your microcomputer serialevent is probably waiting for an end of line or return character

    try


    Mscom1.output = Whatever & vbCrLf
  25. Re: How to read data in visual basic 6.0 from usb port arduino.

    change arduino code to


    int pin1 = 13;
    int pin2 = 14;
    void setup() {
    Serial.begin(9600);
    pinMode(pin1, INPUT);
    pinMode(pin2, INPUT);
  26. Replies
    2
    Views
    643

    paste image on treeview node

    : ) all
    after adding an item to the treeview with an icon from imagelist
    is it possible to paste an image on each node at right hand side of treeview
    one for each node that can also be icons ?...
  27. Re: Obtaining the GPS coordinates from a GPS enabled device

    what sort of gps module are you using does it show as virtual com port ftdi drivers etc ?

    i have a MT3318 usb works well with this code to read the nema sentences




    Private Sub...
  28. Re: ListView DblClick to simulate TreeView node click

    are the index`s same ?

    something like this ?
    MsgBox treeUsers.Nodes.Item(ListView1.SelectedItem.Index)


    or

    add this to form load event
  29. Replies
    6
    Views
    777

    Re: Winsock.SecretKnock

    ok this seems to be working on something like




    Private Sub Server_DataArrival(ByVal SckIndex As Integer, ByVal Data As String, ByVal bytesTotal As Long, ByVal RemoteIP As String, ByVal...
  30. Replies
    6
    Views
    777

    Re: Winsock.SecretKnock

    the encryption of paswords is sort of secure
    as when you register the log on server
    the username is tied to that one computer
    so he cant log on another computer ....hdserial and a few other...
  31. Replies
    6
    Views
    777

    Re: Winsock.SecretKnock

    it is very much like a chat room but for quads/microcomputers so each user can come in open up a com port .....and other users can read live data gps stats /height etc ....from ardunios mine posts...
  32. Replies
    6
    Views
    777

    Winsock.SecretKnock

    how do you create a winsock server that only lets its own verified clients conect
    i made an attack program for my OWN winsock registration server and sat back and laughed at how easy it was to read...
  33. Replies
    3
    Views
    838

    Re: terminate exe

    i think the problem you would have with thinking you need close the exe
    is that you wont know what title it is from taskmanager
    if you shell notepade 4 times each exe name in task manager would...
  34. Re: Sorting a List Box control automatically

    LOL
    i ve tried translating the words he posted in russian no translaters seem to make head or tale out of the words
    i suspect the op sees russian fonts as he posts
    and we dont becasue he has...
  35. Re: Sorting a List Box control automatically

    couldnt you convert the first character to keycode/character map values

    the first letter of every word ( i suppose there words i cant speak russian)


    É Chr(198)
    Ë Chr(203)
    Á Chr(193)
    Î...
  36. Re: Visual Basic 6.0 RelayBee Code not executing

    i like the relay bee card was one of the first relay cards i used : )
    put your mb.dll inside this project folder after you download it

    i think the mb.dll relys on the bee.dll being in same...
  37. Replies
    8
    Views
    927

    Re: confused in file paths

    @jmsrickland i changed to your code


    If Not mFTP.FTPUploadFile(Trim(File_To_Upload_Path.Caption), Trim(File_To_Upload.Caption)) Then

    and it works when you click the file1 list now : ) thanks ...
  38. Replies
    8
    Views
    927

    Re: confused in file paths

    the strange thing is here
    if i select a file from out the incoming folder and send it using comondiag it sends ok
    then if you send a second file by clicking the filebox it send that file though ok...
  39. Replies
    8
    Views
    927

    Re: confused in file paths

    hi 4x2 : )
    that still comes back with invalid index error

    ive uploaded the project
    im not sure if you have an ftp upload folder to test it with
  40. Replies
    8
    Views
    927

    confused in file paths

    this first routine sets the file names from the commmon diaglog box

    and then uploads just fine

    what i want to do is click a file2 box and upload that file

    but i cant seem to get the...
Results 1 to 40 of 348
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width