Forum: VB.NET Jul 19th, 2009 |
| Replies: 3 Views: 408 SQL server 2008 express. Which service am i looking for? |
Forum: VB.NET Jul 18th, 2009 |
| Replies: 3 Views: 408 Hello Everyone,
Please move to the correct forum, i wasn't sure where to put this. I also posted this to MSDN, but wanted to post here as well.
I am using VS 2008 Pro Edition
Yesterday i was... |
Forum: C# Mar 17th, 2009 |
| Replies: 4 Views: 2,677 You need to use
System.IO.Compression namespace. |
Forum: VB.NET Mar 16th, 2009 |
| Replies: 3 Views: 498 |
Forum: VB.NET Feb 26th, 2009 |
| Replies: 8 Views: 382 Awesome. Glad you got it figured out. Good luck. |
Forum: VB.NET Feb 25th, 2009 |
| Replies: 6 Views: 1,198 use data binding.
There are many guides or examples on this, but i googled and this is the first result i got.
http://www.startvbdotnet.com/ado/Simplebinding.aspx |
Forum: VB.NET Feb 24th, 2009 |
| Replies: 8 Views: 382 I just create something in like 5 mins. This works for me. At form load i set enabled property of specific combo to false.
In the SelectedIndexChanged event for general combo box i enable the... |
Forum: VB.NET Feb 24th, 2009 |
| Replies: 8 Views: 382 What did you try? I didnt give any exact code as im sure you know. Show us some code. If i can't help, i'm sure another will. |
Forum: VB.NET Feb 24th, 2009 |
| Replies: 8 Views: 382 Couldn't you use:
Pseudocode:
if generalcomobobox is soda then
comboboxspecific items = sprite, etc.
elseif generalcombobox is Juice then
comboboxspecific items = apple, etc. |
Forum: VB.NET Jan 31st, 2009 |
| Replies: 3 Views: 702 Thanks for the link and the encouragement. I will keep working on it hard. Thanks! |
Forum: VB.NET Jan 31st, 2009 |
| Replies: 3 Views: 702 Hello everyone.
Can anyone give a link to a good guide/tutorial on how to populate a treeview with the drives of a system. I am able to get the drives listed, but am i having a problem creating... |
Forum: VB.NET Jan 2nd, 2009 |
| Replies: 2 Views: 442 if you dont see the toolbar as a tab along one of the sides, then go to...
view menu then choose toolbox |
Forum: VB.NET Dec 20th, 2008 |
| Replies: 3 Views: 954 You are very welcome. I am very new as well. I just learned this by reading the forums. Good luck. |
Forum: VB.NET Dec 19th, 2008 |
| Replies: 3 Views: 954 |
Forum: VB.NET Dec 19th, 2008 |
| Replies: 2 Views: 614 Ohhhh... I see. So creating a new instance of the form in memory basically erases the original. Makes sense. Thank you! |
Forum: VB.NET Dec 18th, 2008 |
| Replies: 2 Views: 614 Hello everyone. I have been studying VB on my own in prep for my class next semester. I am trying to update a label on form1 from form2. Below is just a "test" example i created to figure out what im... |
Forum: C++ Nov 21st, 2008 |
| Replies: 3 Views: 934 I figured out my problem. When i defined the mutator and accessor functions in the cpp file instead of the header i was able to access the nested class' member variables and functions. Below are my... |
Forum: C++ Nov 21st, 2008 |
| Replies: 3 Views: 934 Oops. I took all the calls to that when it would not work. Below is TimeOff.h where i am trying to use the maxSickDays instance and then its setHours member function. Thank you.
#ifndef TIMEOFF... |
Forum: C++ Nov 21st, 2008 |
| Replies: 3 Views: 934 Hello everyone.
I need help using an instance of a class in another. Below are two header files. NumDays.h and TimeOff.h
I need to have instances of the NumDays class in the TimeOff class as... |
Forum: C++ Nov 14th, 2008 |
| Replies: 6 Views: 858 =P
Just pointing out the incorrect use of = in the IF. But yes you are correct of course. |
Forum: C++ Nov 14th, 2008 |
| Replies: 6 Views: 858 Your IF statements are not testing for equality. You are assigning using just the single =.
Do this.
IF ( end == end )
blah, blah, blah |
Forum: C++ Nov 4th, 2008 |
| Replies: 4 Views: 414 i opened it in binary mode. Ah well i'll keep working on it. Should i post all the code? |
Forum: C++ Nov 4th, 2008 |
| Replies: 4 Views: 414 Hi again. I wrote 4 instances of a structure to a .dat file. I called them north, south, east, and west. I created a new program to read that file and display the data. I am using the below loop. I... |
Forum: C++ Nov 3rd, 2008 |
| Replies: 4 Views: 855 Why not use std::ctype::tolower function?
run each letter through this function and it will convert it to lower. |
Forum: C++ Nov 3rd, 2008 |
| Replies: 6 Views: 774 I would recommend posting your code. You are not going to find anyone here that will give you answers without showing your effort. |
Forum: C++ Nov 1st, 2008 |
| Replies: 3 Views: 380 |
Forum: C++ Nov 1st, 2008 |
| Replies: 3 Views: 380 Hello everyone. I am trying to work through a programming challenge in my c++ book. I have gotten it to work, but i kind of cheated by looking at the file. I am going to past the entire code so i can... |
Forum: C++ Oct 30th, 2008 |
| Replies: 7 Views: 689 Thank you for the help! I appreciate it! |
Forum: C++ Oct 28th, 2008 |
| Replies: 7 Views: 689 Hi everyone. I decided to try and learn C++ on my own and i have ran into a problem and i just need slight kick in the butt. :)
I am just learning structures and i am practicing using some of the... |