Click here to Skip to main content
15,896,063 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Combo Box Pin
Steve Pullan29-Mar-06 12:58
Steve Pullan29-Mar-06 12:58 
GeneralRe: Combo Box Pin
rahsi30-Mar-06 4:54
rahsi30-Mar-06 4:54 
QuestionCounters and boolean Pin
judamu29-Mar-06 7:15
judamu29-Mar-06 7:15 
AnswerRe: Counters and boolean Pin
Steve Pullan29-Mar-06 12:52
Steve Pullan29-Mar-06 12:52 
QuestionHow can I change the color of a Checkbox in a Treeview ? Pin
trlowe29-Mar-06 6:43
trlowe29-Mar-06 6:43 
AnswerRe: How can I change the color of a Checkbox in a Treeview ? Pin
atregent12-Apr-06 20:43
atregent12-Apr-06 20:43 
QuestionHow to make Vb6 forms resolution independent Pin
Murtuza Husain Miyan Patel29-Mar-06 6:30
professionalMurtuza Husain Miyan Patel29-Mar-06 6:30 
AnswerRe: How to make Vb6 forms resolution independent Pin
Joshua Quick29-Mar-06 14:53
Joshua Quick29-Mar-06 14:53 
That's the way it's supposed to work. People use a high resolution so that they can fit more windows into their display. The truth is that your form's pixel width and height hasn't changed (unless you change to large font).

If you must keep the form proportional, regardless of the resolution, then you'll need to set the form's width and height on Form Load. You would calculate width and height based on a percentage. For example, if you wanted the form's width to take up 75% of the screen width, then you would do something like this...
Me.Width = 0.75 * Screen.Width

Problem is that you'll also need to resize/reposition your controls with the form too. You would have to do this in code. There's no designer properties that you can set to do this for you. Now, VB.NET is another story. In VB.NET, all controls have Anchor and Dock properties that'll resize things for you.
QuestionViewing Exchange Calendar Pin
ddamico987629-Mar-06 6:13
ddamico987629-Mar-06 6:13 
QuestionVb 6.0 and database problem.. Pin
LeRoiScorpion29-Mar-06 5:59
LeRoiScorpion29-Mar-06 5:59 
GeneralRe: Vb 6.0 and database problem.. Pin
Guffa29-Mar-06 6:09
Guffa29-Mar-06 6:09 
GeneralRe: Vb 6.0 and database problem.. Pin
LeRoiScorpion29-Mar-06 6:13
LeRoiScorpion29-Mar-06 6:13 
Questioncanny edge detection in vb.net Pin
preci29-Mar-06 5:35
preci29-Mar-06 5:35 
AnswerRe: canny edge detection in vb.net Pin
Christian Graus29-Mar-06 10:23
protectorChristian Graus29-Mar-06 10:23 
QuestionHow can I Insert a .swf file in my form Pin
scorp_scorp29-Mar-06 5:07
scorp_scorp29-Mar-06 5:07 
AnswerRe: How can I Insert a .swf file in my form Pin
HaloZa29-Mar-06 6:08
HaloZa29-Mar-06 6:08 
GeneralRe: How can I Insert a .swf file in my form Pin
scorp_scorp29-Mar-06 7:51
scorp_scorp29-Mar-06 7:51 
GeneralRe: How can I Insert a .swf file in my form Pin
Chatura Dilan29-Mar-06 16:12
Chatura Dilan29-Mar-06 16:12 
QuestionHi all plz help me.. Database and VB Pin
LeRoiScorpion29-Mar-06 4:00
LeRoiScorpion29-Mar-06 4:00 
AnswerRe: Hi all plz help me.. Database and VB Pin
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 5:37
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 5:37 
GeneralRe: Hi all plz help me.. Database and VB Pin
LeRoiScorpion29-Mar-06 5:58
LeRoiScorpion29-Mar-06 5:58 
GeneralRe: Hi all plz help me.. Database and VB Pin
Guffa29-Mar-06 6:11
Guffa29-Mar-06 6:11 
GeneralRe: Hi all plz help me.. Database and VB Pin
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 6:20
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 6:20 
GeneralRe: Hi all plz help me.. Database and VB Pin
LeRoiScorpion29-Mar-06 6:25
LeRoiScorpion29-Mar-06 6:25 
GeneralRe: Hi all plz help me.. Database and VB Pin
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 6:57
IBetNoBodyWillHaveThisNameOrAlias29-Mar-06 6:57 

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.