Set A Form's Location By Percent?
May 20, 2009
i was wondering if it's possible to do such:
'form location Me.Location = New Point(10%, 50%)
i know this code doesn't work as it looks, just loads the location by pixels. this is just a question, hopefully with a working code for a marked answer..so much work to do and so many choices to choose from.
View 7 Replies
ADVERTISEMENT
Nov 11, 2010
how to set location of child form to a specified point of parent form.Below is my code but it is not working for setting the location.[code]
View 1 Replies
Sep 29, 2010
I have created a form with pictures of plants on it (note these pictures are moved to the left when the left button is pressed). When a mouse is placed over or hovers over one of these pictures i want a mini form to pop up beside the plant with the plants name on it.
[Code]...
View 3 Replies
Feb 26, 2012
I want my application to always appear on the top right hand side of the monitor.The coding i use places my application on the bottom right hand side...I want it to appear on the top right....What am i doing wrong here?[code].........
View 2 Replies
Apr 11, 2012
I have been given some instructions to percent encode a URL twice. I know how to percent encode a URL once but how do you do it twice? Surly when it is encoded once, it will be the same when encoded again.
View 2 Replies
Nov 15, 2009
So i want to change the location of my form so that it pops up in the lower right corner of the screen.
Form1.Show()
Form1.Location = (New Point)
View 4 Replies
Feb 26, 2012
i am working on a game that i have made in vb.net, i was able to create an Uploader where when the character moves it is uploaded to a Server, now i am trying to add the multiplayer where other player movements are downloaded, i have started off with this code:
Private Sub Timer1_Tick(sender As System.Object, e As System.EventArgs) Handles Timer1.Tick
dim client as new net.webclient
Label1.Location.X = client.DownloadString("ftp://User:Pass@Host/" + "Player_1_X_location" + ".txt")
Label1.Location.Y = client.DownloadString("ftp://User:Pass@Host/" + "Player_1_Y_location" + ".txt")
i Receive the Error:
Expression is a Value and therefore and cannot be the target of an assignment.
View 4 Replies
Apr 21, 2012
Is there a way I can place my form above the task bar?
Something like this: But, people have different sized task bars..
Is there something like: my.computer.screen.taskbar ?
My current code is: Me.Top = My.Computer.Screen.Bounds.Height - 116
Me.Left = My.Computer.Screen.Bounds.Width - 365
View 7 Replies
Apr 3, 2012
I am trying to get this PictureBox to always be in the bottom of the Form and not depend on what screen resolution the screen has. I am using VB 10?
View 7 Replies
Aug 4, 2009
I have a second form that loads when the main form loads. It sits behind the main form, is mainly transparent and does not allow interaction from the User.
Its as if the form is on the desktop, which is what I'm going for.
I set the location of the form to be in the top right hand corner of the desktop. On my PC, which is a 23" monitor, it works and looks great. But when I use my application on a notebook or a smaller screen, the form gets cut off. Why is obvious, because of the screen size differences.
What I want to know is how I might set the form to a more... definitive position. Rather, relative to the size of the screen.
I haven't searched much yet, but maybe there is a way to set the location of the form to a specific location of the desktop, not relative to the size of the screen.
View 4 Replies
Oct 4, 2008
I'm a bit confused when it comes to setting the start location of a form, relative to another form.I know how to set the start location for a form, however, I have a "main" form, which is behind this form. The main form will be displaying different images, labels, ect. I need the second form to display at the bottom of the main form. The main form's resolution is 800x600, and the bottom form is 800x65. I tried to set the bottom form's location to 0,535, which WOULD make it right at the bottom of the main form, but it seems that it puts it at that location relative to the user's display resolution.So basically, I just need help with getting this form to appear at the bottom of the main form. I read a bit about "containers", but am not sure exactly if they would work for this, and if they did, how exactly I would incorporate them into my situation.
View 2 Replies
Jun 21, 2010
Public Class Form1
Private Sub btnCompute_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnCompute.Click
Dim percent As Double
[Code]....
Above is the code i have created. I am having issue with the variant "Percent" to display 37.50% instead of 37.5.
View 4 Replies
Oct 12, 2010
vb.net
'' Project name: Golf Pro Project
' Project purpose: Displays the commission based on a
[code]......
i dont know how to assign variables and im juist totally lost right now and this is due today and i was sick 2 weeks and am 2 chapters back.
View 11 Replies
Feb 11, 2009
I am trying to filter fields in a table that contain percent (%) and apostrophe (') characters. I kow that to filter an apostrophe you need to add another apostrophe (''). However, when a text contains the percent (%) character in combination with an apostrophe (') character, an exception is thrown. Also, when using the % character in a filter string, it will be function as an "*" (fields starting or ending with). I need the % to be considered as a character whenever the % makes part of a string in the field.
Dim TheTable As New DataTable
Dim col As New DataColumn("Col1")
TheTable.Columns.Add(col)
Dim TheRow As DataRow = TheTable.NewRow
[code]....
View 6 Replies
Apr 13, 2009
I need help getting a progress bar to show percent in it. I want to have the percent in the middle of the progress bar, like is sometimes seen in a few programs. I have googled this, and can't find anything. I found something on The CodeProject, but it was just a label and drawing a rectangle behind it. I would like the actual progress bar that is available through the toolbox.
View 5 Replies
Sep 7, 2011
Is possible get the percent of a word in the content of a richtexbox? if yes, can you give me some example?
For example if I have 100 words in a richtextbox and I want to know what is the percent of a word in this content (for example if a word called "music" is repeated 10 times = 10%. If this is not possible in a richtextbox, is possible in other box like textbox?
View 4 Replies
Aug 15, 2010
Inside a module I have the code:
Public frmClue2 As New frmClue
So I have a new instance of frmClue. Inside my main form I have the code:
frmClue2.Owner = frmClue
frmClue2.StartPosition = FormStartPosition.Manual
frmClue2.Location = SecondaryScreen.Bounds.Location
frmClue2.Show()
The code works except for setting the location. The location is initially set to {X = -3 Y = -3} and it will not change. I have tried to set it to new Point(1440, 0) and that does not work. One interesting thing I found was if I declared the new instance of the form locally inside my main form rather than in the module, then the initial location is set to {X = -1 Y = -1} and I can change it no problem. However anytime the code leaves the main form, the instance disappears hence why I declare it as public in the module. I used the same code to create a new instance of the main form as well and there are no problems.
View 5 Replies
Feb 24, 2010
i m using vb. net when i run my form
View 1 Replies
Jun 25, 2011
I have an MDI form with child forms which I open on it. The following statement in each form's load event places a child form in the location I want:
Me.Location = New Point(0, 136) I have several of these working. However, I have one form for which this statement does not work. It opens spread out over the entire parent form. Also, there is a border at the top with min, max, and close buttons even though the form has no border. This form has a picture box on it, if that means anything. why this child form does not open in the specified location?
View 1 Replies
Feb 26, 2011
I'm making a small program in which i want to move labels from one position to another , I used the following statementLabel1.Location.Y = 10 ' Error - Expression is a value and cannot be the target of an assignment
View 3 Replies
Jun 16, 2010
I need to save the controls location and size on the parent form to file. My aim is to be able to simply copy that file to the path where an instance of my program is running and then it automatically applies the previously saved layout of controls. How can I use My.Settings to do that or is there another better option?
View 12 Replies
Apr 19, 2009
I'm having trouble setting a form's location in the load event.
config_set = File.ReadDatabaseKey(Public_Variables.settings_radar, _
"Window Position X", Public_Variables.config, Public_Variables.config_path, 5)
If Misc.GetContainsOnlyNumbers(config_set) Then
Me.Location.X = CInt(config_set)
End If
View 4 Replies
Apr 1, 2011
In my Windows application I have 2 forms, Form1 & Form2 in Form1 there is a Button so now I want to place the form2 exactly bottom of the Button when I click.
View 3 Replies
Jun 14, 2009
the code below shows an if statement that is determining a customer type and a discount percent for that customer.But when I run the code it only ever reads the first discount percent even though the allocated price range is above the first discount percents range and should therefore give the second discount percent and i cant figure out why it is not using the second discount percent in any of the bronze, silver or gold statements.
[code]...
View 4 Replies
Jun 21, 2010
I have a method that searches a database using the contents of a textbox. I don't want people to be able to type "%" and retrieve all of the info.
View 1 Replies
May 11, 2009
I have a numeric value in a Textbox that I'd like to format as a percent. How can I do this in C# or VB.NET?
View 4 Replies
Feb 24, 2012
I've been at this for an hour, but I can't seem to format a string as a percent while I am looping through a datatable. The string value that is being passed in is "3.22"
Public Function securityDt() As DataTable
Dim secMasterDt As New clsDataSecurity
Dim dt As New DataTable
dt = secMasterDt.getSecurityMasters()
For Each row As DataRow In dt.Rows
[Code] .....
View 1 Replies
Jul 25, 2007
I'm writing a small App that mimic's the Task Manager and I can get all the running processes images names and physical Memory usage but can't seem to figure out how to get the CPU usage Percent for each process.
opps forgot and as well as the indivdual process usage percent, so the precent each process is using....
VB.net 2003
View 4 Replies
Apr 23, 2011
i followed a few tutorials on here to create a calculator in VB.NET. But i am having trouble getting the percent button working properly.I have tried to come up with some things but nothing i have tried is working.I used this Basic Calculator VB.Net and this one Create a Calculator.I have searched google for an answer but it seems what i have is not working.Im not sure exactly what is needed so i will post all of the code i have. [code] My percent does not work it multiply's by a random number is seems.I am new to VB.NET so im not sure what i am missing.
View 4 Replies
Oct 4, 2010
I have this issue where for every 1% below a 95% threshold a charge of £67 is added. For instance if the percentage drops to 70% I would need a method of totalling the charge for every percent.
Would I need to use a Do....While loop then the if...then statements?
View 2 Replies