Forum: C# Jan 25th, 2008 |
| Replies: 2 Views: 8,893 Hi fellows,
I have learned to create stored procedures,but dont know on how to implement it in my code...I have a dataadapter called ada and a dataset ds..The form consists of three... |
Forum: C# Jan 21st, 2008 |
| Replies: 4 Views: 4,723 Dude,
I managed to generate the numbers,but i have a little problem.I have given this code in my page load event to fetch the last record from the database and increment the value of... |
Forum: C# Jan 21st, 2008 |
| Replies: 4 Views: 4,723 I am using the numbers for serializing my datas..The numbers should generate automatically like 1 for the first record 2 for the second 3, 4 ,5 etc...But the number should continue even he logs out... |
Forum: C# Jan 19th, 2008 |
| Replies: 4 Views: 4,723 Hi all webbers,
I have a problem of generating numbers automatically....
Actually i have a textbox and the textbox should autogenerate a number everytime the page loads or... |
Forum: C# Jan 16th, 2008 |
| Replies: 8 Views: 4,226 Hi shyam,
The link u gave is for web application.There is no c# code but only html code.I am developing a windows application..The logic is to get the weeks date in to the labels i have in... |
Forum: C# Jan 14th, 2008 |
| Replies: 8 Views: 4,226 Thanks man,It is getting incremented but the problem is when i log in tomorrow,the value in the first label and the preceeding labels gets incremented by one day...I dont want that to happen...This... |
Forum: C# Jan 14th, 2008 |
| Replies: 8 Views: 4,226 Thanks fellows,
I got the day in to label by using this...
label3.Text = dateTimePicker1.Value.DayOfWeek.ToString();
This returned me the current day.No problem
But how to increment... |
Forum: C# Jan 11th, 2008 |
| Replies: 8 Views: 4,226 Hi all,
I am fed up of doing this week scheduler for my project...i am trying and trying but seems to go nowhere..I thought of asking u people for any ideas...(windows application)
My... |
Forum: C# Jan 8th, 2008 |
| Replies: 6 Views: 6,423 use this code instead if u want to change the column name of ur table which is displayed in the data grid.
ds.Tables[0].Columns[0].ColumnName = "Name";
Use this after u give ada.fill(ds);...
Like... |
Forum: C# Jan 8th, 2008 |
| Replies: 1 Views: 1,196 Hi fellows,
Another Post with a different problem.
I am having a form to book tickets...i have designed a seat layouts..
i have 8 rows and i named them from A-H.
For each row i... |
Forum: C# Jan 8th, 2008 |
| Replies: 13 Views: 4,407 Thanks Buddies,i got it work by using enum and i also tried like saurab said.It also worked..Thank u very much in taking an effort to solve this issue.i am marking this post as solved....Check out my... |
Forum: C# Jan 7th, 2008 |
| Replies: 13 Views: 4,407 ok i have added a new column in my user table called utype..In my code i have written
Cmd = new SqlCommand("select * from account where uname=@name and password= @pwd and utype =@type", Con);
... |
Forum: C# Jan 5th, 2008 |
| Replies: 13 Views: 4,407 Hey fellows,
Thanks for the replies dudes...
Like ramy said the use of foreign key is necessary if i have two tables.but i am having a single table called account...
I... |
Forum: C# Jan 3rd, 2008 |
| Replies: 13 Views: 4,407 Hi there,i have joined newly to this site....I am a learner as off now.i am developing a windows application using c#.net..
I have two types of users Admin and Normal users.
I am having one login... |