Form Window Cut-off When DPI Is Changed?
Sep 29, 2011
I created an application to allow users to delay a package from running. I just discovered today that if a user changes their Windows 7 Display property to greater than 100%, the bottom of the window is cut-off and you can't read the buttons. Is there some way to prevent this?
[Code]......
View 9 Replies
ADVERTISEMENT
Jan 6, 2012
If a window, for e.g. Firefox, changes its title, from Firefox to Stack Overflow - Firefox then I want my app to record that Firefox changed its title.Is this possible without the use of a hook and loop (EnumWindows)? If can be only done with a hook, which type of hook?
View 3 Replies
Oct 12, 2010
I have create a project with one main form window and also i have to use a number of other forms as well. now i want to open these other forms inside the main window and not outside. I'm using Visual Studio .NET 2010 as developing environment.
View 1 Replies
May 5, 2012
I changed my Username on my computer from i.e. "xxxxxx x xxxxx" to "Dennis"
VB 2008 during a compile gave me the following error: Error reading icon 'C:Usersxxxxxx x xxxxxAppDataRoamingMicrosoftVBExpress9.0VSProjectApplication.ico' -- The system cannot find the path specified.
The file "VSProjectApplication.ico" is in 'C:UsersDennisAppDataRoamingMicrosoftVBExpress9.0'
Somewhere in the VB2008 "configuration" files I believe that I need to manually change the old path to the new path.
I found the old path in the ".suo" file. The ".suo" file is not a text file. How can I edit the .suo file, save it so that it will work?
View 4 Replies
Jan 20, 2010
on my Form I have a DataViewGrid and some textboxes with a save button (they are filled with additional data of the selected row).Save is disabled first, when I change something in the textboxes the save button is enabled.When the user changes a gow in the grid, I want to ask before changing the grid row, if he wants to save (if the button is enabled).I am using RowEnter but this is too late, then the selected row already changed (and my textboxes already got new data)...What event can I use to ask if I should save stuff before the user changes a row?Something like BeforeRowChanging with a chance to cancel changing the row?
View 2 Replies
Jun 14, 2010
I have a vb.net project in vs2008. When the project loads, one form is always immediately marked as changed before anything has been done to it. This didn't happen in earlier versions of the form. Nor does it happen with any other forms, classes, modules, etc. I have no idea why it is occurring but I am curious.
View 4 Replies
Mar 26, 2009
I have a normal form (FormBorderStyle = Sizeable). When the user maximizes the form, the form's border should disappear and fully cover the screen. Like so:
vb
Private Sub frmVideo_SizeChanged(ByVal sender As Object,
ByVal e As System.EventArgs) Handles Me.SizeChanged
If Me.WindowState = FormWindowState.Maximized Then
'Remove border
Me.FormBorderStyle = Windows.Forms.FormBorderStyle.None
'Bring to front
Me.TopMost = True
End If
End Sub
Problem is, when the form gets maximized and border changed to None, the form doesn't cover the whole screen. The form gets the same height as when it is maximized with a titlebar on top. So, the form is about 20 pixels too short, leaving most of the Windows taskbar uncovered. So, apparently, if the FormBorderStyle changes after the form has maximized, the change in size is not corrected. How do I change a form's size when it's maximized or how do I change the FormBorderStyle before maximization is finished?
View 4 Replies
Aug 18, 2011
After I've changed a form icon, I got an error in debug, i.e. 'System.Resources.MissingManifestResourceException' occurred in mscorlib.dll...
View 2 Replies
Jun 30, 2010
Consider a simple VB.NET form with a couple of radio buttons and a checkbox.
Each of the radio buttons has a CheckedChanged handler setup that performs some action based on the state of the checkbox.
My problem is, when I initialize on the default radiobutton to be checked (from the designer properties window) the CheckedChanged event is fired for that radio button, but the Checkbox hasn't been initialized yet so I either get a null pointer exception or the wrong value is used in the handler. Either way, I don't want that handler code to be run unless the user picks a radio button after the form has been loaded.
I currently get around this by not initializing the radio button, but I need to set that default eventually and the best place is from the designer. I also can add a boolean field that's not set to true until the form is fully loaded and not process the events if that is false, but it's a dirty hack.
What can I do to prevent that handler from running its code?
View 3 Replies
Nov 10, 2010
I am trying to migrate from Access Database to SQL server database. Do I need to make changes (for saving, reading, deleting etc. data) to my code as well?
I understand I need to change connection but what about code?
View 2 Replies
Apr 26, 2010
I have a combo box on a form. I have a SelectedIndexChanged event, that displays a message box when the combo box has another item from it selected. This works fine. However when the form is loaded, I initially want to set the current drop down box item from the database, then AFTER I have set the current value, I want this event to work. Problem is from the get go when the form loads it asks me the question as its being changed from 'no data' to then be populated with a bunch of data and an item selected.
[Code]...
View 5 Replies
Sep 22, 2009
I got a DATASource connected, changed the table to details and draged it on to my form, but then it shows me the bindingnavigator at to of my form.
q1. how do i make it so every time this form opens it is like add new?
q2. how do make my own save button (don't want the binding navigator at top)
q3. in my form all my collums aper as textboxes how can i change it so there is a drop down menue that has forexaple 3 pre defined items that the user has to select on of.
View 9 Replies
Jan 23, 2012
How 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 Replies
Mar 24, 2011
As Autodesk is going to discontinue VBA for their Inventor product in the near future I have been looking at other ways to run VB.NET in Inventor. To date it doesn't look like VSTA will be the replacement. Automation from an External VB.NET app is certainly possible, but leaves something to be desired for speed and integration. Compiled Add Ins are the Cadillac of choice but can be a royal pain to debug and develop. Autodesk now provides a lightweight VB.NET script interface called iLogic. It's main purpose is to allow extreme customization of Solid Modeling parts. The code actually resides inside the Part Model file.
[Code]...
View 7 Replies
Mar 5, 2009
Iam creating an application. i have a main form it has 5 buttons i have created 5 more forms. my aim is to show a particular form for every button the form is opened in a new window i dont want to open in a new window it should be embed in the main form when i click anthor button it will show the related form in place of previous form
View 2 Replies
Mar 5, 2009
Iam creating an application.i have a main form it has 5 buttons i have created 5 more forms.my aim is to show a particular form for every button the form is opened in a new window i dont want to open in a new window it should be embed in the main form when i click anthor button it will show the related form in place of previous form?
View 1 Replies
Sep 10, 2010
how can I use main form like MDI parent form in window application?
View 1 Replies
Aug 3, 2011
In vb6, we have a windows (kind of layout of the screen), that allows us to manually position a form, by simply moving it with the mouse to the desired position.Don't we have same feature in .net ? am not finding where I can show this Window in visual studio 2008
View 6 Replies
May 27, 2010
i wonder how i can open a new form in same window . Example : i have a button on my first form when user click the button , form2 must appear in same window .
View 1 Replies
May 11, 2010
I am looking to create an action that will minimize the current window?
View 1 Replies
Jan 9, 2012
I want to open a second form from the same window.the form2 should have the same size of the form1.I have searched a lot in order to find a good solution for this.and i thought of using panels. i would hide the panel when opening form1. a button in form1 will show the panel. it works just the way i want.form1 has the datagridview while the panel contains the details in which i will use to update the table.but i cant seem to update the table.is there a better way to open form2 in the same window and how can i update the table if i use panels.
View 13 Replies
Oct 11, 2009
I am working on ASP.net using VB.net. I need to load a page in a new window on button click.
View 3 Replies
Feb 2, 2012
i have a window form application, now i want to run it into browser on server so that user can run it on server. What is the best way to do that The language is vb.net
View 1 Replies
Jan 31, 2012
I am trying to develop Window application which used Skype to make call.
When the call in progress,It would not allow me to click on any form element.
My whole application are not responding when i check in "task Manager".
I try to used thread as well as background worker but not work for me.
View 7 Replies
Aug 23, 2011
I have a problem here. In my window form there is a datagridview. Inside the gridview there are rows with data. Some rows background color is yellow, and some is white. I'm wondering whether there is any solution to sort the datagridview by rows background color so that yellow color rows is showing first.
View 1 Replies
Sep 24, 2010
I was wondering if it was possible to create a program in vb that recognizes a window/form and performs certain actions based on that. Basically what I want to do is create a program that auto fills out and clicks buttons on an install wizard to automatically install a program. I guess like some what of a macro. NOTE: I will only be using this only one installer, since I have to install this program multiple times.
View 7 Replies
Mar 13, 2011
How do I make the form send keystrokes such as Tab, Enter, Left Arrow etc to itself without interfering with other programs? If I use the SendKeys.Send method, it would send it to whatever window is opened. Is there a way to only work with the form? Very quick random example: Let's say I have 5 textBoxs and I click the 'Tab' button 5 times. What would happen ?
It would change the focus from one textbox to another right? Can I make this happen automatically ... like make it happen in the background and only to the form itself. So If I'm typing something on Notepad, I don't want to receive those 5 tabs. By the way I know I can use this code to change the fofucs, but remember its only an example.
[Code]...
View 1 Replies
Feb 23, 2011
how do i add an already exiting .exe or file etc. to vb window form? i mean like make it execute just by clicking on a button or link lable. example like "linklable1" *click* -open up the file or .exe-
here is my code so far
Imports UpdateVB
Public Class Form1
Public updater As New UpdateVB.UpdateVB
[Code].....
View 1 Replies
Nov 28, 2011
I've got a question about attachment field (as OLE object/attachment) in Access Database and Visual Basic 2010. I would like to know, is there a possibility to use attachment field in the same way, in VB like in Access Database? What I want to do, is to make an application (connected to Access Database) for users from my company, that will allow them to open "Registration Form" and fill all required fields, and also add PowerPoint Presentation as attachment.
What is most important, I would like to have an access to this presentation.
Project Path:
Employee opens Application/Window Form --> Fill all required fields + attachment field --> I have access to the presentation from Access Database/or another Window Form (I can Open/Edit/Change the presentation)
So, what I would like to have - Window Form with attachment as icon, but after upload (by employee/other person) it has to be in the database.
View 4 Replies
Feb 19, 2012
is it possible to add an instance of a java application as a child form a .NET Form?
View 2 Replies