That's exactly what I did. Thanks so much, Jasmine! ... two ... a ... ASAP. I ... because ... screen. ... whose ... elapses, ... timer ... incrementCounter ......
Hi My initial suggestion would be to make the dataset a member variable of the form class, then in your form load, assign the member variable to a new dataset,...
Tell me whether it is winform application or ASP.net application. If it is Winform application then declare Dataset as form level variable. If it is Asp.net...
I have been having no luck navigating to an url using this.myWebBrowser3.Navigate(theUrl) because the I get redirected to a login page which redirects to yet...
Hello All Who can i attach folder (not file) when i want to make setup to my program And if i want to save this folder again in the same place what shall i do?...
Hi again all, thanks for all the help last time. I have a little problem with sql - mainly because I know very little about sql. I've been 5 miles round the...
Hello friends, I want to join two labels by line by use of mouse, when user drag his mouse from label1 to label 2 , these two labels should get attach by line....
Hi all.. I have a sample project to download a zip file from a remote host via ftp, I can download any file like .txt, .htm using the code, but when I try to...
Is @UserName declared in your stored procedure as something that gets passed to it? Something like: CREATE PROCEEDURE UserSomethingOrAnother ( @UserName...
Hi, I'm trying to implement a log window in my application. It is a simple form with a list-box in it, and I'm currently using the .Item.Add("Foo"); to add...
Thanks Mailrahn, there is no stored procedure, and would rather make do without for now if I could. The code I presented is SQL in the select statement of an...
You need to use stored procedures. You should be using them anyway, but what you want to accomplish is much easier with stored procs. Almost all of my...
I'm trying to get a webBrowser to access a specific url. Unfortunanately, when I try to navigate to the url, I'm redirected to another page with frames which...
hi dear, i also tried to do the same its running perfectly. try running query in sql studio, there can be error in ur sql statement, if not please check what...
Ok Jasmine - seen as youve given me my orders regarding stored procs - I will have a bash that way. Will let you know how it goes. Thanks - Liz From:...
You can create in your application a single instance of Log window (see Singleton pattern) and a static method LogWindow::AddLogText(string logtext) with the...
Cool - thanks. I'm working through Apress's 'Beginning Visual C#' book here at the moment - but it's the age old problem of wanting to run before you can...
Hello all, I want to display records from my database (MySQL) in a GUI (windows form - DataGridView). Specifically, I want to display the newest record and I...
Hi Khushal - folks. I got somewhere with this. """ ALTER PROCEDURE dbo.StoredProcedure1 ( @UserName nvarchar(50) ) AS IF NOT EXISTS (SELECT UserName, Email,...
I didn't mean to sound forceful. I just don't dress up my language with a bunch of 'politeness'. I just say it. Sorry about that. What you are doing already is...
Hello, I am using StreamWriter in C# to write to a .txt file.... I have a very simple question... how can I place 'tabs' in the output that is written to the...
Joshua
joshua@...
Jun 6, 2007 2:11 pm
16547
Jasmine, there was no need for any appologies. I normally deal with embedded software and hardware projects - not databases and websites. I'm in at the deep...
Dear, Your code is perfectly fine, but the problem is that it will work for first time when the value is not in the database. As you have written your select...
I was assigned a task of modifying .psd files, the problem they wanted to solve is to make areas in a .psd files that its value are variable according to...
Here the trick: sw.Write("Text1\tText2"); Cabbi ... Hello, I am using StreamWriter in C# to write to a .txt file.... I have a very simple question... how can I...
Hi Try: Sw.Write("Text1\tText2"); This is the url for the escape sequence documentation in MSDN it lists all the escape sequences you can use in text :) ...
MMMmmmm - thinks Ive finally sussed it, with a lot of help and re-assurence from you people. The code wasn't .... quite fine from formviews point of you....