Search:

Type: Posts; User: Ritzky

Page 1 of 9 1 2 3 4

Search: Search took 0.04 seconds.

  1. Replies
    2
    Views
    723

    VS 2010 WinForms Security

    I currently own a WinForms 2D game that is used by about 100 people simultaneously. You have to login to the application via credentials stored on the MySQL server. My question is, how secure is...
  2. Replies
    6
    Views
    1,443

    VS 2010 Re: Option Strict Problems

    Replacing it with a "&" sign leaves it with the same error. (Still Option Strict Conversion Problem).

    The AppendText worked or my textbox, though. :)
  3. Replies
    6
    Views
    1,443

    VS 2010 [RESOLVED] Option Strict Problems

    Good day everyone.

    I have:



    Debug.DebugTextBox.Text = ("Current Guest: " + e.Params("user"))


    And
  4. Thread: Timer Question

    by Ritzky
    Replies
    12
    Views
    1,051

    VS 2010 Re: Timer Question

    I need to accurately send an ethernet packet.
  5. Thread: Timer Question

    by Ritzky
    Replies
    12
    Views
    1,051

    VS 2010 Re: Timer Question

    Ahh, yup it says Forms Timer, thanks.

    I'm trying to call my function every millisecond accurately. Would the threading timer be the best option?
  6. Thread: Timer Question

    by Ritzky
    Replies
    12
    Views
    1,051

    VS 2010 Timer Question

    Hi!

    I dragged the timer from the toolbox onto my form. Is that the Windows.Forms.Timer? I also set the interval to 1ms, is that accurately 1ms or is it 55ms (so I've read)?

    Thanks!
  7. Thread: MySQL Problems

    by Ritzky
    Replies
    6
    Views
    1,593

    VS 2013 Re: MySQL Problems

    I've tried text, integer, varchar(20), and tinytext. None seem to work. :( I have no spaces or anything in the column. It's written like "192.168.1.1". I'm guessing maybe wc.downloadstring has spaces...
  8. Thread: MySQL Problems

    by Ritzky
    Replies
    6
    Views
    1,593

    VS 2013 MySQL Problems

    I'm trying to see if an IP Address is in my database at form load, but I keep coming across the same error:



    Public Function GetIPAddress() As String
    Dim IPAddress =...
  9. Replies
    5
    Views
    715

    Re: Features and Ideas?

    Hmm, I'm not building a game, I'm building like a mini-ventrilo where my friends can all chat while we play a single player game. I'm asking for other features to incorporate instead of just chat. It...
  10. Replies
    5
    Views
    715

    Features and Ideas?

    I'm building an application for friends and family and I need some more features. The program is so we can communicate with each other while playing a game. The game is single player, so all I have...
  11. Replies
    1
    Views
    716

    Sendmessage to swf

    Hey I have an swf that only runs in Internet explorer, but I want to run it in vb.net forms application using the flash component. The problem is when I do that, I only get a blank screen (it...
  12. Replies
    4
    Views
    3,593

    VS 2010 Re: Split ListBox Item

    Ok thanks both worked. :)

    Just one more question, how do I add a column to the listbox. For instance, I want column1's name is "X" and column2's name is "Y". That way I can call it easier. :)
  13. Replies
    4
    Views
    3,593

    VS 2010 Split ListBox Item

    Hello!

    I have one listbox with items ( just one item for now )



    ListBoxItem1 {X=200,Y=2}


    How can I split it so that it only says:
  14. Thread: VB.NET To C++

    by Ritzky
    Replies
    1
    Views
    1,133

    Re: VB.NET To C++

    Anyone? :(
  15. Thread: VB.NET To C++

    by Ritzky
    Replies
    1
    Views
    1,133

    VB.NET To C++

    I have some VB.NET codes that I want to try as a native language (C++). I know there's no converter, because of the .NET framework codes, but I was hoping someone that knows both VB.NET and C++ could...
  16. Replies
    2
    Views
    709

    VS 2010 Re: Insert Into MySQL

    haha thank you paul, worked like a charm. :D
  17. Replies
    2
    Views
    709

    VS 2010 [RESOLVED] Insert Into MySQL

    Ok, so you helped me check the database, now I need help inserting into it lol:



    Using Command As MySqlCommand = Connection.CreateCommand
    Try
    ...
  18. Replies
    5
    Views
    983

    VS 2010 Re: MySQL Select From Error

    Thank you!

    They both work! <3
  19. Replies
    5
    Views
    983

    VS 2010 Re: MySQL Select From Error

    Thanks for the reply paul, but it still results in the same problem. I have the IP in my database, but still the "IP Doesn't Exist" message box appears. I think theres some wrong with the...
  20. Replies
    5
    Views
    983

    VS 2010 [RESOLVED] MySQL Select From Error

    Ok, so I have:



    Dim SQLQuery = "SELECT * FROM HWID WHERE IP = " & WC.DownloadString("https://secure.internode.on.net/webtools/showmyip?textonly=1") & ""


    When I run a check on it:
  21. Replies
    6
    Views
    649

    VS 2010 Re: Check Running Processes

    my nikka. jaja <3
  22. Replies
    6
    Views
    649

    VS 2010 Re: Check Running Processes

    Oh, lol thanks. I didn't know that.. umm one more question. say if one process is "notepad" and the other is "notepad22", how can I make it search only for "notepad" exactly? (instead of startswith)
  23. Replies
    6
    Views
    649

    VS 2010 [RESOLVED] Check Running Processes

    This code won't work for me:



    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick
    IsProcessRunning("notepad")
    End Sub

    ...
  24. Replies
    1
    Views
    1,532

    VS 2010 Change System Date

    I use:



    Private Sub ChangeDate()
    Dim st As SYSTEMTIME
    Dim NewDate As Date = Now.AddYears(1)
    st.year = CShort(NewDate.Year)
    st.month = CShort(NewDate.Month)
    ...
  25. Thread: Do/Loop

    by Ritzky
    Replies
    11
    Views
    1,284

    VS 2008 Re: Do/Loop

    Well surprisingly, I actually had to do something like this. (Almost year old thread).



    Do
    Loop


    I have a do/loop (I also use the stopwatch as a timeout function so the loop doesn't go on...
  26. Replies
    4
    Views
    2,763

    VS 2010 Re: Center ListBox Item (Text)

    Thanks Niya, that worked. :)
  27. Replies
    4
    Views
    2,763

    VS 2010 Re: Center ListBox Item (Text)

    Thanks Shaggy, I just like pretty, symmetrical forms. :)
  28. Replies
    4
    Views
    2,763

    VS 2010 [RESOLVED] Center ListBox Item (Text)

    Is it possible to center a listbox item's text? And/Or possible to have two vertical scrollbars on a listbox?
  29. Replies
    4
    Views
    988

    VS 2010 Re: Invalid Resource

    This is dumb. I also tried it with another program and it works fine. It turns into this dumb looking icon:

    http://i46.tinypic.com/1zn3hv9.png
  30. Replies
    4
    Views
    988

    VS 2010 Re: Invalid Resource

    Oh, wow, duh.. I feel stupid.

    Ok so I changed it to this code:



    Dim Path As String = Application.UserAppDataPath & "\Program1.exe"
    Using File As New FileStream(Path,...
  31. Replies
    4
    Views
    988

    VS 2010 [RESOLVED] Invalid Resource

    Dim Path As String = Application.UserAppDataPath & "\Program1.exe"
    Using File As New FileStream(Path, FileMode.Create)
    File.Write(My.Resources.Dll1, 0,...
  32. Replies
    5
    Views
    793

    Re: Detect Color On Screen Without API

    It's not within my form, it's my whole screen.
  33. Replies
    5
    Views
    793

    Detect Color On Screen Without API

    What the title says? I've been using GetPixel API to detect a color change on my screen, but is there a way to do it without API? Visual Basic 6.
  34. Replies
    2
    Views
    1,204

    Graphics Drivers For Windows Server

    Hello!

    I just installed Windows Server 2008 on my laptop to use as a "Home Server", but I'm having problems installing drivers. More particularly, I'm having problems with my graphics drivers. I...
  35. Thread: OS Information

    by Ritzky
    Replies
    1
    Views
    584

    VS 2010 Re: OS Information

    Label1.Text = My.Computer.Info.OSFullName
  36. Replies
    2
    Views
    1,017

    Re: Hold key down for some time

    Well, it worked, but is there anyway to do this without a timer tick? :) I have to do this with more keys, so 5 timers at one time lags also haha.
  37. Thread: Run As Service

    by Ritzky
    Replies
    1
    Views
    578

    VS 2010 Run As Service

    I have a Windows Forms App made in VB.NET that I would like to run as a service. There is no gui. :) How do I do it?
  38. Thread: C vs C++

    by Ritzky
    Replies
    2
    Views
    1,828

    C vs C++

    I want to switch to either C or C++, but I don't know which one to choose. I don't care about the difficulty, because I have awesome forum people to help code. ;)

    I only work with timers, so which...
  39. Thread: Lost my form.

    by Ritzky
    Replies
    4
    Views
    915

    VS 2010 Re: Lost my form.

    You might have deleted or renamed the class.
  40. Replies
    2
    Views
    1,017

    Hold key down for some time

    Does anyone know a way to hold a key down for lets say, 10 seconds.



    Dim StopWatch As New StopWatch
    StopWatch.Start
    Do
    SendKeys.SendWait("{Up}")
    Loop Until StopWatch.ElapsedMilliseconds >=...
Results 1 to 40 of 343
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width