Make A New Form?
Dec 6, 2009
I am trying to make a new form. I want it to have a varible name so that if ten are made, they are all something like form1 - form10 kind of thing. BUT is it even possible?I am trying to make a chat type program so each new window is a new chat, and so I have to handle the textboxes and clicks on a centralized form etc...
Dim objForm As Form
Dim FullTypeName As String
Dim FormInstanceType As Type
[code]....
View 7 Replies
ADVERTISEMENT
Nov 17, 2011
I have read that VB .NET in earlier versions limited the FORM size to that of the development machine screen resolution.I am hoping that there is a way in the current VB 2010 to get around that.However in my attempts to make the form larger, it always resets itself to the screen height on my develoment machine.Is there a way to get around this and have the person be able to use a scroll bar to move down?The data I wish to show actually has two screens worth of information but the stuff in the scroll down section would be used on a limitied basis so scrolling will be useful rather than having to recreat the screen to show less data at one time.
View 2 Replies
Jul 9, 2010
How can I make the main form grey out/translucent black when a new form opens on top?
View 8 Replies
Oct 24, 2009
I have a form with a text box in a toolstrip. I would like to make the width of the textbox relative to the form size when the form is resized. The following code works fine except when you click the restore button from a maximized state.
[Code]...
View 6 Replies
Jul 25, 2011
Is there a better way to make a form with multiple buttons opening different things than having a form that has lots group boxes for each tab. So in the begining each box will be invisible and when you click the button the corresponding group box will become visible. Is there any other way?It will be like a background image and it'll have buttons that will mask it with invisible buttons. when the button is clicked it will open the corresponding group box.
View 5 Replies
Mar 28, 2009
I'm making a program like PostIt! Well, i want to make a model form, and copy that form as many times i want.I think it works with something like frmPostit1 = frmModel.clone()
View 2 Replies
Jun 12, 2012
I have 3 PictureBoxes on a form that are tiled on top of each other. the form has a minimum vaule of (502, 416) and a maximum of (502, 1080). because the user can select from a MenuStrip to display '1', '2' 0r '3' PictureBoxes at once '3' being the bottom and '1' being the top PictureBox. What i need is when the user drags down the form it snaps to the next PictureBoxes position, so it goes down in blocks this is what i have so far which is pretty far from working.
If Me.Height <= (1079) Then
Me.Height = (732)
ElseIf Me.Height <= (732) Then
Me.Height = (424)
ElseIf
End If
I also thought i might be able to figure it out if i new how to create a variable like this
If Me.Height <= (1079 to 733) Then
Me.Height = (732)
I know that it isn't the correct syntax but it's kind of the idea If you can make sense from my not so good description and point me in the right direction/code example i will be most grateful :)
View 1 Replies
Nov 24, 2009
i want to make a a form when i send items in form as like as my desktop
View 3 Replies
Jun 9, 2011
I need to make a save button. The user will work in main form. User also has Settings in the MenuStrip, when the user clicks Settings a new form will open. There user has ability to make changes that will affect the Main form. This is the code:
If CheckBox1.Checked = True Then
bib.Panel2.Hide()
End If
This is the change that the user will be able to do that will affect the Main form, but I'm not really sure how to make that the CheckBox1 will be saved when the user clicks it and the clicks OK button. I also want to know how to make a cancel button.
View 8 Replies
Apr 30, 2011
I would like to make a form that prints the same size as a Legal Form, (8 1/2" x 14") When I check on the internet I see that the pixels can very at 75dpi the form is 637 x 1050 pixels. But at 300dpi the form is 2550 x 4200. Do I have to build the form as per the dpi ratio? I cannot make the form greater than 1612 x 1212. I have tried serching the internet for ways of expanding the form to greater pixels in the height than 1212. I am running Verion 7 of Windows and I am using Visual Basic 2010 Express.
View 5 Replies
Apr 25, 2009
Im using 2 forms
How Would i make a login form that will save my data to form 2 like i sign into form1 and it saves like my username/email and password from form1 to form2
View 3 Replies
Nov 21, 2009
How would i make so when the user resizes the form the controls on the form resizes to what ever(ex: form become full screen textbox is full screen.
View 2 Replies
May 28, 2010
How to make a form as bottom most form in vb.Net 2008
View 1 Replies
Aug 6, 2009
How can I Make the contents of a form resize with the form?
View 2 Replies
Jun 5, 2010
How can I make the second form (same size as the first) open exactly where the first form was?So Form1 is hidden, and form2 is shown in exactly the location form1 was in.
View 2 Replies
May 8, 2009
I want my login screen to open over my editor! Example MS word how they have the tips screen over top and you press the close button if you don't want it there.
View 3 Replies
Dec 7, 2009
I'm trying to make a simple game, but i have a question.i have a minimum damage and maximum damage lbl boxes on 1 form and i have a button if clicked it opens a 2nd form with buttons that deal "damage" when clicked
1. Attack (a regular attack that would deal the damage from form 1)
2. another attack ( this deals damage from form1 + 8)
3. another attack ( deals 30% damage for 4 attacks [so 4 attacks that deals 30% damage each])
4. another attack ( this one is great. it deals damage of 2 times of minimum damage to maximum damage and a third label box lblAP (attack power) which each 2 points of attack power you have it adds 1 more damage.)
i can do that math i just have no clue how to bring the info from form 1 to form 2.
View 12 Replies
Aug 18, 2009
Below is the exception code info. when I try to make form visible for the first time from another form then I get an exception code. something like 'a required variable not set'
Quote:
CODE:
View 7 Replies
Dec 18, 2011
Is there a way to make a form ALWAYS stay behind any other form?
View 12 Replies
May 2, 2011
How to make a form always stay on top of another form. Also both form's enabled property must be true I don't wanna make use of topmost property.
[Code]...
View 1 Replies
Mar 9, 2012
i have my code until now,like a set-up file.First when i click on my button it sends me to the form with the setup steps,when in setups it is copying a identical file into the startup menu.I want my button to check if i have that file into the startup folder,if i dont have it to send me to the setup if i have it to send me to the form with the program.I must mention that there are 2 forms,the setup form and the form with the program.Until now i tried this,but it dosent work so well...
Public Class Form1
Dim OS() As String
Dim UserName() As String[code]....
Checks,if i dont have the copy-cat of this file it sends me to the setup where it is copying the file.And if i have the copy-cat in the startup folder then send me to the other form:).
View 2 Replies
Sep 30, 2009
I have two forms one has button when i click that the second form (login form) appears, When the login form appears the first form should be visible but it cannot be selected till the login forms disappears.
View 3 Replies
Jan 20, 2010
Make a form appear only on first run?
View 11 Replies
May 19, 2010
how to make MSN into form ?
View 4 Replies
Jan 15, 2011
I'm a really beginner so i want to know if its possible to make the mouse move to certain co-ordinates outside of your form and then click , and then pause before repeating.
View 3 Replies
Jul 25, 2009
i have two forms one is a text editer and the secone one is a big form and i want to save a file form the text editor to the secone form just like on a desktop would.
View 1 Replies
Jan 1, 2010
My project has 2 forms, is it possible for the program (at runtime) to compile the 2nd form and make a EXE out of it?
View 2 Replies
Oct 5, 2009
I want to make a form which is pop up in window. so, user can not do anything with this form displays. If user close this form, so user can open explorer or . . .. .In all, I want to make a form which pop up like shutdown menu in Microsoft Window, so user cannot click any place beside this form.
View 2 Replies
Aug 29, 2009
I just got Visual Basics 2008 Express Edition and I am very addicted to it.I am quite a fast learner. I was able to script together many fun applications that I learn from YouTube. I want to make a registration form look-a-like.I setup the design the way I wanted it and now its the coding part I am having trouble with.I have been on Youtube and this site for some tutorials but I still cant find what I am looking for. I have 4 Text boxes, one being Name, second being Last Name, third being E-mail, and fourth being Username.I also have a OK button that I want them to press when they fill in all text fields. The problem I am having is, say they only fill in the Name & E-mail field and leave the Last Name & Username feild blank when they hit OK I want a error to come up and say Please fill in all information. I have tried these codes and none seemed to work:[code]
View 7 Replies
Sep 6, 2009
how would i make a tabbed form?I like.....Understandable Answers
1 2 3 4 5
- - - - - Rate yourself And Have A Kitkat
5 5 5 5 5
View 1 Replies