VS 2010 Change Position Of OTHER Application?
May 22, 2010
I use this code to start VLC player:
vlc = Process.Start("C:Program Files (x86)VideoLANVLCvlc.exe", "--fullscreen """ + bestand + "")
IT just start's correctly, only 1 problem. Sometimes it starts on my second monitor. I need it to alway's start on my main monitor. How can i change the position of VLC?
View 4 Replies
ADVERTISEMENT
Apr 13, 2011
Update problem : When i check DataSet.HasChanges() it return false, unless position change (move next or previews) it return True.
After position changes every things is OK and updated!!
this is the
PHP
Private MyAdapter As New OleDbDataAdapter
Private MyDataSet As DataSet
[Code]....
View 3 Replies
Sep 4, 2011
I'm making a Singlish-English Word Prosessor.When user typing in a active window's TextBox those letters were automatically converted to the Sinhala language.I did that hard part with sendKeys() Function.But Now I want to set my application windows's location at Active Window's Blinking cursor(Caret) position.So It will easy to user with English-Sinhala Translation thing.
View 1 Replies
Sep 7, 2010
I'm trying to set hotkeys for all my favorite websites. When one of these hotkeys are pressed, I want it to load the assigned website in internet explorer, but I want internet explorer to load on my SECONDARY monitor. I've already set out the hotkeys to load internet explorer, but it loads on the wrong screen. How to check if an instance of IE is already running. To be a bit more specific: the secondary monitor is set to the LEFT of the primary one. And the resolution is at 1440 x 900. So basically, I want to programmatically set IE's position to (-1440, 0) from within my application itself.
View 5 Replies
Sep 15, 2011
I have inherited a VB.NET project which was created in VS 2003 and is now in VS 2010. It works fine on one macine (32 bit). However, on my Win7 64 bit machine it simply won't build or run. I get an error saying "xxx is not a valid Win32 application. (Exception from HRESULT: 0x800700C1) Line 4762, position 5"
[Code]...
View 6 Replies
May 3, 2012
one of the apps that I wrote a couple months ago is getting to be rolled out to my production floor; one issue tho - It works great as a standard executable (you double-click, it starts and waits for data), however, I cannot get it to start as a system service.
I've already done a little bit of research for how to create a system service, but most of the information that I've come across is point to VC# or Visual Studio 2010 - I'm not finding much for VB 2010. Additionally, I'm only using VB 2010 Express and I'm pretty sure that I don't have the Windows Service application template's on my PC.
My application does have a "UI", but there isn't any user interaction; it starts and just sits minimized in the system tray polling a directory for the existence of a file - i.e. the windows form is not required.
View 1 Replies
Jan 28, 2011
I am developing an app that uses a sql backend database (hosted on a different machine).The app I am developing will be run on 10 different workstations simultaneously.Sometimes the app will change the database in such a way that the database needs to initiate a workflow process and I'm not sure of the best way to do this.Also, when database changes happen, how does one best notify the other app instances that the change has happened, so they know to refresh their data? I was thinking that triggers could help initiate the workflow but it might be nice to develop the actual workflow in .net code.Should I write another App to run as a service on the server and do the work and also to tell the client apps when things change?
View 1 Replies
Jul 6, 2009
when i insert data in to datagrid the position always in first column of first record.
how i can change the position to the last record(last row).
View 5 Replies
Sep 6, 2010
I am using VB2008 Express. After making changes to the position of controls on the form, the controls position reverts to the original position when the program is rebuilt and run. At first, there is no problem, but after 30 minutes working with the program, the problem begins. I am careful to keep all the files together. I am using XP Professional and .net 3.5
View 21 Replies
Sep 3, 2010
I was wondering if there was some function in VB.Net that could change the mouse's position to a certain point, I found this code:
Code:
Declare Function SetCursorPos& Lib "user32" (ByVal p As Point)
'...
dim p as point
p.x = 100
[code]....
View 2 Replies
Sep 22, 2009
A simple example is: lets say that im trying to make a program that allows you to move the mouse only with the arrows (left/right/up/down) how can i change the position of the mouse on the screen programmatically? If i wanted when you press a button the mouse to change position to X=0,Y=0 of the hole screen/desktop not the window of the form how can i do it? [Code]
View 5 Replies
Jun 21, 2010
i have a program that change the look of the taskbar. But i have a problem, i want to set the start button position to the middle of the taskbar but can't find any code to do this. I know that its possible because there are some programs that do this.
View 11 Replies
Jan 25, 2010
Is it possible to change the position of where msgboxs open at? Can i make them center? or random?
View 1 Replies
Apr 16, 2011
After packaging my created program.... and install it.... if i install it in my system its ok... but if i install it to other system... some labels... changed position....
View 2 Replies
May 26, 2011
I don't know how change position of object in run mode in vb.net 2005.
View 6 Replies
Jan 17, 2009
I have a VB.NET MDI WinForms app. My users have been complaining about form creep (as they call it), this is where each time you open a specific form within the main MDI window it opens slightly below and to the right of the location it loaded previously - i.e. it starts in the top left of the window and works its way down to the bottom right.I have to agree with them that this is extremely irritating, is there any way to prevent this?
The code to load the forms is:
frmPurchaseInvoiceSelect.Show()
frmPurchaseInvoiceSelect.MdiParent = Me
I can address this somewhat by setting the forms start-up positions to 'Manual' but then they just open directly on top of each other in the top left of the screen.
View 5 Replies
Apr 1, 2011
If the user click one of 4 buttons the form position on the screen will change. The four positions are Top Right, Bottom Right, Top Left, Bottom Left.
View 4 Replies
Jun 30, 2011
I created a game where you use the mouse to play, it's like the game labirynth. You can't touch the walls or you lose. When I start the level I want the cursor to appear in it's starting position, which is a red picturebox.
Here is the code I used:
Windows.Forms.Cursor.Position = New Point(679, 650)
The location where the cursor appears is actually dependent of the resolution of the screen.
For example: with my monitor resolution, the location (679, 650) is right on top of the picturebox i need it to appear on. but if you have a different resolution on your monitor it will appear on a different place. I need to actually make it appear on top of the picturebox.
View 1 Replies
Jun 24, 2009
as title says.... ive been searching it for a long time and i couldnt find it
View 1 Replies
Apr 29, 2011
Is it possible for me to control the mouse with vb.net?
I would like to change the position of the mouse and perform left and right clicks.
View 2 Replies
May 17, 2011
1.Multiple monitors are connection to one computer and they are extended.
2.My window spans to two monitors (Any window like notepad or settings wizard).
3.We change Visual Style From ON to OFF ( i.e. Changed theme from basic and high contrast to Aero or vice versa)
4.The window which was present on two gets shifted to either primary or secondary monitor.
5.This behavior is ok with normal application but I am developing such application which fails if window moves away.
6.I have added handler to check if user changes theme or visual style using :
AddHandler SystemEvents.UserPreferenceChanged, AddressOf UserPreferenceChangedHandler And in UserPreferenceChangedHandler I have checked if UserPreferenceCategory.VisualStyle changed and if it is changed then I have reset the window position back to old values before theme changed , but still it not reverting back to old position.
7.One strange behavior I observed is, it works if I set break point and step through code , but if I remove it then it's not working.
a. Added handler to catch user preferences changed event.
Private Sub RecordingWindow_Load(sender As Object, e As System.EventArgs) Handles Me.Load
AddHandler SystemEvents.UserPreferenceChanged, AddressOf UserPreferenceChangedHandler
End Sub
b. Copied old position
Protected Overrides Sub WndProc(ByRef m As System.Windows.Forms.Message)
If m.Msg = WM_MOVING Then
' Console.WriteLine("Window is moving")
[code]...
d . This is additional code which i tried instead of WndProc
Private Sub RecordingWindow_LocationChanged(sender As System.Object, e As System.EventArgs) Handles MyBase.LocationChanged
_windowLocBeforThemeChanged = Me.Location
End Sub
View 2 Replies
Feb 21, 2010
I have 2 events, one is that user can drag and drop the checkbox to wherever they like and other is to double click on the form to change background image. How to save these settings so the next time the form run, I'll have new checkbox position and background image.
View 6 Replies
Mar 23, 2012
I am currently working on a VB.Net program where there are two parallel multiline text boxes like this.
----- -----
| | | |
| | | |
----- -----
I would like that when one text box is scrolled, the other is scrolled as well. I was wondering if there was a Scroll event that could trigger the change the position of the scroll bar of the two text boxes.
View 1 Replies
Nov 23, 2011
I have the following:
a table of addresses and a bindingsource for the table
a enum list of address type: 0 = "Mailing", 1 = "Physical", 2 = "Shipping" etc...
I would like to bind the datasource of the combobox to the enum so it displays "Mailing", "Physical" etc. Then I would like to change the bindingsource position of the address table based on the user selection of the combobox.
Here is what I have so far:
cbxAddressName.DataSource = New BindingSource(ApplicationEnums.GetEnumList(GetType(ApplicationEnums.CompanyAddressType)), Nothing)
[Code].....
View 1 Replies
Oct 11, 2009
find out to change the location of a button.Can't find out how to use the Button.Location.Y property.
View 4 Replies
Nov 3, 2010
how can I make load "DXSETUP.exe" at center screen position using this code?
Private Sub Panel3_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel3.MouseClick
Try
[Code]....
View 12 Replies
Aug 5, 2010
how can I make start my external application "DXSETUP.exe" at center screen position using this code?
Private Sub Panel3_MouseClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel3.MouseClick
Try
Me.Hide()
Threading.Thread.Sleep(2000)
[code]....
View 3 Replies
Apr 23, 2009
I am trying to reposition and resize an application I have launched. The hwnd is extracted from the process that is returned from the application start. The call to the Windows API MoveWindow() call moves the window to the top of my screen and collapses it to the height of the title bar.
The x position appears to be correct and the width appears to be correct, but the y position and the height are not correct. I may have the wrong signature (but I don't think so) or there is something I don't understand about the call.[code...]
View 2 Replies
May 2, 2011
I have created a 2008 Visual Basic.NET application I'm using on Windows 7 that requires elevation. In myapplication I used the UAC manifest in VS 2008 to makere elevation. that works fine with a regular 2008 VB.NET form and will remember the form postion.On my application (really just a form) that requires elevation it will not save the position and always starts in the upper left of the screenDoes anyone know a way around this on an application created that requires elevation
View 2 Replies
May 1, 2009
I am working on a graphics application. If there were, for example, 3 rectangles in the picturebox. If you were to right click one of them a contextmenu would pop up. In the context menu you are able to click a button called Fill. When you click fill the selected rectangle gets filled in with the colour white. The rectangles are drawn by the user.
View 2 Replies