Click here to Skip to main content
15,913,685 members
Home / Discussions / Visual Basic
   

Visual Basic

 
QuestionMAC Address Pin
Aji V Nair4-Jan-07 4:50
Aji V Nair4-Jan-07 4:50 
AnswerRe: MAC Address Pin
Dave Kreskowiak4-Jan-07 7:20
mveDave Kreskowiak4-Jan-07 7:20 
QuestionTraversing through a dataset when the mouse is press and held. Pin
nickib584-Jan-07 4:40
nickib584-Jan-07 4:40 
AnswerRe: Traversing through a dataset when the mouse is press and held. Pin
nlarson114-Jan-07 4:59
nlarson114-Jan-07 4:59 
Question.Net icon quality Pin
MatthysDT4-Jan-07 3:08
MatthysDT4-Jan-07 3:08 
AnswerRe: .Net icon quality Pin
MatrixCoder4-Jan-07 3:38
MatrixCoder4-Jan-07 3:38 
QuestionMDI skinning question Pin
Enriad4-Jan-07 2:41
Enriad4-Jan-07 2:41 
AnswerRe: MDI skinning question Pin
Martin.Smith4-Jan-07 4:13
Martin.Smith4-Jan-07 4:13 
Hi Daniel,

I'm not sure it is possible to achieve what it is you are trying do, but I do have a bit of past experience with MDI forms.

I originally wrote an application where I wanted to change the backround image of the MDI form. This is not possible by setting the forms "BackgroundImage" property. I found that the MDI form has a control on it that handles all the displaying of child forms. It is this control that I had to alter the background image property of.

Below is a snippet of code I used to achieve this, perhaps you can manipulate the MDI form control in a similar fashion to what I did to achieve your rounded corners:

For Each Mdi_display As Control In Me.Controls
    If TypeOf (Mdi_display) Is MdiClient Then
        ' Set colour to white
        Mdi_display.BackColor = Color.White

        ' Centre the image
        Mdi_display.BackgroundImageLayout = ImageLayout.Center

        ' Set background image
        Mdi_display.BackgroundImage = My.Resources.Main_background

        Mdi_display.Refresh()

        ' All done!
        Exit For
    End If
Next


Regards,

Martin

GeneralRe: MDI skinning question Pin
Enriad6-Jan-07 23:21
Enriad6-Jan-07 23:21 
QuestionHow to send XML from one system to anther Pin
vivek_cs4-Jan-07 2:13
vivek_cs4-Jan-07 2:13 
Questionenumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 1:08
Hasan Jaffal4-Jan-07 1:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
Hasan Jaffal4-Jan-07 22:08
Hasan Jaffal4-Jan-07 22:08 
AnswerRe: enumerate all sql server 2000 instances on LAN in VB.net Pin
S Douglas7-Jan-07 1:57
professionalS Douglas7-Jan-07 1:57 
QuestionCheck Box event ? [modified] Pin
harvey1074-Jan-07 1:06
harvey1074-Jan-07 1:06 
AnswerRe: Check Box event ? Pin
MatrixCoder4-Jan-07 3:47
MatrixCoder4-Jan-07 3:47 
GeneralRe: Check Box event ? Pin
harvey1078-Jan-07 6:30
harvey1078-Jan-07 6:30 
Questionms access query implementation problem in vb.net Pin
amaneet4-Jan-07 1:04
amaneet4-Jan-07 1:04 
QuestionPatching and updating deployed projects Pin
Alex Feature3-Jan-07 23:36
Alex Feature3-Jan-07 23:36 
AnswerRe: Patching and updating deployed projects Pin
Alex Feature4-Jan-07 19:33
Alex Feature4-Jan-07 19:33 
AnswerRe: Patching and updating deployed projects Pin
S Douglas7-Jan-07 2:10
professionalS Douglas7-Jan-07 2:10 
QuestionRecord count in Reader Pin
pathak783-Jan-07 22:24
pathak783-Jan-07 22:24 
AnswerRe: Record count in Reader Pin
Colin Angus Mackay3-Jan-07 22:48
Colin Angus Mackay3-Jan-07 22:48 
AnswerRe: Record count in Reader Pin
Colin Angus Mackay4-Jan-07 1:00
Colin Angus Mackay4-Jan-07 1:00 
GeneralRe: Record count in Reader Pin
pathak784-Jan-07 1:07
pathak784-Jan-07 1:07 
QuestionDAAB wrapper issues with MS Access Pin
shreekar3-Jan-07 21:04
shreekar3-Jan-07 21:04 

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.