You cannot directly create a text file from the database text.You will have to read it and right it to the file.(Of course you can use things like DTS package to export values to text file directly)
laddie 0
Posts
-
Database and SQL -
Trial version of vs2005...,Hi Magi, I would suggest you to install professional version as it contains everything you require to do the development.The team edition is more for large projects which also includes lots of testing tools. You can get more information of the same in the same site where they have given shot description of what each edition have.And download the best that suits you. Please let me know if you have nay further queries laddie
-
session problemWhat is the error / message / output you are getting when running that command ?
-
Trial version of vs2005...,No installing VS2005 will not spoil your VS2003 programs.Both can be run parallel in the same system.
-
Trial version of vs2005...,VS 2003 ans 2005 can be run in parallel.
-
Open New Windowwindow.open(url);
-
ASP.Net Trusted IPWhy not try reinstalling the IIS :confused:
-
Trial version of vs2005..., -
Send a message to a control -
Send a message to a controlhave a look in to this http://msdn2.microsoft.com/en-us/library/ms171548.aspx
-
To search and copy from serverYou can search for a file.using Directory.GetFiles(FileName,SearchPattern); And copy to local system using ftp request and response classes in System.Net. Mean while what is your application is a client server apps or a web applicaiton ?
-
ASP.Net Trusted IPThat is strange?. Which OS does your WS run ?.Is your account part of any domain ?
-
SQL Server 2000 database 'bit' type problem. [modified]Just check if there are any triggers defined for that table that set the value to be 1
-
Windows VistaSure it does.
-
Combo BoxSqlCommand cmd = new SqlCommand("SELECT [field] FROM table",connection); SqlDataReader dataReader = cmd.ExecuteDataReader(); while(dataReader.Read()) { comboBox1.Items.Add(new llistItem(dataRead[0],dataRead[0]); } dataRead.Close(); Hope this helps
-
NewsletterJust have a look in to this. http://www.codeproject.com/useritems/Send\_Inline\_Image\_Email.asp Laddie
-
Delete DataIt should look something like this. SqlConnection con = new SqlConnection(connecitonstring); SqlCommand cmd = new SqlCommand("delete from table where year = @year",con); cmd.Parameters.Add("@year",SqlDbType.Int).Value = int.Parse(TextBox1.Text); if(cmd.ExecuteNonQuery() > 0) { Console.WriteLine("Record deleted successfully"); } else { Console.WriteLine("No data found"); }
-
ASP.Net Trusted IPSure you can. If you are using IIS 1) Go to the IIS 2) Select and do right click on the file 3) Select properties. 4) Go to file security Tab 6) In that the second group : Ip address and domain name restriction. 7) Click Edit 8) Click add and add the ip address you want to deny/grant access. Hope this helps laddie
-
datagridview new rows addedAlso you can set the column of the data grid's datatable which need to be unique to be true.
-
Regarding TelnetHope you google before you post question next time :-)