Search:

Type: Posts; User: francisstokes

Page 1 of 13 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    2
    Views
    626

    Re: Hex / Binary

    Ok i dont think ive been clear. What im looking for is if i were to open a file in a hex editor, i would see this:



    00000: 34 23 00 F2 xx xx xx xx ..... ...B.


    I want to take text...
  2. Replies
    3
    Views
    1,359

    Re: [Pascal] Memory edting?

    Theres an open source memory editor for the wii written in pascal.

    http://wiird.l0nk.org/wp/download

    its the wiird console 0.9.3 .

    Check out its source. Might be helpful.

    [edit] Also,...
  3. Replies
    6
    Views
    823

    Re: Dropdown button

    How about the good old standard drop down box?
  4. Replies
    2
    Views
    626

    Hex / Binary

    byte[] buff = new byte[4];
    buff[0] = 0x34;
    buff[1] = 0x23;
    buff[2] = 0x00;
    buff[3] = 0xF2;


    FileStream fs = new FileStream("hex.bin", FileMode.Create, FileAccess.ReadWrite);
    BinaryWriter bw...
  5. Replies
    2
    Views
    506

    Re: RegEx Help

    Forget it. Came up with another way to do it.
  6. Re: textBox.Text.Replace WPF problem

    textBox2.Text = textBox1.Text;
    {
    textBox2.Text = textBox2.Text.Replace("A", "¢");
    textBox2.Text = textBox2.Text.Replace("B", "£");
    textBox2.Text = textBox2.Text.Replace("C", "¤");
    }

    Should do...
  7. Replies
    2
    Views
    506

    [RESOLVED] RegEx Help

    I'm using a regex pattern to read strings from a file in this format:


    "t": "vjVQa1PpcFOKNFsC_zQAH9gDvfcZko8idVlVXBrPPko="

    with this pattern:


    Regex re = new...
  8. Replies
    5
    Views
    769

    Re: Website Hits

    got any code?
  9. Replies
    1
    Views
    542

    Extension Help

    I don't normally use javascript, but I'm writing a script for greasemonkey to extend a specific page on stumbleupon.com.
    Basically, I've just started, and I'm trying to add a textbox to the page.
    ...
  10. 3.0/LINQ Re: Multiple Asynchronous Socket Connections

    Google "System.Threading" and "System.Net.Sockets".
  11. Replies
    2
    Views
    583

    Re: Not quite sure how to do this one

    It would be easier but that's pretty much the way im doing it now. But i do have a new question though.
    This is the way the app is set out:



    Im having some trouble with pause. I originally...
  12. Replies
    2
    Views
    583

    Not quite sure how to do this one

    Hi,
    I've been writing an app that plays music from youtube in a sort of itunes style (ie from a user genorated library of songs). This is all fine. My problem, however, is that i would like an...
  13. Replies
    3
    Views
    1,032

    More than an annoying problem

    Right. Well i have a toshiba laptop which i use for everything. i have no idea how it happened, but basically all my colours have inverted. Print your screen, slap it in paint and hit Ctrl+I and your...
  14. Replies
    2
    Views
    591

    Re: [2.0] Searching through text

    Argh. Doesn't matter now, it turns out the request has to be made from a real browser :(
  15. Replies
    2
    Views
    591

    [2.0] Searching through text

    It's been a while since i've done any coding at all, but i'm about to make a little app that downloads a html file and searches through it for a specific line.
    How would i search the file and find...
  16. Replies
    4
    Views
    643

    Re: Copyright

    The visual studio license says you can, so yes.
  17. Re: [2005] Handle "PingException"

    Can you tell us the Exact error?
  18. Re: [2005] Color in RichTextBox

    Im not sure but i think you can use the richTextBox1.Lines to mess around with the lines.

    And a newline can be made simply by adding the '\n' escape sequence:


    richtextBox1.Text = "This is...
  19. Re: [02/03] how to create a permanent cookie

    Is there a specific reason you need it done this way? Could you not store settings in a database?
  20. Re: Display a string to a status bar panel

    in the form with the staus bar:

    Goto the code and find the methos that looks similar to:


    Public Sub Form2()
    'dsbfvcgvf
    End Sub
  21. Replies
    4
    Views
    654

    Re: [2.0] Thread trouble

    Im sorry but I'm not sure I understand.
  22. Replies
    4
    Views
    654

    [2.0] Thread trouble

    Hi. Im making a small socket app (im talking about the server by the way). All it does is wait for a connection, and when it recieves one, it displays a message from the client closes the connection,...
  23. Re: Need convert this code to 2005 anyone can help?

    Yeah. You stated you want 'help', so do what you can, and post what you can't.
  24. Re: plz help me with my project ( Typing Game )

    to give you a basic idea (note this is psuedo code)


    Do While (GameOver Not True)
    If label1.Postion.Y = WindowHieght Then
    label1.Position.Y = WindowHieght
    Else
    ...
  25. Replies
    5
    Views
    4,411

    Re: [2.0] Process owner

    bump
  26. Re: [1.0/1.1] what does .cctor means??

    hmmm. I don't think i've ever tried to understand any IL, but if your interested in it, they have some books on amazon.com.
  27. Replies
    9
    Views
    930

    Re: Point of Sale [2005]

    Can you go a bit more in depth, such as what exactly you want the program to do etc. Are you planning to use a database? If so is it SQL server, MS Access, MySQL etc.
  28. Re: [RESOLVED] [2005] how to limit textbox values..

    Obviously the comparison was a abit far out lol, but i still think it applies.
  29. Replies
    6
    Views
    725

    Re: Process.Start Help

    Agreeing with jmc, I find the best thing to do when your using a class that you havent used before is to look up on the documentation, and checl out its methods, overloads properties etc, so then...
  30. Re: [RESOLVED] [2005] how to limit textbox values..

    I know where your coming from RB, some languages are better than others for certain things, but saying vb6 is better than .NET is like saying Windows 98 is better than XP. Some things were easier to...
  31. Replies
    7
    Views
    594

    Re: Starting a application

    Oh now i see. I thought he was talking about closing word and his app stay open :).
  32. Replies
    8
    Views
    751

    Re: [2005] a hard one

    what is the "md" object?
  33. Replies
    6
    Views
    725

    Re: Process.Start Help

    Process.Start("C:\Folder\folder\folder\file.msi", "/qn")
  34. Replies
    7
    Views
    594

    Re: Starting a application

    Well then i don't understand what you need.
  35. Replies
    7
    Views
    594

    Re: Starting a application

    It shouldnt do that anyway. In fact i just tested that with notepad, and it didnt happen.

    So, to answer your question, to start another program, use this code:

    ...
  36. Replies
    3
    Views
    597

    Re: connect to SQL server?

    It shouldnt be
  37. Replies
    9
    Views
    655

    Re: Execute Commands

    Can I ask what your programming?
  38. Replies
    9
    Views
    655

    Re: Execute Commands

    add this to your startinfo thing:


    StartInfo.CreateNoWindow = true


    EDIT:

    Sorry. Dont put a ; at the end.
  39. Replies
    4
    Views
    596

    Re: program like Microsoft Word

    Ha ha ha :p
  40. Replies
    9
    Views
    655

    Re: Execute Commands

    This is what I'm saying though. This question has actually been answered in your other thread, by gigemboy if I'm not mistaken.
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width