Search:

Type: Posts; User: mixman

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    740

    VS 2008 Re: Problem with webbrowser control

    Well thats strange... :(


    Well i tried again, no sucess, heres a video from it

    http://www.youtube.com/watch?feature=player_embedded&v=6uELi5LokE4
  2. Replies
    2
    Views
    740

    VS 2008 Problem with webbrowser control

    Hi folks!

    I need some help with one simple code snipet.
    Goal is to make simple query on a site, site has one input field and one button.

    I am not a coder, so please dont judge me for code...
  3. Replies
    5
    Views
    1,792

    Re: Winsock listen and winsock senddata

    Sorry for bumping, but i really need help with this, why wont anyone help :(
    Cant you understand what i want to do? Then maybe i can explain more.



    Regards
  4. Replies
    5
    Views
    1,792

    Re: Winsock listen and winsock senddata

    I now modified code a bit, and found out that problem is theat sck state is wrong, it as state 8, but it should be 7, what coult be wrong?



    Private Sub Form_Load()
    Winsock1.LocalPort = 43047...
  5. Replies
    5
    Views
    1,792

    Re: Winsock listen and winsock senddata

    Not really, i need to send "HAY" to server, then server will send me back "attempt_login_now" , that msgbox in there is just for debuging, to see if any data comes back from server.

    My problem is...
  6. Replies
    5
    Views
    1,792

    Winsock listen and winsock senddata

    Hi again, i have done some research about winsock, i want my program to listen at port 43047, and to send data also to server.

    I have made this code out of tutorials, but it seems not to work.
    I...
  7. Replies
    8
    Views
    819

    Re: ProgressBar from images Not Working

    Sub or whole project?
    I really dont want to publish whole project, if you want to see whole project i would upload it and share with you privately.


    Thanks for answering.


    Regards
  8. Replies
    8
    Views
    819

    Re: ProgressBar from images Not Working

    Using picturebox and way you showed, is not good solution i think, since, my app comes with only exe file, no image files or other things.

    Tryed vbBringToFront, that did not change anything.
    I...
  9. Replies
    8
    Views
    819

    ProgressBar from images Not Working

    Hi all got stuck again with one issue and dont know where to start troubleshooting.

    I have made progressbar from images,

    example:
    Load10.image...
  10. Replies
    1
    Views
    455

    GetSetting Mismatch error

    I am struggling with a problem.


    OptionsForm.Check1.Value = GetSetting("eRP Launcher", "Config", "RaadiodSees", "")
    Here i get type mysmatch error, i am guessing its because registry dont have...
  11. Replies
    0
    Views
    394

    Finding running process, advanced way

    Hi all again,

    My little program works like anticheat for game, it checks if certain process is running (cheat) and then closes this process or game.

    I do this by:

    If...
  12. Re: [RESOLVED] Crypting (hiding something from source)

    Dim b(1 to 7) As Byte
    b(1) = 76 'L
    b(2) = 97 'a
    b(3) = 86 'V
    b(4) = 111 'o
    b(5) = 108 'l
    b(6) = 112 'p
    b(7) = 101 'e

    SomeString = StrConv(b(), vbUnicode) Then ' good password
  13. Re: Crypting (hiding something from source)

    Thank you all for helping, got it working.
    I think this last solution should do fine, since my progeam users aint some leet hackers. If i am wrong then i propably end back here.


    Thanks again...
  14. Re: Crypting (hiding something from source)

    Cant tell yet, it says "Invalid outside procedure" and it stops in first b



    b(1) = 76 'L
  15. Re: Crypting (hiding something from source)

    I see, have seen many options now, but problem is, i dont know how to use it with my shell command...
  16. Re: Crypting (hiding something from source)

    Oh My God, and there it is...unbelivable...

    Hope i get it solved somehow...
  17. Re: Crypting (hiding something from source)

    Yep hardcoded, tryed with notepad, did not find it.
  18. Re: Crypting (hiding something from source)

    Thank you for Reply, but maybe some sample or hint?
  19. [RESOLVED] Crypting (hiding something from source)

    I have this line in my program:

    Shell ProgramFolder & "\program.exe host:port password", vbNormalFocus

    It opens a program and gives it host,port and password in parameters.
    It is working well,...
  20. Replies
    2
    Views
    449

    Re: SendKeys question

    Bump, please help.
  21. Replies
    2
    Views
    449

    SendKeys question

    Simple question, i have this in vb 08,



    Const NUMBER1 = &H30
    Public Sub DoKeys7()
    If GetAsyncKeyState(NUMBER1) Then
    SendKeys.SendWait ("t" + Form3.Text1.Text + "{ENTER}")
    End If...
  22. Replies
    9
    Views
    1,253

    Re: Input past EOF

    Thanks a ton, that solved my problem, and i will write that down, since its a good way to do replascements.

    Thank you all!


    Regards
  23. Replies
    9
    Views
    1,253

    Re: Input past EOF

    Since i am a beginner, this is not written from my head, i searched google for samples.
    All i really want to do is replace on those lines (bolded out exact what replace)
    Send3=t/tooresbind1~ ...
  24. Re: Problem with file editing "runtime error 53"

    Thank you all! Resolved problem, and learned useful things from this thread.
  25. Replies
    9
    Views
    1,253

    [RESOLVED] Input past EOF

    Evening to all, again i have problem with file editing, this time runtime error 62.

    What i try to do is, open 1 file (default file for my program), for input
    then take values from textboxes and...
  26. Re: Problem with file editing "runtime error 53"

    So i need to put in Form2 Load

    SampFolder = Form1.SampFolder ?
  27. Re: Problem with file editing "runtime error 53"

    Thanks for guidance (i am new to coding).

    Strange, now it seems that "SampFolder = Empty" ...

    For explation, this file editing code is not in my main form, it is in form2.

    SampFolder is...
  28. [RESOLVED] Problem with file editing "runtime error 53"

    Hi all, i have problem, i try to edit file with following code:

    If Dir(SampFolder & "\erpbind.sav") <> "" Then
    Else
    Open SampFolder & "\Default\tooresbind.sav" For Input As #1
    ...
  29. Replies
    22
    Views
    31,569

    Re: How to run exe with parameters?

    I wanted to try this option, but not sure how to do that, cant understand quoting.

    Options would be like this

    Program: img.exe
    Params: -script script.txt
    And img.exe path is in variable...
  30. Replies
    8
    Views
    17,724

    Re: Minimize to system tray.

    This sample does not work :(
  31. Thread: Keybinder

    by mixman
    Replies
    1
    Views
    967

    Re: Keybinder

    Can anyone lead me to somewhere please... :blush:
  32. Thread: Keybinder

    by mixman
    Replies
    1
    Views
    967

    Keybinder

    Done a lot of searching but did not find nothingh useful, maybe someone can help me out here.

    I want to create keybind program, function would be like this

    If user presses a predefined key,...
  33. Thread: HTML Parsing

    by mixman
    Replies
    3
    Views
    478

    Re: HTML Parsing

    Thanks for quick reply,

    So that 7th value must be defined somewhere?

    All i find associated with "linestemp" is


    Dim linesTemp() As String
    linesTemp() = Split(sTemp,...
  34. Thread: HTML Parsing

    by mixman
    Replies
    3
    Views
    478

    HTML Parsing

    Hi all, need little help about one code piece

    lv.ListItems(i).SubItems(5) = _
    Mid(linesTemp(7), 1, InStr(1, linesTemp(7), "</B></TD></TR>", vbTextCompare) - 1)
    ...
  35. Replies
    8
    Views
    17,724

    Re: Minimize to system tray.

    Everything seems to work, but when make ShowInTaskbar False, then strange thing happens, yeah it is not in taskbar anymore, but strange thing happens, how can i fix that?
  36. Re: VB - Using SaveSetting and GetSetting to store and retrieve data from the Registry

    Hi!

    This is really useful, thanks!

    My question is, how can i make if statement on loading that checks if this value is already saved?

    I want to do something like this


    If SOMETHING THAT...
  37. Replies
    22
    Views
    31,569

    Re: How to run exe with parameters?

    Yep it works that way, thanks , but i need that fNAME thing too, since this program is not always in deafult dir... so user can browse it...
  38. Replies
    22
    Views
    31,569

    Re: How to run exe with parameters?

    Hmm strange, says file not found, maybe problem with fNAME then...



    fNAME contains only path, without filename and trailin backslash, example

    "C:\test\test1"

    Could this be problem, that...
  39. Replies
    22
    Views
    31,569

    Re: How to run exe with parameters?

    I guess only 1, since only param i need to give application (samp.exe) is "game.estrp.com:7777"
  40. Replies
    22
    Views
    31,569

    Re: How to run exe with parameters?

    fNAME is directory where that application is...

    I have in my form 2 buttons, 1st one is"BROWSE" then user gets vaulue to fNAME , and second is "RUN" for runing app.

    Hope you understand, example...
Results 1 to 40 of 56
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width