Click here to Skip to main content
15,920,217 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Select tab in tabstrip in design time Pin
JUNEYT10-Feb-06 5:45
JUNEYT10-Feb-06 5:45 
QuestionUse FoxPro Database in VB6.0 Pin
Saeid Jorablo9-Feb-06 10:12
Saeid Jorablo9-Feb-06 10:12 
QuestionCrystal Reports For VS2005, Logon Problem? Pin
Noble D. Bell9-Feb-06 8:53
Noble D. Bell9-Feb-06 8:53 
QuestionSupress Combo SelectedIndexChanged Event Pin
RichardBerry9-Feb-06 6:08
RichardBerry9-Feb-06 6:08 
AnswerRe: Supress Combo SelectedIndexChanged Event Pin
Dave Kreskowiak9-Feb-06 6:21
mveDave Kreskowiak9-Feb-06 6:21 
AnswerRe: Supress Combo SelectedIndexChanged Event Pin
AlexeiXX39-Feb-06 7:29
AlexeiXX39-Feb-06 7:29 
QuestionDual monitors and fullpage Pin
Spaz809-Feb-06 4:44
Spaz809-Feb-06 4:44 
AnswerRe: Dual monitors and fullpage Pin
Dave Kreskowiak9-Feb-06 6:17
mveDave Kreskowiak9-Feb-06 6:17 
You can use the System.Windows.Forms.Screen, AllScreens property to get an array of monitors, each with it's own WorkingArea (hint, hint!), to set the Location and Size of each of your forms to different monitors.

This will enumerate the screens and show you their working areas:
Private Sub Form_Load(blah, blah) Handles Me.Load
    For Each Scr As Screen In System.Windows.Forms.Screen.AllScreens
        Debug.WriteLine(String.Format("Screen {0} has a working area of {1}", Scr.DeviceName, Scr.WorkingArea))
    Next
End Sub



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

GeneralRe: Dual monitors and fullpage Pin
Spaz809-Feb-06 6:51
Spaz809-Feb-06 6:51 
GeneralRe: Dual monitors and fullpage Pin
Dave Kreskowiak9-Feb-06 8:09
mveDave Kreskowiak9-Feb-06 8:09 
GeneralRe: Dual monitors and fullpage Pin
Spaz809-Feb-06 8:20
Spaz809-Feb-06 8:20 
GeneralRe: Dual monitors and fullpage Pin
Dave Kreskowiak10-Feb-06 5:51
mveDave Kreskowiak10-Feb-06 5:51 
QuestionHoe to trace system during idle position Pin
Muhusin Khan9-Feb-06 4:35
Muhusin Khan9-Feb-06 4:35 
AnswerRe: Hoe to trace system during idle position Pin
Dave Kreskowiak9-Feb-06 5:58
mveDave Kreskowiak9-Feb-06 5:58 
QuestionAlpha Numeric Serial Numbers Pin
RichardBerry9-Feb-06 4:10
RichardBerry9-Feb-06 4:10 
AnswerRe: Alpha Numeric Serial Numbers Pin
Guffa9-Feb-06 6:11
Guffa9-Feb-06 6:11 
QuestionShared Methods Pin
csmod9-Feb-06 4:00
csmod9-Feb-06 4:00 
AnswerRe: Shared Methods Pin
Dave Kreskowiak9-Feb-06 4:27
mveDave Kreskowiak9-Feb-06 4:27 
GeneralRe: Shared Methods Pin
csmod9-Feb-06 4:41
csmod9-Feb-06 4:41 
GeneralRe: Shared Methods Pin
Dave Kreskowiak9-Feb-06 5:34
mveDave Kreskowiak9-Feb-06 5:34 
QuestionHow to open large database in Pocket PC? Pin
Pius__X9-Feb-06 3:08
Pius__X9-Feb-06 3:08 
AnswerRe: How to open large database in Pocket PC? Pin
Colin Angus Mackay9-Feb-06 3:33
Colin Angus Mackay9-Feb-06 3:33 
Questionprogress bar Pin
raj kumar reddy9-Feb-06 2:09
raj kumar reddy9-Feb-06 2:09 
AnswerRe: progress bar Pin
Dave Kreskowiak9-Feb-06 4:25
mveDave Kreskowiak9-Feb-06 4:25 
AnswerRe: progress bar Pin
JUNEYT9-Feb-06 11:15
JUNEYT9-Feb-06 11:15 

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.