Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+2
Strength to Decrease Rep
-0
81% Quality Score
Upvotes Received
4
Posts with Upvotes
3
Upvoting Members
3
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
3 Commented Posts
~29.3K People Reached
Favorite Forums
Member Avatar for P.manidas

[QUOTE=Animal Mother;1505086]I apologize I don't know how I missed that. What I did was set a form up to be my projects main form but the form is never used and is always hidden. Instead of showing the main form on load I showed form1. When doing this you can …

Member Avatar for P.manidas
0
848
Member Avatar for PdotWang

I want to create 100 buttons in a Form. This is what I just tested. When you finish the following steps, you will see it is very nice. Enjoy. Step 1, Create a Form called Form1. Step 2, Add a TableLayoutPanel called TableLayoutPanel1. Step 3, Make it 10 X 10 …

Member Avatar for jaimin4829
2
900
Member Avatar for eileenc87
Member Avatar for sarifah n

What is the F12 is doing? Would you please post that piece of code? I guess what you need is something like: [CODE]If ThatButton.Enabled then ‘do the job End If[/CODE]

Member Avatar for sarifah n
0
89
Member Avatar for gerry11

Hi, you'd better divide your large project into small pieces and do it one by one. What are the functions the application need? What is the User Interface should be? What Database to use? Is it a desktop application or web application? Etc. Then you bring a specific question here …

Member Avatar for PdotWang
0
52
Member Avatar for swathys

I will not post an answer for this one, because I saw enough code. What is missing here is just "a nonsense thing other than a answer". You come to here for an answer, which is good. But the answer is not free. You need to pay with your own …

Member Avatar for swathys
0
344
Member Avatar for PdotWang

This is an answer to a question in C++ area. [url]http://www.daniweb.com/software-development/cpp/threads/355232[/url] It should be ready to be modified to code in C++, C#, or Java, because VB.Net is fully OOP. Even though it can be used for vectors, you may still want to modify it to a Vector Class.

Member Avatar for spixy
0
710
Member Avatar for spixy
Member Avatar for ChaosCoder

To mapping fields like "Street Number", "StreetName", "StreetSuffix" to one field "address", you may need to define a dictionary. When you read a file, first thing is to check the dictionary and find which fields to combine. In the application, you may want a form to help the input to …

Member Avatar for ChaosCoder
0
1K
Member Avatar for PdotWang

With ListView and ListBox, you can have multiple selections when you set the property to do so. There are different ways to delete all selected items from a ListView and ListBox, right or wrong. I have some lessons learned on the topic. (1)Use For Each loop in ListView. (It works) …

Member Avatar for WolfPack
0
3K
Member Avatar for ndeniche

A very useful snippet. You may also want to add cases of "1e-10", "-10.99", etc. Some accounting people even use "(10.99)" for "-10.99"

Member Avatar for PdotWang
0
2K
Member Avatar for iamcreasy

"what is the point of being NULL? Why set it to zero?" Sometimes, you need to know if a number (say a) has a correct value of 0, or it has nothing yet. You may want to use, for example, if a is null, then doing job A, or else, …

Member Avatar for template<>
0
18K
Member Avatar for markdean.expres

Use My.Settings for the purpose. You can binding a property of the Form to a setting in design time. Project > appName Properties > Settings Then Form > Properties > Application Settings > Choose the property and the setting OR, you can bind in code.

Member Avatar for PdotWang
0
193
Member Avatar for Wolxhound90

There is a difference between index and capacity. To use array, you want to say, Dim nCap as integer = 1000 ' just for example. Dim txtArr(nCap) as TextBox There are different cases in practice. 1. You know the capacity at design time. Like the above, it is 1000, for …

Member Avatar for PdotWang
0
188