Make Form1 Greating Screen And Locked With Pasword?
Jul 14, 2009i want to make my secure application. i want to make form1 greating screen and locked with pasword.if right password entered then go to another form
View 9 Repliesi want to make my secure application. i want to make form1 greating screen and locked with pasword.if right password entered then go to another form
View 9 RepliesI have made a splash screen for my project and it runs great but I have a problem I can not work out how I make form1 to maximize after splash screen closes I have tried the following code [code]but it did not work how can I make the form1 size maximize after splash screen closes if anyone knows a way please let me know kind regards I have already set the peopties once to be full screen and it showed form1 when loading the splash screen I need the splash screen to show first then the form1 not together otherwise it dose not appear at all and it is running in the background.
View 2 RepliesHow do I make it so that when the program starts it shows splash, then the splash screen closes after 5 seconds and opens Form1.vb?
View 6 RepliesMy strengths are datasets and UI design just so you know.I am building a tool for table top gaming. Part of that tool is a battle grid I have an image inside a pannel, so that it can Pan around (which is set to right mouse down)
I need to create a gride, over the top of any loaded image (control is terrainpic(PictureBox)_I have made a grid, of points, I cannot get an image to apear under it.I cant look at this code anymore, so I am coming to you all for help.I need a full on squared grid that can be sized in three fashions, to represent 1 foot 5 foot and 10 foot spaces (which really doesnt matter as the sizes are only relevent to me)
[Code]...
I have search google but and have done all their instructions,but it doesn't solve my problem at all....
1. I installed visual studio 2008 in drive D:\ and mysql connector 1.1 in drive C:\
2. I try to change my root password but it didn't work
Here is my module:
Imports MySql.Data.MySqlClient
Module Module1
Public conn As New MySqlConnection
[code].....
But if I run this program, i always got a message "Access denied for user "@'localhost' (using pasword:NO)" and i have set password for root,so why it shows "using password:NO"
I wanted to make a screen recorder (not screen capture) program, but I am not entirely sure how to get it started. I have seen many videos and things on how to make one, but all of these just take multiple pictures and then don't compile them into a movie file, and I don't want to take many pictures (unless that is the only way possible.) I am using Visual Basic 2010 Express and I have looked at the Windows Media Encoder, but I can't seem to figure out how to use/implement it (yes, I have downloaded and installed it.) Maybe I can use some kind of ActiveX control?
View 3 RepliesHow to make in VB08 Background image to be .gif animeted I put the picture that is .gif for background image but no effect from the image how to fix it?
View 7 Repliesis there anyway to make my form1 always on top of the desktop?like when i open it i ca always see it and another program will just go under it instead of over it
View 1 RepliesIm trying to make a custom splash screen , but i cant seem to get it to work. Im trying to display a welcome screen for 3 seconds then close and display form1 (main form).Heres my current code.
[Code]...
form1.visable = false wont work and i don't see it on the properties window.
View 2 RepliesI have searched for a solution to make a nice printlayout from my form with a few textboxes. How do you make a nice printlayout from a form? I only use textboxes and I have searched for:
richtextboxes
.rtf and .txt format
writeline
etc.
On my printlayout I won to make a headline in bold. And some of the textboxesoutput in bold, some without and maybe some colors.
I want to make hotkeys for my project, it needs hotkeys to complete. how to make hotkeys even if it now focused on form1.
View 3 RepliesUsing VB 2008:Situation: A Form1.BackgroundWorker calls a Form1.subroutine. That sub starts a Form1.Timer with Me.tmrOK_BlinkForm.Enabled = True...fires Timer code in event: Public Shared Sub tmrOK_BlinkForm_Tick(ByVal sender As Object, ByVal e As System.EventArgs) Handles tmrOK_BlinkForm.Tick
Form3.Visible = True
Form3.Label1.Text = gNowButtonDispText
Form3.BackColor = Color.White
Form3.Refresh()
[Code]...
There must be a way to do this, I just need the correct BackgroundWorker Syntax send Stop commad to Form1.Timer from Form3.Click_event...all inside a Form1.BackgroundWorker thread started in Form1.
In my window application, Form1 variable eg. Public str as string. value blank/null when move to Form2 and Back to Form1. How to maintain Form1 varable's value when back to Form1 In vb.net if any one know, reply me soon
View 2 RepliesI have a program which has 2 forms. I execute form1 first because it reads files and then writes to a file. Then I execute second form (form2) that will read the file created by form1.
How could I make form1 start form2 once it finishes reading file and writing to a file?
is there any way to make the form title(form1.text) moving?like marquee in HTML?
View 2 RepliesI have got 2 forms ----- form1 and form2
i wanted to navigate from form1 to form2. and then close form1
i did the following code.
-sub form1 _ page load
dim form as new form2
form.show()
me.close
-end sub
i also tried -- form1.close() and form1.dispose() but all in vain
Problem is that my form1 is not getting closed
I have an aboutbox1 and form1..I also have a button. When I click the button it runs the backgroundworker. My background worker then opens form1.My backgroundworker doesnt just open it, it does alot of other stuff so don't ask why im doing it like that.My problem:When the background worker opens form1, form1 is not responding.
View 3 RepliesCan I make a certian function that will fade out [make a black screen that fades out for 2 seconds], then come back? Is that possible? ON A FORM.
View 3 RepliesHow do I make a loop from 1 to 100 and make it everytime it loops display incrementing numbers to the screen?
View 1 RepliesWhich different abount Form1.Close and Form1.Dispose?
View 1 Repliesi am developing one application for which i want it to stick to the edge of the screen when dragged near screen edge.
View 2 RepliesCan i make from this image to make it Loading Screen I mean i put this in Form1 [URL] And i want when the program start the progressbar (the white line to load)
View 1 Repliesi have a main menu on my program which has the option of registering. I have enter name and password ..and a button Confirm
i want to be able to store the added username and pasword to the login form so that it will work...
what must i do? also where would this data be stored...
I need to be able to start with Form1, move to LoginForm, then back to Form1 taking 2 variables and the "values" they have in the LoginForm back to Form1 and using the variables. I start with the main form (Form1) and have the user enter some information. Once they click OK I have the LoginForm open. After they enter their credentials I will check to make sure they are legal users, then go back to Form1 (here is where I need to take the Username and Password with me) to log onto a server using the same credentails from the login form.
View 1 RepliesI have these code in my project one from my lecture one that i did myself [code]what is the difference between "dim" something as new form than using the form name straightaway?
View 2 RepliesBTW this issue occurs in any MS office program when the VB.Net (or even VBA) is processing information.Example: In Excel, a worksheet is displayed on the screen. I start either, a VB.Net or VBA procedure and within 30 seconds the Excel worksheet (previously displayed) blanks out. In both VB.Net and VBA,ScreenUpdating = False. My expectation is that the previously displayed screen would stay static as if I left my desk to get a cup of coffee; came back and the same ole Excel worksheet was still there?Of course, setting VBA Screen Updating = False accomplishes two goals: 1) speeds up processing and 2) saves the user from seeing unnecessary "garbage-processing" steps.Why does VBA or VB.Net ScreenUpdating = False not freeze the screen at the time of its invoking?
View 11 RepliesI just upgraded from Windows XP Professional to Windows 7 Ultimate. Now I have a program in which I am receiving the following error:"There is no editor available for C:...Form1.vb. Make sure the application type (.vb) is installed."
This occurs when I try to open the designer view of the form.This problem does not exist in new programs (ones created after the upgrade).I am at a loss to explain this.
I have login form as start up form and i call Form1 after successful validation and in Form1, i have close button on click of Close i would like to reset username and password fields on loginform to null. If i add code in form1 below i get exception Dim fmLogin As New LogInForm
An unhandled exception of type 'System.StackOverflowException' occurred in System.Windows.Forms.dll
Make sure you do not have an infinite loop or infinite recursion
I get above on LoginForm below statement Dim fmMain As New Form1
can someone point me in the direction of how to make my app. Go fullscreen? Like how IE does it when you press F11 or a slideshow in WMP.
View 5 Replies