• Member Avatar for Pilot122x
    Pilot122x

    Created SQL Connection Rejected

    Ok, so right to it. int CSQLDB::Init(const char *host, const char *user, const char *passwd, const char *db) { //Init mySQL mySQL = mysql_init(mySQL); my_bool rec = 1; mysql_options(mySQL, MYSQL_OPT_RECONNECT, …
  • Member Avatar for Pilot122x
    Pilot122x

    Edited Remote Keylogger

    Hey all, I am trying to implement a remote keylogger into my reverse tcp connection program but IM not sure where to start, I dont usually deal with socket programming …
  • Member Avatar for Pilot122x
    Pilot122x

    Created Remote Keylogger

    Hey all, I am trying to implement a remote keylogger into my reverse tcp connection program but IM not sure where to start, I dont usually deal with socket programming …
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Improperly formatted?

    He He said thats all he got..and now hes getting this message ![f6f00fb720eb3ea076bb0f29962e7ec8](/attachments/large/3/f6f00fb720eb3ea076bb0f29962e7ec8.png "f6f00fb720eb3ea076bb0f29962e7ec8")
  • Member Avatar for Pilot122x
    Pilot122x

    Created Improperly formatted?

    so recnetly I released a product of mine to a few close friends, one of these friends runs windows 8 and I coded my program in C# 2010, Windows 7..He …
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in C# inserting and deleting text from notepad?

    hmm alright thx for your help
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in C# inserting and deleting text from notepad?

    ah, what if I do it with XML?
  • Member Avatar for Pilot122x
    Pilot122x

    Created C# inserting and deleting text from notepad?

    I need to find out how to cut text and insert text into a textfile.....I know about StreamReader and StreamWriter but i dont think any of these will do unless …
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    I sometimes forget the little things while im working with more advanced code, which is the reason for me asking as I was in a bit of a hurry and …
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    I have exactly what was posted in my code and it didnt work but I guess Ill just try to find a way to figure it out myself
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    It didnt work btw
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    Alright thx much, If you could still post a link or an example with the this condition it would be nice as I might as well learn it now
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    would you mind explaining this condition or giving me a link to a explanation?
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in Spacing?

    all the selectable items in listBox2 are "level1-level10" << All 10 options, when I run it and I select for example "level1" from listBox2 I get "upgrade cottagelevel2....but I want …
  • Member Avatar for Pilot122x
    Pilot122x

    Created Spacing?

    if (listBox1.GetSelected(0)) { richTextBox1.AppendText(Environment.NewLine + "upgrade cottage" + listBox2.SelectedItem); } WHen this code is executed, it prints into the richTextBox1 the words upgrade cottage + the selection of listbox 2, …
  • Member Avatar for Pilot122x
    Pilot122x

    Marked Solved Status for How do I go to a new line in RichTextBo

    private void Cottage_Click(object sender, EventArgs e) { richTextBox1.Text = "create cottage"; richTextBox1.Text = "create Bob"; } So when I run the code what gets printed is Bob of course I …
  • Member Avatar for Pilot122x
    Pilot122x

    Replied To a Post in How do I go to a new line in RichTextBo

    Yes, I find that the AppendText method does work perfectly and "tinstaafl" thanks, found out what I was trying to do wouldve given me crazy syntax errors without the Event
  • Member Avatar for Pilot122x
    Pilot122x

    Edited How do I go to a new line in RichTextBo

    private void Cottage_Click(object sender, EventArgs e) { richTextBox1.Text = "create cottage"; richTextBox1.Text = "create Bob"; } So when I run the code what gets printed is Bob of course I …
  • Member Avatar for Pilot122x
    Pilot122x

    Created How do I go to a new line in RichTextBo

    private void Cottage_Click(object sender, EventArgs e) { richTextBox1.Text = "create cottage"; richTextBox1.Text = "create Bob"; } So when I run the code what gets printed is Bob of course I …