My Form Gets Black On Show()
May 28, 2011
I have an application that i need to show a form at the bottom-right corner within an interval of time 10-15-30 min.The problem is that when the computer is locked (Win+L) and the form appears all the components on the form turns black when a i click on the form using the mouse components begin to appear.
View 6 Replies
ADVERTISEMENT
Jul 9, 2010
How can I make the main form grey out/translucent black when a new form opens on top?
View 8 Replies
Aug 20, 2010
I been playing around with some code I found on internet and I am probably almost where I need to be. Using the printdocument I am able to get the active form in my project to print. That works fine. MY nextr issue was to get the form to print so that it is Black & white. No shading etc.. So I found a routine on internet that will take image and turn to B&W. Problem: IF a text box fields background color is too dark then the entire box shows up in black. If a text box field data is Selected it also is too dark and comes out white.her is code I found for turnign to B&W
Public Function PureBW(ByVal image As System.Drawing.Bitmap, Optional ByVal Mode As BWMode = BWMode.By_Lightness, Optional ByVal tolerance As Single = 0) As System.Drawing.Bitmap
Dim x As Integer
[code].....
View 1 Replies
Jun 5, 2012
He wanted to know how they can do to convert a portion of the form that you see only blue or black and white. I mean, the user presses a button and all that is in the form sees only blue or black and white only.
View 1 Replies
Jun 30, 2011
When my main form loads it also shows two other forms and has them scroll down from the upper right corner of the screen.
Here's the code for one of them:
Me.Visible = True
Dim x As Integer
Dim y As Integer
[Code].....
View 2 Replies
Jan 31, 2012
I see that the Line method is replaced with DrawLine, however; it seems like DrawLine must treated as an object as follows:
Private Sub Form1_Paint(ByVal sender As Object, ByVal e _
As System.Windows.Forms.PaintEventArgs) Handles MyBase.Paint
Draw a solid black line 25 pixels from the top of the form.[code].....
When I attempt to use this code (call it), I must somehow bring about an event, but I haven't found how to do that.How do I "call" this sub?
View 13 Replies
Feb 8, 2009
I have a form with transparent background (using png file).All controls placed over it becomes black at start then they change there color and comes to there original state on MouseHover. Its not the transparency keys problems since the transparency key color is different that controls back color. What can be the problem?
View 5 Replies
Jun 8, 2011
how do you show information from a datagrid cell to show up in a text box in another form, this is for a college project.
View 1 Replies
Jan 26, 2010
I'm new in .Net and I have an application with windows form "LOGIN" When users enter the user and password and click "ok", then if user passes validation then I have the code Show(MDIMainMenu) (I'm trying to open an mdi form), but I receive the following error: "Form that is already visible cannot be displayed as a modal dialog box. Set the form's visible property to false before calling Show. Error Number 5"
[Code]...
View 2 Replies
Jan 14, 2010
I have a program that uses two forms. The program opens to the Main form, and the user can navigate to the other form from the Main form through use of a button. Here's the way I've currently written it: When the Main form loads, it declares and instantiates the other form during the load procedure. When the user presses a button, the second form is displayed by means of the ShowDialog method. On the second form, there is a Return to Main Screen button which closes the second form, bringing the user back to the Main form.
So, here's the structure of the code:
Code:
Public Class frmMainForm
Dim frmSecondForm As New SecondForm
Private Sub btnSecondForm_Click(blah, blah, blah) Handles blah, blah, blah
[CODE]...
Here's my reasoning: Originally, I wrote the code so that a new instance of the second form was created every time the button was pressed. The problem was that whatever data was displayed on the second form, previously, was lost when the user returned to it a second time. Since the user would be switching back and forth between these forms, frequently, I needed that data to persist.
What is the best practice for accomplishing this:
1) Declare and instantiate the second form on program start, as I have done, and use the button simply to show the form?
2) Declare and instantiate the second form each time the button is pressed but maintain the variables on the Main form and pass them ByRef to a custom constructor for the second form? Is this even possible?
3) Something else?
View 5 Replies
Nov 11, 2011
Im trying to create a stopwatch in one form and another form show my progress bar using a combo box for mins and seconds to show the progress bar on form1 1
[Code]...
View 2 Replies
May 12, 2009
I am trying to use a progressbar to show on main form and then finish when next form is loaded, I have got this code.
1. When I click on button, it must open next form, but the next form must only open when the data in my list box has been loaded from Access Databse. When I run my program, it only shows the progressbar and don't open the next form.
Main form code:
Public Class Main
Dim PB As ProgressBar
Private Sub main_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
End Sub
[CODE]............................
View 4 Replies
Nov 12, 2009
Using the code below:
Private Sub ShowDropDown()
Using f As New DropDownForm
f.Visible = True
Do While f.Visible
Application.DoEvents()
[Code]...
This was a guess, after looking at the Form.ShowDialog method in reflector.My question is, is there a managed call I can make to acheive the same result, and what does a button click do that other clicks don't?
ETA: The problem does not occur if I open the form using a key.
View 1 Replies
Nov 8, 2011
This is a database app where I am trying to check for possible duplicates and give the user the option to keep the new record or assign to an existing record.In form1 the user will enter data into a textbox. I use this information to build a bindingsource.filter. Then I call another form (form2.show()) to display results to user and get user response. This part all works correctly.
The problem is that as soon as form2.show() executes, I loose the contents of the textbox - and it appears that I am no longer in the bindingsource.addnew() method.
View 14 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 4, 2009
When I use
Me.Close()
Form1.Show()
It closes the whole app.
How would I change it so that it only closes the current form while opening a new one? EDIT: I put [Not Resolved] Because I accidently pressed the resolved thing
View 8 Replies
Oct 14, 2009
i used to write the code to show another form and unload the current form it always told error on UNLOAD form2.show unload me Do i have to use the code :
.Dispose()
or is there another suggestions
View 2 Replies
Dec 5, 2010
I have two forms , and I want write a code like ( form2.show=true & form1.show.false)
View 2 Replies
Jul 25, 2011
I have a series of methods being called for my networking code. An event gets fired from the networking thread. Inside this event, which I've hooked into from a singleton class, I route messages to form level methods which they register on form load to handle certain messages they care about. Inside of these form message hooks I need to close the current form (which I was able to do) but also show a different one (which is giving me the trouble).
[Code]...
View 1 Replies
Jun 11, 2011
I want to use a form in vb.net 2010, so when I click on a button ,it must show me the info of a specific row in Exel and display info of that row in a text box.
eg.
Name Surname phone
Koos Leeds 08212122392
How do I start with this, any samples.
View 1 Replies
Dec 18, 2009
why I need to instantiate a form instead of form.show?
View 20 Replies
Sep 28, 2009
Private Sub HideShowTest_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Me.Hide()
[code].....
View 1 Replies
Oct 26, 2010
I have a dual monitor setup on my computer. My program has multiple forms. I've designed the program to check which monitor the main form is currently on and to open the secondary forms on the current monitor. When the main form is on the primary monitor the secondary forms open as FormWindowState.Normal which is the design-time setting for the secondary forms. If the main form is on the secondary monitor and I click to open a secondary form then the secondary form is to be displayed as FormWindowState.Maximised.
[Code]...
So I moved the Form.Show line to after the Form.WindowState line. This works fine when the Form.Show process is very quick. The problem is that one of the secondary forms downloads some information from the internet so it takes about a second to finish the Form_Load process. When I had Form.Show first the form would not appear on screen until the Form_Load process is complete, so the delay was in the form appearing at all which is how I prefer it. With Form.Show last the form appears on screen immediately but appears mostly blank and unresponsive until the Form_Load process completes.
I would prefer that the form not appear at all until the Form_Load process is complete but I would like it to appear in an already Maximised state. Is this achieveable? It doesn't seem that complicated but I just can't figure it out.
View 10 Replies
Apr 20, 2010
I've come across a situation where I try to run a simple line of code in a method Dim res As DialogResult = frmOptions.ShowDialog()but nothing happens. The dialog box will not appear. If I run this method from another location in the code it executes fine (i.e. displays the form in dialog mode and code executes fine thereafter). Hence, it may be the way in which I arrive at this code that is causing my problem, but I cannot see to find what is wrong.
When I pause the debugger the line of code is highlighted in green but I can't see to step over it or into it what may cause this to happen, or what I should be looking for that might be causing the problem??
View 2 Replies
Apr 7, 2009
Dim res As DialogResult = frmOptions.ShowDialog()but nothing happens. The dialog box will not appear. If I run this method from another location in the code it executes fine (i.e. displays the form in dialog mode and code executes fine thereafter). Hence, it may be the way in which I arrive at this code that is causing my problem, but I cannot see to find what is wrong.
View 8 Replies
Apr 27, 2010
I have a multiple form application with a listbox on each form. I want to be able to select an item in one listbox on one form and then click a button and it show up in a listbox on another form.
View 3 Replies
May 21, 2009
The codes in the .cs files are all in black. For example the usual blue text keywords appear in black. Could this be to do with the intellisense not working either?
View 1 Replies
Nov 30, 2011
I'm currently making a huge project. So huge it is split into four separate applications. I want the form to fade to black once the user logs on and only fade up when the new program has fully loaded. I've tried various methods, such as having the second program write to a file on the C: drive, then have the first program wait until that file exists to fade out.Is there a more efficient way? My method isn't working... the form will fade to black, but you get a glimpse of the desktop just before the new program launches (both are full screen apps btw)
View 1 Replies
Mar 15, 2012
Has any one come across any software suitable for this task (i.e. can be built into vb.net). I have tried using MS MapPoint, which according to the write up says it will do the job, but I cannot get it to work (posting on here didn't get any response) so I wondered if there was a more popular mapping utlity out there?
View 4 Replies