Click here to Skip to main content
15,912,756 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: Operator variable reference Pin
WESHILL29-Jun-04 8:56
WESHILL29-Jun-04 8:56 
QuestionWinForms component parented as an MDI child in a Win32 app? Pin
Blaiser29-Jun-04 4:33
Blaiser29-Jun-04 4:33 
AnswerRe: WinForms component parented as an MDI child in a Win32 app? Pin
Dave Kreskowiak29-Jun-04 7:58
mveDave Kreskowiak29-Jun-04 7:58 
GeneralCould not set the focus to a text object Pin
dj4198429-Jun-04 4:19
dj4198429-Jun-04 4:19 
GeneralRe: Could not set the focus to a text object Pin
Blaiser29-Jun-04 6:30
Blaiser29-Jun-04 6:30 
GeneralRe: Could not set the focus to a text object Pin
Dave Kreskowiak29-Jun-04 7:42
mveDave Kreskowiak29-Jun-04 7:42 
GeneralEnableVisualStyles Question Pin
beowulfagate28-Jun-04 20:33
beowulfagate28-Jun-04 20:33 
GeneralRe: EnableVisualStyles Question Pin
Dave Kreskowiak29-Jun-04 2:50
mveDave Kreskowiak29-Jun-04 2:50 
That's because you have the Application.EnableVisualStyles() in the wrong place. It should go before the Application.Run() for your main form, not inside it. The proper place for it in the Main function of your code. Just use Edit/Search and you'll find it. Also, put an Application.DoEvents() between the .EnableVisualStyles and the .Run for your app:
Sub Main()
    Application.EnableVisualStyles()
    Application.DoEvents()
    Application.Run(new Form1())
End Sub




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

Questionhow to convert speech to text Pin
MLSL28-Jun-04 18:25
MLSL28-Jun-04 18:25 
AnswerRe: how to convert speech to text Pin
Dave Kreskowiak29-Jun-04 2:26
mveDave Kreskowiak29-Jun-04 2:26 
GeneralRe: how to convert speech to text Pin
MLSL30-Jun-04 16:48
MLSL30-Jun-04 16:48 
GeneralRe: how to convert speech to text Pin
Dave Kreskowiak1-Jul-04 1:25
mveDave Kreskowiak1-Jul-04 1:25 
QuestionHow to connect a VB.Net to SQL server through internet? Pin
mythinky28-Jun-04 16:21
mythinky28-Jun-04 16:21 
AnswerRe: How to connect a VB.Net to SQL server through internet? Pin
Dave Kreskowiak28-Jun-04 16:43
mveDave Kreskowiak28-Jun-04 16:43 
GeneralRe: How to connect a VB.Net to SQL server through internet? Pin
RichardGrimmer29-Jun-04 22:55
RichardGrimmer29-Jun-04 22:55 
GeneralMScomm32.ocx Pin
Name Removed28-Jun-04 11:39
Name Removed28-Jun-04 11:39 
GeneralRe: MScomm32.ocx Pin
Dave Kreskowiak28-Jun-04 15:42
mveDave Kreskowiak28-Jun-04 15:42 
GeneralRe: MScomm32.ocx Pin
Name Removed28-Jun-04 15:53
Name Removed28-Jun-04 15:53 
GeneralRe: MScomm32.ocx Pin
Dave Kreskowiak28-Jun-04 16:20
mveDave Kreskowiak28-Jun-04 16:20 
GeneralRe: MScomm32.ocx Pin
Name Removed28-Jun-04 16:45
Name Removed28-Jun-04 16:45 
GeneralRe: MScomm32.ocx Pin
Dave Kreskowiak28-Jun-04 17:08
mveDave Kreskowiak28-Jun-04 17:08 
GeneralCurrency Validation Pin
Member 117945028-Jun-04 9:32
Member 117945028-Jun-04 9:32 
GeneralRe: Currency Validation Pin
Dave Kreskowiak29-Jun-04 3:20
mveDave Kreskowiak29-Jun-04 3:20 
GeneralBinary Serialization Issue Pin
tmfish28-Jun-04 9:16
tmfish28-Jun-04 9:16 
QuestionSetup Project for 2 0r 3 solutions? Pin
mythinky27-Jun-04 18:02
mythinky27-Jun-04 18:02 

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.