-
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, … -
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 … -
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 … -
Replied To a Post in Improperly formatted?
He He said thats all he got..and now hes getting this message  -
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 … -
Replied To a Post in C# inserting and deleting text from notepad?
hmm alright thx for your help -
Replied To a Post in C# inserting and deleting text from notepad?
ah, what if I do it with XML? -
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 … -
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 … -
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 -
Replied To a Post in Spacing?
It didnt work btw -
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 -
Replied To a Post in Spacing?
would you mind explaining this condition or giving me a link to a explanation? -
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 … -
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, … -
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 … -
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 -
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 … -
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 …