Click here to Skip to main content
15,907,225 members
Home / Discussions / C#
   

C#

 
GeneralDatagrid Combobox column Pin
Rohit Kashikar6-Jul-03 23:44
Rohit Kashikar6-Jul-03 23:44 
GeneralRe: Datagrid Combobox column Pin
perlmunger7-Jul-03 12:16
perlmunger7-Jul-03 12:16 
GeneralRe: Datagrid Combobox column Pin
7-Jul-03 18:30
suss7-Jul-03 18:30 
GeneralWM_PRINTCLIENT message Pin
peenu6-Jul-03 23:15
peenu6-Jul-03 23:15 
GeneralPDF viewer / printer component or solution - for distributed software(don't wanna use Abobe's) Pin
Selector6-Jul-03 20:20
Selector6-Jul-03 20:20 
GeneralRe: PDF viewer / printer component or solution - for distributed software(don't wanna use Abobe's) Pin
Roland Bär7-Jul-03 3:22
Roland Bär7-Jul-03 3:22 
GeneralPutting Array data in a string then showing it in a label. Pin
eggie56-Jul-03 10:48
eggie56-Jul-03 10:48 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
leppie6-Jul-03 11:32
leppie6-Jul-03 11:32 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
eggie56-Jul-03 14:44
eggie56-Jul-03 14:44 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
leppie6-Jul-03 15:15
leppie6-Jul-03 15:15 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
eggie56-Jul-03 15:44
eggie56-Jul-03 15:44 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
Daniel Turini7-Jul-03 1:24
Daniel Turini7-Jul-03 1:24 
GeneralRe: Putting Array data in a string then showing it in a label. Pin
Leon van Wyk7-Jul-03 3:58
professionalLeon van Wyk7-Jul-03 3:58 
GeneralOutlook Plugin Pin
gek_at6-Jul-03 9:47
gek_at6-Jul-03 9:47 
GeneralRe: Outlook Plugin Pin
perlmunger7-Jul-03 12:31
perlmunger7-Jul-03 12:31 
GeneralParallel Port Pin
eggie56-Jul-03 9:08
eggie56-Jul-03 9:08 
GeneralWorking with events Pin
stonee746-Jul-03 7:23
stonee746-Jul-03 7:23 
GeneralRe: Working with events Pin
Jim Stewart6-Jul-03 8:24
Jim Stewart6-Jul-03 8:24 
GeneralRe: Working with events Pin
stonee746-Jul-03 10:29
stonee746-Jul-03 10:29 
GeneralAdding multiple forms Pin
FDL5-Jul-03 23:46
FDL5-Jul-03 23:46 
GeneralRe: Adding multiple forms Pin
Nick Parker6-Jul-03 2:10
protectorNick Parker6-Jul-03 2:10 
GeneralRe: Adding multiple forms Pin
FDL8-Jul-03 11:42
FDL8-Jul-03 11:42 
GeneralRe: Adding multiple forms Pin
James T. Johnson6-Jul-03 4:12
James T. Johnson6-Jul-03 4:12 
Nick pointed you in the right direction for C# but I want to comment on the VB side of things.

While VB allows you to do that, it isn't a very good idea to do it! The problem becomes evident when you have forms that become intertwined. In one application I made there was a relationship between clients and dealerships.

Using the formName.Show method worked fine until you opened up a client, then opened up the dealership from the client, and finally tried to open another client. You would get an error!

Instead, the proper way to do it is very similar to the C# way of doing it.

(Its been a few years since I've done VB6 so pardon any typos Smile | :) )

Dim myForm As New formName
myForm.Show


James

"I despise the city and much prefer being where a traffic jam means a line-up at McDonald's"
Me when telling a friend why I wouldn't want to live with him

GeneralRe: Adding multiple forms Pin
FDL8-Jul-03 11:56
FDL8-Jul-03 11:56 
GeneralDisplaying a second user control in a form Pin
frogb0x5-Jul-03 19:33
frogb0x5-Jul-03 19:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.