Change The Location Of A Group Box?

Sep 24, 2009

When I tried changing the location of the group box by:

MyGroupBox.Location.Y = 200

I get an error message, "Error 1 Expression is a value and therefore cannot be the target of an assignment. "

What am I doing wrong?

View 3 Replies


ADVERTISEMENT

2 Group Box Components And Both Are Same Size,font,location And Visible Is False - Both Component Cannot Locate At Same Location

Mar 13, 2012

I have 2 group box components and both are same size,font,location and visible is false. When i click button2, the groupbox1 won't appear(the group box2 is on bottom n group box1 is on top).

Example:

button1

groupbox1.visible=false

groupbox2.visible=true

button2

groupbox1.visible=true

groupbox2.visible=false

Because i want to show the different,so the location have a little different(actually both are same location). I think my code is no problem. The problem i guess is both component cannot locate at same location?

View 6 Replies

Change The Location Of A Label ( Middle ) To Another Location When A Key Is Pressed Down?

Jan 27, 2010

I'm currently working on a project that has a simple game . I want to change the location of a label ( middle ) to another location when a key is pressed down. But there is something wrong with the first of the If statement .I've underlined "point " because it has the error.

Private Sub Space_Navigator_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown If e.KeyCode = Keys.Up Then If middle.Location = [u]Point[/u](156, 655) Then middle.Location = New Point(156, 547)
End Sub

View 2 Replies

Change Color Of Group Box Outline?

Jan 6, 2009

Is there anyway to do this? Depending on the background color of the form, it is sometimes hard to see the light grey outline.

View 1 Replies

Change Color Of 10 Buttons In Different Group Boxes

Jun 4, 2011

I am trying to change the button colors, in different group boxes,(Buttons and group boxes are in the same form). How can I change it?

View 1 Replies

Change The Text Color Of Listview's Group Header?

Jun 21, 2010

I want to change the color of the group header text in listview which separates all the items into various groups, there is no such option to do that directly because no such property exists.

[Code]...

View 3 Replies

Change Text Color Of Listview's Group Header In Program?

Nov 17, 2009

I want to change the color of the group header text in listview which separates all the items into various groups, there is no such option to do that directly because no such property exists.

As far as i can think of it can be achieved via overriding the paint event but i have not done any overriding of paint events on windows controls so far.

View 2 Replies

Change Controls Size And Location Based On The Change Of Font Size?

Jun 14, 2010

I have the Context Menu Options like ( Small Font , Large Font ) based on the selection I want to change the size of the Font in the Controls,Control's Size & location(x,y,height,width). The resize of the controls should not affect the look and feel of the forms.

View 5 Replies

How To Change DLL Location

Jul 6, 2010

I have created a program that uses a 3rd party dll, and has been added as a reference. Is there any easy way to change where vb.net, looks for this dll file? Currently it is dropped in the same location as my main exe, but would rather it looked in the system32 directory. I have googled and tried changing the app.config file, and dont really understand AppDomain.

View 2 Replies

Change A Label Box Location?

Aug 9, 2010

I am trying to change a label box location with this script:

Label10.Location = New Point _
(Label10.Location.X = 262, _
Label10.Location.Y = 57)

View 6 Replies

Change Location Of An Element?

Apr 8, 2009

I have panel1 and button1. what i want to do is setting a new location for the panel when pressing the button1.

View 3 Replies

Change The Location Database?

Jul 18, 2012

I use VB2008 and database access and Crystal report.my problem : when ever I change location the database. I will always change location in my report from crystal report. It's very difficults and waste the time because I have many report. how to set up location only 1 place and impact to many report.

My VB Code :

Dim dbname1 As String = "D:AF_SoftwareDBDBAF1.mdb"
Public Strcon As String = "Provider=microsoft.jet.oledb.4.0;data source=" & dbname1 & ";jet OLEDB:Database Password=999"

make code in crystal report , if i want change drive to drive Z / or somthing else.now, i am go to the report and click change location.

View 2 Replies

Change The Location Of The Form?

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

Change The My.Settings Location?

Jan 10, 2011

I wanted to know is it posible to change My.Settings location.. for example, not in user folder (dont remember in witch folder, but i know it was in some users folder..), but save in application folder?Cos i write programs portable, so they work if the folder with my program is moved even to different PC..It would be a great if i could use my.settings and store in the application path..Cos i have tried to save in registry, xml file, ini file, and they all are pain in the a*s..

View 4 Replies

Change A Label's Location When A Key Is Pressed?

Aug 13, 2010

I am making a program (obviously), and when the user presses UP, DOWN, LEFT, or RIGHT I would like to move the label's location correspondingly. Here is my code so far, but it does not work:

[Code]...

View 8 Replies

Change Configure File Location?

Jun 21, 2010

I need to holds the common settings for all of the apps ona server (UNC path). Previously I used an ini file on the server and the application was told to look there via a command switch.

I understand that I'm trying to use .net in an old fashioned way by not packaging it for web update & delivery but that's a contraint of the architecture I need to work with.

Is there any way to force my application to use the application.exe.config file from a set location rather than the user data area that .net automatically writes it to? Even if not on a server path, then in the application directory where we can push update it?

View 3 Replies

Change Form1.Location With 2 NumericUpDown?

Oct 28, 2009

can i change Form2.Location with 2 NumericUpDown controls?

View 3 Replies

Change Images When Location Move?

Sep 16, 2009

location after I clicked the images to move them to the left side but it didn't change the image.

Here its the code:

Private Sub PictureBox1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles PictureBox1.Click
If Panel3.Visible = True Then

[Code]....

make the images changes to arrow-black2 when the images moves to location "1, 145"??

View 9 Replies

Change Location Of Second Instance Of Form?

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

Change Location Of Source File?

Mar 12, 2010

I am running a ssis package from .net code.It's a simple package that imports a text file into a sql database.[code]...

View 10 Replies

Change Unknown Textbox Location?

Nov 4, 2011

I'm developing a program at the moment and I'm trying to add the capability to add a texbox everytime you click a button. This is simple other than I'm trying to be efficiant as possible, so I made a sub that creates the textbox and the button calls the sub. Here is where it gets tricky I want the new textbox to move just below the previouse textbox, I'm not sure how to do this since Im only really createing one textbox over and over and having a variable name it by one. This souds confusing I know, but check out my code and it will make since. Really all I'm trying to do is change the location of a unknown textbox say since I create a textbox name textbox0 then when I hit the button again my varibale goes up by 1 which makes the new textbox, textbox1. how to I tell VB to change textbox1's location.[code]...

View 2 Replies

Forms :: How To Change Location Of Panel

Mar 7, 2009

i want the panel to center itself evertime i change the size of the window. how do i do it? panel1.location.x=form1.location.x doesent work.

View 1 Replies

How To Change Update Location Of Program

Apr 27, 2010

An update to my program has been downloaded to a particular folder. The code recognizes that the file is there
(i.e. "If IO.File.Exists(My.Application.Info.DirectoryPath & "UpdatesPQCM.exe) Then),
Sets the update location to that file and initiates the click-once update subroutine. Problem, I don't know how this update feature can be modified this way in run-time. I would set the update location using the solution properties but this program may exist anywhere on the hard drive, or even on a thumb drive (as per its design).

View 7 Replies

Location Change And Resizing Compunents?

Sep 16, 2009

In This Thread!i m asking how to Change Location of PictureBox & Panel in Form and how to Resizing

Suppos:In Application have something Behind the Panel(same form). im pressing Button Then Panel move to another Place.

View 3 Replies

PictureBox Change Location By Arrow Key?

Oct 14, 2009

How to Picturebox Loacation Change My Arrow Key in Form

View 3 Replies

User Change Link Name And Location?

Oct 15, 2011

I am trying to write a program where a user of my app can change the link location and label name.

At work we have testing scenarios that change at different locations, and instead of me sending updates every week, allow the user to update the link and label name by appending a file or db to pull the information?

View 1 Replies

VS 2008 Change Label Location

Feb 27, 2010

I'm dealing with labels that are created out of the designer then assigned the name "txt" & pcname..How can I change its location ?

View 6 Replies

Change Location Of Text Inside List Box?

Jun 21, 2010

change location of text inside list box

View 2 Replies

Change My Connection String Location For My Database?

Nov 22, 2011

I need to change my [code]...

if i change it under settings it is working but i want to be able to change it in my running application, or when the application is opened for the first time i should be able to put in die path for the database.

View 2 Replies

Change The Location Of The App.config File - Vb 2010?

Feb 26, 2012

Im trying to make a program that works a bit like the log in on a computer. But i cant make it load a different .config file depending on what username is used. I want it to load a config file from different directories that match the username. eg if the username was bob then it could be: C:MyProgramLoginBobapp.config I've been teaching myself and this has had me stuck for ages.

View 16 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved