Forum: C# Oct 21st, 2009 |
| Replies: 3 Views: 434 Thanks man that should solve my problem |
Forum: C# Oct 20th, 2009 |
| Replies: 3 Views: 434 Hi All
I am having a problem on finding a solution regarding the ff problem
I need to do a search using a textbox and a datagrid, that means type in a text on the textbox and press enter and If... |
Forum: C# Jun 19th, 2009 |
| Replies: 4 Views: 571 I think you might wana consider having something like this txtDate.Text = DateTime.Today.ToShortTimeString();
in ur code, its hard to tell coz u havent post any code to see where u might be going... |
Forum: C# Dec 11th, 2008 |
| Replies: 6 Views: 3,249 Im trying to understand this... The above code is retrieving data from DataBase and store it on the dataSet using DataAdapter and dataset and a quiry which at the moment is Select statement, Now what... |
Forum: C# Dec 11th, 2008 |
| Replies: 6 Views: 3,249 You declare a dataAdapter or anything like that for example
string sql = "Select * from Products"
DbDataAdapter daProducts = new DbdataAdapter(sql, theNameOfyourConnection)
... |
Forum: C# Dec 3rd, 2008 |
| Replies: 4 Views: 777 Or u can use datagridview control which has column properties
DataGridViewCheckBoxColumn box = new DataGridViewCheckBoxColumn();
dataGridView1.Columns.Add(box); |
Forum: C# Dec 3rd, 2008 |
| Replies: 5 Views: 1,814 Application.Exit(); will close the application but this.close(); will close the form but not the application
Now tell me which one is the 1st form when u execute ur applcation?, login or Main form |
Forum: C# Dec 3rd, 2008 |
| Replies: 4 Views: 777 CheckBox box = new CheckBox();
dataGrid1.Controls.Add(box); |
Forum: C# Dec 3rd, 2008 |
| Replies: 5 Views: 1,814 it could work this way
mainform.show()
this.close() |
Forum: C# Oct 20th, 2008 |
| Replies: 2 Views: 1,587 |
Forum: C# Oct 15th, 2008 |
| Replies: 2 Views: 1,587 I wana bind datagrid with data from multiple tables, for example, I need a student name from student table, Student's Account number, Credit Available, Balance, etc from Account Table, name of the... |
Forum: C# Oct 7th, 2008 |
| Replies: 1 Views: 599 Guys
I have an Insert method which is inserting data on the database using textboxes but now Im having a ridiculous error that says something about "ORA ... Column should not be included here"... |
Forum: C# Aug 26th, 2008 |
| Replies: 4 Views: 5,447 I mean I wana allow 4 digits that is 1234 then when I press enter the label should be added |
Forum: C# Aug 25th, 2008 |
| Replies: 4 Views: 5,447 Guys
I have a textbox, I wana enter 4 digit and when I press enter it should show a label I have add the label but its not working the code I have look more like this
if(e.KeyChar == 4)
{
... |
Forum: C# May 15th, 2008 |
| Replies: 5 Views: 1,973 Hey.... I got it right man, I was just being stubborn, adopting donkey mentality, I guess I was too tired, Thanx a lot hey :) |
Forum: C# May 14th, 2008 |
| Replies: 5 Views: 1,973 I have something like this string x = Console.ReadLine(); and again I have tried int j = int32.Parse(x) and now I have this code int j = Convert.ToInt32(x) so now the problem is when Im trying to... |
Forum: C# May 14th, 2008 |
| Replies: 5 Views: 1,973 I have 2 integers x and y, now I want to read them from the user and the syntax kick me down, I guess u can only read string from the user according to C# syntax rule, I have tried many combinations... |