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

  • Users: DanielXIX
  • 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 ????

    thanx for ur reply i used runas class in that article and i solved my problem . but one more thing,it throws exception from exitcode property of process class. has anyone encountered this problem before??? here my code... internal void ExecuteMsi() { Process...
  3. 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 " +...
  4. 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
  5. 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...
  6. 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...
  7. DanielXIX

    Getting Microsoft Office Version

    thanx for ur reply, i m working on your suggestion.
  8. DanielXIX

    Getting Microsoft Office Version

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

    Delete selected "multiple items" from bound ListBox

    Ooops!! u'r right... Thanx for ur help.
  10. 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()...
  11. DanielXIX

    database of all the world's countries and cities

    thanks for ur help tom. it helps me alot.
  12. 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.
  13. DanielXIX

    retrieve all links of given address

    thanks Veep ,that's what i want!
  14. 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.
  15. DanielXIX

    XML Parsing question

    happy programming Dashley !
  16. DanielXIX

    SQL Server Service Packs

    sp4 includes all fixes from previously released service packs . sp4 can be applied to an original sql server 2000 installation "or" to one where s1,sp2,sp3,or sp3a was previously applied.
  17. DanielXIX

    XML Parsing question

    Hi dashley, i m not test ur code but if it's ur real xml document ,here is the mistake... <?xml version="1.0" standalone="yes"?> <NewDataSet> <Table1> <Location>Office</Location> </Table1> <Table1> is it true? <Table1> <DCurrID>15991</DCurrID> <DValue>1</DValue>...

Part and Inventory Search

Back
Top