Click here to Skip to main content
15,922,533 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: TCP .Begin receive Pin
Dave Kreskowiak5-Oct-07 10:36
mveDave Kreskowiak5-Oct-07 10:36 
QuestionRich Text Box Pin
Socheat.Net5-Oct-07 6:42
Socheat.Net5-Oct-07 6:42 
AnswerRe: Rich Text Box Pin
Dave Kreskowiak5-Oct-07 8:13
mveDave Kreskowiak5-Oct-07 8:13 
GeneralRe: Rich Text Box [modified] Pin
Socheat.Net6-Oct-07 4:26
Socheat.Net6-Oct-07 4:26 
QuestionProject Guideline Pin
Sarfaraj Ahmed5-Oct-07 4:25
Sarfaraj Ahmed5-Oct-07 4:25 
AnswerRe: Project Guideline Pin
Dave Kreskowiak5-Oct-07 8:15
mveDave Kreskowiak5-Oct-07 8:15 
GeneralRe: Project Guideline Pin
Sarfaraj Ahmed6-Oct-07 17:38
Sarfaraj Ahmed6-Oct-07 17:38 
GeneralRe: Project Guideline Pin
Dave Kreskowiak7-Oct-07 3:01
mveDave Kreskowiak7-Oct-07 3:01 
You don't need an MDI form to do this. Among newbies, MDI is probably the second most abused idea, next to using a PictureBox to draw everything.

Make up your forms as normal. When you need to create a form and show it in the panel, you do something like this:
Dim currentForm As New BorrowBookForm()
currentForm.TopLevel = False
RightSidePanel.Controls.Add(currentForm)

You'll have to manage keeping only one form in that panel and destroying the previous form before putting the new one in the Panel. This is because if you don't, you'll run the system out of resources due to exhaustion of the handle pool.


A guide to posting questions on CodeProject[^]

Dave Kreskowiak
Microsoft MVP
Visual Developer - Visual Basic
     2006, 2007


GeneralRe: Project Guideline Pin
Sarfaraj Ahmed8-Oct-07 1:55
Sarfaraj Ahmed8-Oct-07 1:55 
GeneralRe: Project Guideline Pin
Dave Kreskowiak8-Oct-07 4:34
mveDave Kreskowiak8-Oct-07 4:34 
GeneralRe: Project Guideline Pin
Sarfaraj Ahmed8-Oct-07 23:08
Sarfaraj Ahmed8-Oct-07 23:08 
GeneralRe: Project Guideline Pin
Dave Kreskowiak9-Oct-07 1:46
mveDave Kreskowiak9-Oct-07 1:46 
QuestionCreating custom property like TextAlign,BorderStyle for runtimeControls Pin
VB 8.05-Oct-07 2:30
VB 8.05-Oct-07 2:30 
AnswerRe: Creating custom property like TextAlign,BorderStyle for runtimeControls Pin
visualhint5-Oct-07 4:16
visualhint5-Oct-07 4:16 
QuestionSend mail using gmail Pin
Soumyadipta5-Oct-07 2:03
Soumyadipta5-Oct-07 2:03 
AnswerRe: Send mail using gmail Pin
ESTAN6-Oct-07 5:19
ESTAN6-Oct-07 5:19 
GeneralRe: Send mail using gmail Pin
Soumyadipta10-Oct-07 19:23
Soumyadipta10-Oct-07 19:23 
Questionhow can i get back comumn data from Data Set Pin
Naveed7275-Oct-07 0:39
Naveed7275-Oct-07 0:39 
AnswerRe: how can i get back comumn data from Data Set Pin
pmarfleet5-Oct-07 1:15
pmarfleet5-Oct-07 1:15 
QuestionI want to create an Attendance Register for My Company using VB.net Pin
skullz_softwares5-Oct-07 0:10
skullz_softwares5-Oct-07 0:10 
AnswerRe: I want to create an Attendance Register for My Company using VB.net Pin
Christian Graus5-Oct-07 1:11
protectorChristian Graus5-Oct-07 1:11 
AnswerRe: I want to create an Attendance Register for My Company using VB.net Pin
GuyThiebaut5-Oct-07 4:41
professionalGuyThiebaut5-Oct-07 4:41 
QuestionFilling a typed dataset Pin
steve_rm4-Oct-07 22:16
steve_rm4-Oct-07 22:16 
AnswerRe: Filling a typed dataset Pin
Johan Hakkesteegt5-Oct-07 0:06
Johan Hakkesteegt5-Oct-07 0:06 
QuestionVB DLL Question Pin
yoya03034-Oct-07 22:08
yoya03034-Oct-07 22:08 

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.