473,396 Members | 2,059 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

change coordinates of form

Hi to all friends out there,
I'm facing this problem for atleast
2 days but still have'nt yet solved my problem.I send the
mail few days back (ie) in VB.net how to shift my form
coordinates (ie) by default (0,0) is in the top-left
corner of the form but right now I need it in the bottom
left corner of my form (ie) my (0,0) coordinates.I dont
know coding.I tried changing the form property location
but this location property is to place the form on the
desktop and not shift my coordinates of the form.So please
send the required information to help me successful in my
project.I'M actually stuck with my project because I cant
continue without changing my form coordinate.

Please eagerly waiting.... for ur reply.

Thanking You,
K.N.Ranjit
Nov 20 '05 #1
4 3648
ScaleTop/Bottom/Left/Right are no longer supported. No property change will
help you in this case.
You will have to mathmatically calculate the point to put in the appropriate
place. If you want to invert the Y axis so Y=0 is at the bottom, after
calculating the value Y, you must then plot the point at
(ClientSize.Height - Y).

-Rob Teixeira [MVP]

"K.N.Ranjit" <kn******@rediffmail.com> wrote in message
news:05****************************@phx.gbl...
Hi to all friends out there,
I'm facing this problem for atleast
2 days but still have'nt yet solved my problem.I send the
mail few days back (ie) in VB.net how to shift my form
coordinates (ie) by default (0,0) is in the top-left
corner of the form but right now I need it in the bottom
left corner of my form (ie) my (0,0) coordinates.I dont
know coding.I tried changing the form property location
but this location property is to place the form on the
desktop and not shift my coordinates of the form.So please
send the required information to help me successful in my
project.I'M actually stuck with my project because I cant
continue without changing my form coordinate.

Please eagerly waiting.... for ur reply.

Thanking You,
K.N.Ranjit

Nov 20 '05 #2
Cor
Hi Ranjit,

Maybe I do not understand you, but it sounds like you can use the anchors
(I did not use it, only try a little bit, but I thought this was made for
it)

Why not try it?

Cor
Hi to all friends out there,
I'm facing this problem for atleast
2 days but still have'nt yet solved my problem.I send the
mail few days back (ie) in VB.net how to shift my form
coordinates (ie) by default (0,0) is in the top-left
corner of the form but right now I need it in the bottom
left corner of my form (ie) my (0,0) coordinates.I dont
know coding.I tried changing the form property location
but this location property is to place the form on the
desktop and not shift my coordinates of the form.So please
send the required information to help me successful in my
project.I'M actually stuck with my project because I cant
continue without changing my form coordinate.

Nov 20 '05 #3
Hi,

May I ask, why would you want to do such a thing, I can't see any benefit
from this, perhaps we can offer an alternative solution.

--
HTH,
-- Tom Spink, Über Geek

Please respond to the newsgroup,
so all can benefit

" System.Reflection Master "

==== Converting to 2002 ====
Remove inline declarations

"K.N.Ranjit" <kn******@rediffmail.com> wrote in message
news:05****************************@phx.gbl...
Hi to all friends out there,
I'm facing this problem for atleast
2 days but still have'nt yet solved my problem.I send the
mail few days back (ie) in VB.net how to shift my form
coordinates (ie) by default (0,0) is in the top-left
corner of the form but right now I need it in the bottom
left corner of my form (ie) my (0,0) coordinates.I dont
know coding.I tried changing the form property location
but this location property is to place the form on the
desktop and not shift my coordinates of the form.So please
send the required information to help me successful in my
project.I'M actually stuck with my project because I cant
continue without changing my form coordinate.

Please eagerly waiting.... for ur reply.

Thanking You,
K.N.Ranjit

Nov 20 '05 #4
"K.N.Ranjit" <kn******@rediffmail.com> schrieb
Hi to all friends out there,
I'm facing this problem for atleast
2 days but still have'nt yet solved my problem.I send the
mail few days back (ie) in VB.net how to shift my form
coordinates (ie) by default (0,0) is in the top-left
corner of the form but right now I need it in the bottom
left corner of my form (ie) my (0,0) coordinates.I dont
know coding.I tried changing the form property location
but this location property is to place the form on the
desktop and not shift my coordinates of the form.So please
send the required information to help me successful in my
project.I'M actually stuck with my project because I cant
continue without changing my form coordinate.

Please eagerly waiting.... for ur reply.


You are asking the 3rd time now. No problem, but it would be nice if you
would stay in the same thread, not open a new one each time. Could you
please tell us what's the exact problem is? The last time you wrote "This
reply does'nt work.". I wanted you to show us some code to find out what
does not work. Would you please post the code that is not working?
--
Armin

http://www.plig.net/nnq/nquote.html
http://www.netmeister.org/news/learn2quote.html

Nov 20 '05 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: K.N.Ranjit | last post by:
Hi, This is the 4th mail I'm sending regarding this problem. I'm really not been able to sort this problem out.I'm not been able to change my starting position of my cordinates from top-left to...
3
by: Tom | last post by:
I have a picturebox on my VB.NET form. The picturebox size mode is set to stretched. I then load an image into that form and display it. As the user moves the mouse over the form, I want to get and...
0
by: deko | last post by:
I'm trying to implement a custom TreeView that shows a ghost image while dragging. But the form I'm using is different from the sample code found here:...
3
by: steve | last post by:
Hi All I have textboxes within a TableLayoutpanel and I want to be able to position an independant control adjacent to a selected textbox This independent control allows selection of text to...
7
by: dotnetnoob | last post by:
i keep getting Object references not set to an instance of an object from this code: Private Sub EqBinding() Dim x As Integer x = 0 Do If CStr(arlsType.Item(x)) = "Bacnet Point" Then Dim...
3
by: Andrzej | last post by:
I have a picturebox on my C# .NET form. The picturebox size mode is set to zoom. I then load an image into that form and display it. As the user moves the mouse over the form, I want to get and...
1
by: Cainnech | last post by:
Hi all, I've got a bit of a challenge. I've got a script which displays the mouse coodinates if you click on an image. Now I would like to convert these coordinates to pixelnumber. Let me see if I...
2
by: laredotornado | last post by:
Hi, I'm using php 4.4.4. Maybe I'm misreading the docs, but in the imagettfbbox manual (http://us2.php.net/imagettfbbox), it says that text coordinates are the same regardless of what the angle...
0
by: raylopez99 | last post by:
keywords: logical coordinates, page coordinates, world coordinates, device coordinates, physical coordinates, screen coordinates, client coordinates. offset rectangle. WYSIWYG rubber rectangle...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.