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 Mike Lewis 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. codeMonkey1976

    Database Login Pops up

    How are you connecting to the database? you could have used a DSN on the dev machine but not created the DSN on the deployment machine, or you could have created the report with the DB sitting in C:\Documents And Settings\User\Visual Studio Projects\ProjectName\Somedb.mdb and then when you...
  2. codeMonkey1976

    checkbox ?

    First i would retrieve the stuff you need from the SQL database that you will use to set tag, text, position, etc. let's say you have created an object with Tag, Position and Text properties and you have retrieved from the DB into an array of these objects. SomeClass[] sc = GetDBData()...
  3. codeMonkey1976

    Reading XML with XMLReader

    The easiest way to do what you want is to load the xml file into an XmlDocument and run an XPath query as follows: XmlDocument xdoc = new XmlDocument(); xdoc.Load("Commands.xml"); XmlElement root = doc.DocumentElement; XmlElement elem = root.SelectSingleNode("element[id='1']"); string Text =...
  4. codeMonkey1976

    StreamReader Q

    Try this StreamReader myStream; string s_output; Process p = new Process(); p.StartInfo = new ProcessStartInfo("cmd.exe", "/c dir"); p.StartInfo.RedirectStandardOutput = true; p.StartInfo.UseShellExecute = false; p.Start(); p.WaitForExit(); myStream = p.StandardOutput; s_output =...

Part and Inventory Search

Back
Top