Click here to Skip to main content
15,903,175 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Minimizing windows in client/server app? Pin
pascalganaye14-Sep-04 3:34
pascalganaye14-Sep-04 3:34 
GeneralUpdating Database Problem Pin
ccotton33313-Sep-04 9:01
ccotton33313-Sep-04 9:01 
GeneralRe: Updating Database Problem Pin
Dave Kreskowiak13-Sep-04 9:40
mveDave Kreskowiak13-Sep-04 9:40 
GeneralRe: Updating Database Problem Pin
ccotton33313-Sep-04 10:24
ccotton33313-Sep-04 10:24 
GeneralRe: Updating Database Problem Pin
Dave Kreskowiak13-Sep-04 12:54
mveDave Kreskowiak13-Sep-04 12:54 
GeneralRe: Updating Database Problem Pin
ccotton33313-Sep-04 15:32
ccotton33313-Sep-04 15:32 
GeneralNewbie: want to create instance of line control at run time through code Pin
gamerPotatoe13-Sep-04 7:24
gamerPotatoe13-Sep-04 7:24 
GeneralRe: Newbie: want to create instance of line control at run time through code Pin
Dave Kreskowiak13-Sep-04 7:53
mveDave Kreskowiak13-Sep-04 7:53 
You probably didn't add the new Line control to the Controls collection of the object onto which your drawing. For instance, if your drawing on the surface of a Form (not a picture box!), you would have to add the control to the Controls collection of the Form:
Dim WithEvents myLine As Line
Set myLine = Form1.Controls.Add("VB.Line", "myLineControl")
myLine.Visible = True

The VB.Line might be a bit different. Check in the Object Browser (F2) to see what the exact name of the control is if not VB.Line.


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

Generalinsert,update,delete commands Pin
Britnt713-Sep-04 6:44
Britnt713-Sep-04 6:44 
GeneralRe: insert,update,delete commands Pin
Dave Kreskowiak13-Sep-04 9:44
mveDave Kreskowiak13-Sep-04 9:44 
GeneralRe: insert,update,delete commands Pin
Britnt713-Sep-04 10:24
Britnt713-Sep-04 10:24 
GeneralTextbox display value Pin
auguy13-Sep-04 6:12
auguy13-Sep-04 6:12 
GeneralScrollbars Pin
bertcox13-Sep-04 5:24
bertcox13-Sep-04 5:24 
GeneralVB6 client affects .NET library %( Pin
A.Obraztsov13-Sep-04 4:09
A.Obraztsov13-Sep-04 4:09 
GeneralRe: VB6 client affects .NET library %( Pin
Dave Kreskowiak13-Sep-04 5:20
mveDave Kreskowiak13-Sep-04 5:20 
GeneralBrowse for drives Pin
johnjsm13-Sep-04 2:53
johnjsm13-Sep-04 2:53 
GeneralRe: Browse for drives Pin
Dave Kreskowiak13-Sep-04 5:24
mveDave Kreskowiak13-Sep-04 5:24 
Questionhow to avoid saving when page is refreshed Pin
Irsh13-Sep-04 2:42
Irsh13-Sep-04 2:42 
AnswerRe: how to avoid saving when page is refreshed Pin
Dave Kreskowiak13-Sep-04 5:27
mveDave Kreskowiak13-Sep-04 5:27 
QuestionThread procedure with arguments? Pin
Hadi Fakhreddine13-Sep-04 0:57
Hadi Fakhreddine13-Sep-04 0:57 
AnswerRe: Thread procedure with arguments? Pin
pbpb13-Sep-04 2:24
pbpb13-Sep-04 2:24 
AnswerRe: Thread procedure with arguments? Pin
Dave Kreskowiak13-Sep-04 3:59
mveDave Kreskowiak13-Sep-04 3:59 
AnswerRe: Thread procedure with arguments? Pin
beowulfagate13-Sep-04 13:20
beowulfagate13-Sep-04 13:20 
GeneralRe: Thread procedure with arguments? Pin
Hadi Fakhreddine13-Sep-04 20:48
Hadi Fakhreddine13-Sep-04 20:48 
QuestionHow to create a browser I/F to an exe app Pin
dahacker13-Sep-04 0:15
dahacker13-Sep-04 0: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.