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 bkrike 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: *

  • Users: DanielXIX
  • Content: Threads
  • Order by date
  1. DanielXIX

    oracle CLOB data in c#

    Hi all, How do i get clob data using c# ? Any help appreciated.
  2. DanielXIX

    Executing msi file ????

    Hi all, Here my code ,i tried to execute msi file but it didnt work for me, System.Diagnostics.ProcessStartInfo proc = new System.Diagnostics.ProcessStartInfo(@"msiexec.exe"); proc.WorkingDirectory = @"c:\windows\system32\"; proc.Arguments = "/passive /i " +...
  3. DanielXIX

    Is there a way to execute multiple pl/sql statement in c#

    Hi, .. .. OracleCommand cmd = this.oraConn.CreateCommand(); cmd.CommandText = sqlStr; oraConn.Open(); cmd.ExecuteNonQuery(); .. . . here ,i try to use batch sql statements in "sqlstr" but i got error. is it possible ? Any ideas? thanx
  4. DanielXIX

    What is the common way to show archives in weblog?

    i want to create my own blog in c# and i m starting to design sql tables and i want to show my archive posts in that way, e.g Juli 2006(2) here 2 is the total post of blog articles in July. Agust 2006(10) September 2006(34) Oktober 2006(23) and so on... Here is my blog...
  5. DanielXIX

    Getting "outlook express" contacts...

    Hi, I m working on windows application.In my applicaton i get outlook contacts and use this contacts for some purposes and it works fine. But i need "outlook express" contacts too but i couldnt get them. I seach google but i didnt find any useful code and tips. Is there way to get "Outlook...
  6. DanielXIX

    Getting Microsoft Office Version

    Hi all, Is there a way to get "microsoft office version" programatically? Regards. Daniel.
  7. DanielXIX

    Delete selected "multiple items" from bound ListBox

    Hi All! my code is... private void btnDelete_Click(object sender, System.EventArgs e) { XmlTextReader myXmlReader = new XmlTextReader("c:\\AdressBook.xml"); DataSet myDataSet = new DataSet(); myDataSet.ReadXml(myXmlReader); myXmlReader.Close()...
  8. DanielXIX

    database of all the world's countries and cities

    Where can I get a database of all the world's countries and cities.can anybody help ? Thanx.
  9. DanielXIX

    retrieve all links of given address

    Hi, i want to enter url into textbox (for example http://www.tek-tips.com) and get to all links that page includes. is there a way to do this ? Thanx.

Part and Inventory Search

Back
Top