Forum: C# Dec 13th, 2006 |
| Replies: 1 Views: 1,152 Quick question. I have an updatestring to send into an SQL command. It actually needs to update three columns in one row.
I know how to write the string to update one column but is there a way to... |
Forum: C# Dec 7th, 2006 |
| Replies: 2 Views: 4,511 I did a little more research and found that I was going about this all wrong. I am going to use a DataSet and that should do what I need done here.
Thanks |
Forum: C# Dec 7th, 2006 |
| Replies: 2 Views: 4,511 Hello guys,
I have a Calendar control that I am working on. I am having problems with the appointment portion of it. Everytime you click on a time slot and type, it adds an appintment. Here is... |
Forum: C# Nov 28th, 2006 |
| Replies: 4 Views: 5,374 One more quick question. I've been researching on the web and do you think I should make different user controls or make a form for each screen (calendar/contacts). Both of them can be added to... |
Forum: C# Nov 28th, 2006 |
| Replies: 4 Views: 5,374 Thanks a bunch. This really helped out. |
Forum: C# Nov 27th, 2006 |
| Replies: 4 Views: 5,374 I have a quick question regarding windows forms. Say I have a main form and it has a toolstrip with 2 buttons on it. Lets say one button displays a calendar form in the main form and the other... |
Forum: C# Nov 3rd, 2006 |
| Replies: 2 Views: 20,696 Thanks,
I'll try this out! |
Forum: C# Nov 2nd, 2006 |
| Replies: 2 Views: 20,696 Hello,
I asked this question in the c++ forums but I've since moved the small program that I was working on over to C# Forms.
have a current file that I am opening. Each line of said file... |
Forum: C++ Oct 24th, 2006 |
| Replies: 8 Views: 16,029 If anyone is interested I fixed the DEALER NOT FOUND problem. All I did was make a bool variable named match. If it matched it set it to true and broke out of the while loop. If it didnt match I... |
Forum: C++ Oct 24th, 2006 |
| Replies: 8 Views: 16,029 Thanks so much for the help Wolf. I have 2 more problems. I kinda did a hack job with my code but it works for what I need to do. The problem I am having with the way I programmed it is that I want... |
Forum: C++ Oct 24th, 2006 |
| Replies: 8 Views: 16,029 Wow,
That worked A LOT better than the way I had it. Now the delimiters are gone and each line is still displayed together. That worked flawlessly. Since I dont want the users to actually... |
Forum: C++ Oct 24th, 2006 |
| Replies: 8 Views: 16,029 Ok, Ive read the file line by line using this:
while(!dealers.eof())
{
getline(dealers,line, '~'); //get line and ignore/skip delimiter
}
I see that when I do a cout << line; after... |
Forum: C++ Oct 24th, 2006 |
| Replies: 8 Views: 16,029 I am finally learning about fstream but Im stomped with this problem that I have. I have a current file that I am opening. Each line of said file looks like this:
... |