VS 2008 Creating An Over-Lay Window
Dec 17, 2011
I was wondering if it is possible in VB8 to create a GUI that over-lays over a full-screen application (IE, a movie full screen, games or something that takes over the entire screen)
What I want to know is it possible to be watching a movie and click a button and without minimizing or losing focus on the movie a GUI is displayed. This could be handy in many ways to me to create say.. a clock that I can display so I don't have to minimize etc. to check.
I don't want to interact with the GUI, just display it!
View 1 Replies
ADVERTISEMENT
Jan 19, 2009
What would be the reason of creating a wpf window application?
View 6 Replies
Jun 24, 2009
i`m trying to create a capture window but when i copy paste the following code from msdn i got this error about hWndC ("Declaration expected"). What`s wrong?
hWndC = capCreateCaptureWindow (
(LPSTR) "My Capture Window", // window name if pop-up
WS_CHILD | WS_VISIBLE, // window style
[Code].....
Basically i`m trying to write a program to use my webcam via visual basic 2008.
View 2 Replies
Jul 16, 2009
I'm creating window application with VB.NET and Access2003.the problem is : how do i store the connection string in the app.config file that include the application.startup path? Dim connectionString As String = "Provider=Microsoft.jet.oledb.4.0;data source=" + Application.StartupPath + "db1.mdb;Jet OLEDB:Database Password=hello"
i connect it in each form but i don want this as i want to change it in one place.
[Code]...
View 4 Replies
May 21, 2010
There are three forms on this application and they are a MDI Frame(frmMain) and two child forms (frmSearchEmp, frmEmpDetail).
What I am trying to do is opening a "frmEmpDetail" by executing "CallEmpDetail()" on "frmSearchEmp".[code]....
View 7 Replies
Sep 14, 2011
I've a little program that has got tabControl with 2 tabs - "results" and "log". My idea was that when an error occurs the tab will switch automatically on tbLog to show what the problem was. Most arguably the problem is in threading. This is the code that..I use:
Dim thread As New Thread(AddressOf ExecuteQuery)
thread.Start()
ExecuteQuery executes the query and I'm making an error deliberately to see if I'll be automatically switched to the log tab which is in Try-EndTry procedure:
tbGrid.SelectedTab = tbGrid.TabPages(1)
The program indeed switches to tabLog (which is number 1) but I don't see any controls on it (txtLog), then when I'm trying to switch tabs a couple of times I get "Error creating window handle in a thread". I read other forum threads about it where people as how many controls do they have in their programs but my program does not exceed 70 controls on a form.
View 2 Replies
May 19, 2012
I am trying to create a Button via code to sit ontop of a Capture Window resaving a live image from a WebCam.How do I setup a Capture Window a Parant to a Button?
View 1 Replies
Nov 22, 2010
The programing I am creating requires window captions for SendKeys. Some windows hide their captions and I want to be able to use Spy++ or create my own way of getting the caption. All I want from Spy++ is Finder Tool, is there anyway of just taking that from Spy++ or how would I go about creating it?
View 5 Replies
Sep 3, 2009
I am using a Thread object to perform a function. This function performs a task and displays its progress in the gridview (like adding rows changing text etc )
The reason I am using a thread for this function is that there is a cancel button on the form. While the task is in progress, user can click on cancel to abort it.
Private Sub BtnStart_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles BtnStart.Click m_Thread = New System.Threading.Thread(AddressOf myfunction) m_Thread.Start() End Sub
The function works fine and thread is completed. But calling any method of datagridview after thread is completed ( outside the worker thread ) generates an error- "Error creating window handle".
That's probably because i am not using the invoke method of datagridview for calling its methods or readingwriting properties Do i have to create separate delegates for all the methods properties used in the function ( worker thread)
View 6 Replies
Aug 4, 2011
I am trying to create a simple parent-child form in VB2010. I use a datagridview for each table/datasource and each is bound to the paretn/child table and each table grid fills correctly. What I want is the parent-child relation to enforce filling the child table with only rows that fulfill the current row on the parent. I have created a DataRelation in the form load, but it will not permit a relation between tables in 2 different datasets. If I attempt to place both tables in a single dataset and define the PK-FK relation in the SQL Serve,r I cannot create 2 separate datagrids from the same dataset.
View 12 Replies
Mar 16, 2011
I seem to have some finger trouble creating a new application, here is what I am trying to do: I am trying to create a new solution and under the solution an exe (console project and a set up / deployment project. I have done this in the past and cannot see to do that any more.
Steps:
1. Create a new solution, the solution show in the solution explorer (with 0 projects)
2. Using "add" I create a console application (under the solution) and it shows a module etc. So far fine.
3. At this point the solution explorer windows only shows the console project and the solution itself (that used to show on the top) is gone. Now I am not able to add another project to my solution. I close my screen and then try to open the solution again. It comes up with the console project.
View 2 Replies
Mar 29, 2011
When I run project splashscreen is popup and then Logon window is run. But unfortunately when Logon window is run the splashscreen still open like maximized window and I cannot see Logon window. How to fix that problem?
View 1 Replies
Jul 14, 2012
I'm in the process of converting a VB6.0 application to VB.Net (2008 Express). I have a MDI parent form, I'll call mdiBackground, and 4 MDI child forms, frmStatus, frmShow, frmQwerty, and frmSentence.The layout is as follows:mdibackground - has the menus at top and is a container for the child forms.frmSentence - appears at the top frmShow & frmQwerty - appear at the left and when one is closed the other one is in the same position.frmStatus - appears at the right, it has buttons which control when frmShow and frmQwerty are to appear I have a couple of regular forms that act as dialog forms. The Me.Close() works fine on these.
[Code]...
View 11 Replies
Jan 10, 2012
We have a VB 2008 Windows application that is deployed on several hundred computers. For some strange reason only 2 computers out of the hundreds are experiencing the "Error creating Window handle" error. It is happening more consistantly on one machine than the other. Any idea what might be causing annoying error on such a limited basis? (It's a Windows XP machine that it is happening on. That's all the info I know regarding the machine currently.)
View 2 Replies
Oct 21, 2011
im using vs to create a simple security form, i am successful to create a a form of log but i need some more improve like
1) if the software remain untouch for a minute the login form should be shown as the user try to use it again
2) and how the software start automatically when window start
View 17 Replies
Aug 4, 2010
unhandled exception has occurred in your application. if you click continue, the application will ignorethis error and attempt continue. If you click quit, the application will close immediately"error creating window handle"What is this and how do I get rid of it?
View 4 Replies
May 8, 2010
I am trying to build a NOTEPAD/WORDPAD like application with vb.net on visual studio 2008.
I need an option to define and choose (MsWord, or CSS like) paragraphs styles, such as: "heading1", "green quotes", etc.
View 1 Replies
Apr 24, 2009
Is there any way to design and print reports using VB.Net Express 2008 If there is no solution, my backend is Access 2000 - so can I open & print a stored A2000 report from within VB.Net 2008 Express ? How
View 5 Replies
May 1, 2009
Im wounder how would I find the name for a window and place the name in a textbox, EX: The form will look for all the window name running an paste all the names in the textbox1, I looked on google theres only VB6 O.o, How would I do this?
View 3 Replies
Dec 21, 2009
I've been looking for the API to put a different window on top of everything and focus but I only found a vb6 version [URL].
View 3 Replies
Nov 9, 2009
Im using sendmessege to send key "h" to notepad, it works fine SendMessage(notepad, WM_CHAR, 104, 1)Im wanting to know how to get the hwnd of the top running program and send h to it.
View 1 Replies
Aug 23, 2009
I have a 3rd party program that puts up a pop up box and asks the user for input. In Spy++ the original program (I'll refer to this as Window A from now on) is a top level window, and the popup (Window B) is also a parent window. However, when I use FindWindow(Nothing, "Captcha Challenge") it returns 0. I've also used a code snippet from the forums
[Code]....
View 1 Replies
Aug 7, 2009
I wan my other app window (not vb form) to appear on top of all other windows and give it top priority (with focus or without don't matter). And when I'm done working with it, take priority away and select another window. What commands should I use?
[Code]....
View 5 Replies
Feb 21, 2010
I have a simple piece of code that checkes if the connection to the database failed or not.
[Code]...
View 8 Replies
Oct 31, 2009
For Each MyProc As Process In Process.GetProcesses If MyProc.MainWindowTitle <> "" Then ListBox1.Items.Add(MyProc.MainWindowTitle) Next How can I get the Process name of the Window?
View 3 Replies
Sep 30, 2009
How can I see if a specific window is in focus?
View 6 Replies
Dec 8, 2009
after installing the program, I want to have a setup dialog (for configuring the app) to display (maybe on first run, or before, not sure yet) But this only needs to run once, so how would I do this?
View 3 Replies
Sep 2, 2009
I don't understand why do I get exceptions in the emmediate window and how could I resolve them as they are not showing where and how do they occur. I get these every time I run he application in the Studio:
[Code]...
View 5 Replies
Nov 8, 2009
How would i get the X and Y of the desktop and place it on a picture box
lets say my screen is 500 x 500(EXAMPLE)
I want my application to get the full (500 x 500) X and Y and an image of the desktop
Then place the X and Y To the picture box. Like this. Now the cords match when mouse is at lets say 100,100 on the picture. It will be 100, 100 on desktop.
View 10 Replies
May 19, 2009
I searched the forums to look for an answer and I found several good exemples, but unfortunately, none worked for me..I want to make a little program to read an Edit field on another window. I understand the basic. I need to get the handle of the main window (using FindWindow) and then find the handle of the Edit field (Using FindWindowEx). So far, so good... I think I managed to get those two correctly doing:
Declare Auto Function FindWindow Lib "user32" Alias "FindWindowA" (ByVal strClassName As String, ByVal strWindowText As String) As Long Declare Auto Function FindWindowEx Lib "user32" (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, ByVal lpsz2 As String) As Long
Dim hWindow, hText As Long
hWindow = FindWindow("", "Text")
hText = FindWindowEx(hWindow, 0, "Edit", vbNullString)
(Yes the window title is Text :P). Ok now when I do a MsgBox(hText) it does show a long number (not 0) so I believe it found the Edit field (but I'm not so sure on how to verify if it's the right number... tried Spy++ with no luck).Now, this is where I'm stuck. I know I have to use SendMessage() with WM_GETTEXTLENGTH and WM_GETTEXT which I tried maybe in 100 different ways and none of them worked. I either got an OverflowException or my String would stay empty.
[Code]...
View 9 Replies