Use The Notify Window Like Msn Messenger 7 That Appears In The Bottom Right Corner Of The Screen?
Jul 12, 2005How can i use the notify window like msn messenger 7 that appears in the bottom right corner of the screen?
View 2 RepliesHow can i use the notify window like msn messenger 7 that appears in the bottom right corner of the screen?
View 2 RepliesI'm using this code to minimize my application:[code]How do I make it minimize in the bottom right corner of the screen rather than the right? The only thing I tried asked for a pixel value. If someone uses a different resolution from me I need it to work for both of us.Oh, also, when I click on it minimized it opens a menu as if it was right clicked. Can I fix that?
View 7 RepliesHow can I position a form at the bottom right corner of the screen when the form load?
I use visual basic 2010 express
here;
Dim x As Integer
Dim y As Integer
x = Screen.PrimaryScreen.WorkingArea.Width - 400
[Code]....
Im trying to make a form popup on the bottom right hand corner of my screen to display a message when the application opens.I know i can set the location in the properties but that may vary depending on the monitor the application is displayed on, how can i code it so that it can detect were the bottom right hand corner of any screen is ?
View 3 RepliesLooks like a dumb question, but I tried the following (where "Me" is a MDIParent form):
Dim frmNotif As New frmNotifica
With frmNotif
.MdiParent = Me
[Code].....
i want my program to sit on the right bottom of taskbar beside msn messenger, clock
View 2 RepliesI Have Made My Web Browser But i Want to add events for url to display in the bottom left hand corner like IE8 look at the pic below i want to embed this into my Web Browser
View 8 RepliesI found some great code on capturing webcam images but the problem is the client PC will need to initiate the communication to this server (click Connect to server IP). This is like 2 way communication.How can i do something like this (door Kiosk system):when a visitor press a button on the LCD that come along a web cam (this will be the server), it will send the signal the client PC that is installed with the application i've created (window form) and pop up the images to the client PC (more like a 1 way communication). This image is captured through the web cam on the server to capture the visotor's image waiting outside of the door. How to do this?I'm really stuck as i'm not familiar with window API programming yet.
1) how to do the mentioned 1 way communication? possible in .NET?
2) how to make my application to be at the tray icon just next to the time displayed on the right bottom corner of the task bar? When a visitor press a button o the server, it will pop up a window form on the client PC showing the image captured via the server's webcam outside of the door.
I was able to search this code : [URL] but i need a help in modifying this code so that i can re-size the form from bottom left corner the code block below is resizing the from from bottom right corner i need that to be modified to convert it to bottom left corner
[Code]...
How can I get my screensaver to fill the whole screen. it has in the past but, just quit working several months ago. I have Windows Vista
View 1 RepliesHow to catch the event of the window close button(red X button on window right top corner) in wpf form ? We have got the closing event, window unloaded event also, but we want to show a pop up if he clicks the close button of the wpf form.
View 1 RepliesI need to hide or disable only the X button (left upper corner) in a window
View 14 RepliesClicking on the picture will cause the picture to move in the following manner: * If the picture is in the top left corner, it will move to the center, then to the top right corner * If the picture is in the top right corner, it will move to the center, then to the lower right corner * If the picture is in the bottom right corner, it will move to the center, then to the bottom left corner * If the picture is in the bottom left corner, it will move to the center, then to the top left corner
[Code]...
Can someone post code that tells you coordinate of a top left corner of a open Notepad window? Every code i get online shows errors
View 5 RepliesHow to show the bottom part of the screen in the click of a button? On my site I have a picture and when the user clicks on this some more information is shown at the bottom of the page, althought i do have text at the top informing the user to scroll down once the picture is clicked it would be nice to automatically focus the page on the bottom half.
View 3 RepliesI have an application with a main form, on loading the main form asks the user to select a file to work with. I have now been asked to add a splashscreen to the project so did the following:
* Right clicked in solution explorer and added the splashscreen
* Went into project properties and added the splashscreen to the dropdown for splashscreen and then clicked "View Application Events"
Within here I have added the following
Protected Overrides Function oninitialize(ByVal commandlineargs As System.Collections.ReadOnlyCollection(Of String)) As Boolean
Me.MinimumSplashScreenDisplayTime = 5000
Return MyBase.OnInitiallize(commandlineargs)
End Function
Now when I run the application the splash screen shows but within, a second the openfiledialog has appeared and hides the splash screen.
Basically the form moves to the bottom of the screen so that the bottom of the form is at the bottom of the screen. It the increases the width of the form until it is the width of the screen. The height stays the same. So it fills the bottom of the screen.
View 3 RepliesI am trying to automate with Coded UI . Now it runs fine but when an abrupt modal window / exception window appears , it halts and tries to act on it but this was not part of recording. I want to track when this modal window appears and then kill the AUT [ application that is being automated upon ].This will at-least prevent users from watching screen w/o any progress.
View 6 RepliesSo I know how to get a form inside a form.. I've got
Dim ch As New Settings
ch.TopLevel = False
ch.Visible = True
Me.Controls.Add(ch)
in my form_load.. The trouble is the window appears under all the controls on my main form.
1. How can I make it appear above the controls?
2. How can I make the form center in my main form?
I have a form that I want to dock and move to just above the task bar on the right side of the screen. How could I do this?
View 3 RepliesI can get a shape to go down and reappear at the top but I can't figure out how to get it to work going up.This is my code for going down:
If shpBar.Top + shpBar.Height < Me.Height Then
shpBar.Top += 50
Else
shpBar.Top = 0
End If
How to determine the form on the right-bottom of the window (given the panel with the clock)?
View 7 RepliesCurrently I have the following VB.NET code to make a screenshot of my desktop, but it only takes a picture of the active screen:
Public Function SaveScreen(ByVal theFile As String) As Boolean
Try
SendKeys.Send("%{PRTSC}")[code].....
The following code is how I execute the above function, if it makes any difference, which I don't think it does:
SaveScreen("C:Lexer_tracescreen.png")
Now, I need to be able to take a picture of the entire screen, not just the focused window.
I send a message a while ago and no one answerd, how can I draw directly on the screen (not on a specific window) just on the screen, neither if it's on the desktop or anything else.Is there is any option to bring up the switch between applications window (Alt + Tab), I don't want to use sendkeys because the user need to keep the key down and I just want the user to select the application with his mouse.
View 3 RepliesHow can i draw text(demo demo) on exist image from top right corner to bottom left corner of exit image (on photo) in windows based applicaiton using vb.net.
View 2 RepliesAt the bottom of the Properties window in the Visual Basic 2010 IDE, there should be a brief description of the selected property. For example "Text: the text associated with thecontrol". But it's reduced to a height of 0 so far as I can tell, and I haven'tfound a way to make it visible. Right-clicking the Properties window and selecting/checking"Description" has no effect. How do I make this pane visible?
View 2 Repliesusually with C#, though the controls I'm using for this project are VB. Usually I work with programming backend robust applications, but of course when I do a simple website for a friend is when I cant figure out the problem. I'm using a VB master page for the site. The "wood" div is supposed to be a background image that repeats dynamically as far down as the page goes, but for some reason it only goes as far as the browser window height. The background-repeat:repeat-y doesnt seem to do anything, so I feel like the problem has to do with the CSS. Here's the master page:
<%@ Master Language="VB" CodeFile="Normal.master.vb" Inherits="Normal" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
[code]....
Im trying to debug a troublesome Project. I downloaded and installed the Symbols from MS, set my Project to use the Folder where I installed them, etc. When I start Debugging, I can see at the bottom of my IDE window that it is loading Symbols at a rapid clip, until it gets to It stops, and I have tried waiting 15 minutes to no avail.
The file exists - D:Symbols
asapi32.pdb90DF78A27042428D99A8021F064506472
asapi32.pdb - 1.40 MB (1,469,440 bytes) - Created Wednesday, November 24, 2010, 12:25:44 PM
im using vb.net to open IE and go to a website... i can figure out how to size the window, but not change the windows location on the screen... how can i make the IE window position always 0,0
Dim oIE As Object
Dim hWnd As Long
oIE = CreateObject("InternetExplorer.Application")[code].....
I have a picturebox that I am importing an image to. I need it to expand but not expand past my buttons at the bottom of the screen. When I import the image it takes up the whole screen and covers up my buttons.
View 9 Replies