Jump to content
Xtreme .Net Talk

Recommended Posts

Posted

This is some very basic code, you need to tweak it your self

but do:

make a new vb.net project

place a button on the form and add

       Me.ShowInTaskbar = False
       Me.FormBorderStyle = FormBorderStyle.None
       Me.Width = 200
       Me.Height = Screen.PrimaryScreen.WorkingArea.Height
       Me.Top = 0
       Me.Left = Screen.PrimaryScreen.WorkingArea.Width - Me.Width

it will doc to the left side of the primary screen.

 

Hope this helps a bit

Posted

ok that helped a bit but then i want the software thats running to be maximised in the remaining space, not to be just behind

so its the applications running shud be resized to fit rest of window

Posted
ok that helped a bit but then i want the software thats running to be maximised in the remaining space, not to be just behind

so its the applications running shud be resized to fit rest of window

To keep it ontop

also set

me.topmost = true

 

but to make other windows resize around it i have no ideas sry

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...