Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,790 Nah
i let it be like that
thx for the help |
Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,790 yeah,
it can be by copying from the one that i have on the server?
coz my one is saved in the vs project sollution
and try to make another copy to the user in another specified folder
so... |
Forum: C# Jan 7th, 2009 |
| Replies: 5 Views: 1,790 this is asp using c#
string filename = "tracking result.csv";
string sExportFile = Server.MapPath(filename);
it just the piece of the code
the code save the file to the server |
Forum: C# Jan 7th, 2009 |
| Replies: 4 Views: 339 the problem is that theReader return string and the variable return int(number)
which is i have to format it to string to make the reader read |
Forum: C# Jan 6th, 2009 |
| Replies: 4 Views: 339 mydb thedb = new mydb();
MyGlobal oapp = new MyGlobal();
//define the reader
System.Data.OleDb.OleDbDataReader theReader = null;
//defining sql... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,576 mydb thedb = new mydb();
MyGlobal oapp = new MyGlobal();
ups, the code oleDb connection is in the mydb() method
i put it in separate file
well, i found my mistake
there are no... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,576 no error actually
when u set break point, it is not getting the reader value
i mean it cannot read the database
theReader = thedb.SQLExecute_Reader(_sql);
if (theReader !=... |
Forum: C# Jan 6th, 2009 |
| Replies: 8 Views: 1,576 coz i am a newbie, so i dont know how to use the code tag.
this is test the code tag
private void Search_Click()
{
string strSearch = ""; |
Forum: C# Jan 5th, 2009 |
| Replies: 8 Views: 1,576 I have a problem about updating access database.
there are 3 columns in my database : ID, searchkeyword, count
in the form there are button n textbox
if user enter a new search keyword, the... |