Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations dencom on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. BrasilianGuy

    main Domain to subdomain

    I have a app hoted on a rails server my application - lwi - is under the rails folder and in the public_html I have lwi folder as well. the only way to access my app right now is through http://lwi.lwiclean.com/home but I want my link to be www.lwiclean.com I assume that i have to do a...
  2. BrasilianGuy

    Find text and change state.

    HI everybody I'm using the following code to find a especific string in a txt file and then change the properties of the object. the text is there but it's not changing the textbox color as I want it to do. StreamReader tr = new StreamReader("Numbers.txt"); Regex rx = new Regex(tr.ToString())...
  3. BrasilianGuy

    Trouble with query results

    wrote this script below to retrieve data from a specific table. private void savenewid() { Connection.Open(); String Newproductid = productid.Text; String SQLStatementInsert = "insert into releasedids (newid) Values ("+ Newproductid+")"...
  4. BrasilianGuy

    Little help with my form

    With my code below I'm trying to accomplish: 1. Change the color of the button for checked and uncheked - Done 2. Save the value of the button into a xml file if button is clicked - Not working 3. delete the value from the xml file if button is uncheked - Not done 4. retrieve the value to...
  5. BrasilianGuy

    Saving info

    In my form I have a text box with some info inside. When user clicks in the text box it changes its color to display that this bos has been picked and user click on it again it goes to the previous mode. here is the code: private void TextBox1_Click(object sender, EventArgs e) {...
  6. BrasilianGuy

    Easy one

    How do I code a textbox to highlight the text or the background clicking on it? Lets say that I have box 1 2 and 3.... I wanna be able to highlight one of them or all of them as I wish! Thanks in advance Marcus Ps.: I'm newbie on C#.
  7. BrasilianGuy

    Identity Issue

    hi everybody, I created a DTS pack. to create a table, copy values into it from 2 other tables rename the current table in production, rename the created table and drop the old renamed table. I'm having some trouble creating the Identity in the new table. here is my code Creates temp table...

Part and Inventory Search

Back
Top