473,800 Members | 2,337 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 3671
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.Hei ght - Y).

-Rob Teixeira [MVP]

"K.N.Ranjit " <kn******@redif fmail.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.Reflecti on Master "

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

"K.N.Ranjit " <kn******@redif fmail.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******@redif fmail.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
2161
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 bottom-left of my form.Thrice I got the reply but unfortunately it did'nt work.Here is my coding. private sub form_load(...) dim y as integer y=me.height location.y = 0-y
3
63445
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 display (in the status bar) the image coordinates of the mouse location. However, if I use the picturebox's MouseMove event, I am getting the coordinates of the mouse over the PICTUREBOX, not the actual image underneath that (which is stretched)....
0
3479
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: http://www.codeproject.com/cs/miscctrl/TreeViewDragDrop.asp The problem is I can't get the proper coordinates required when dragging begins. I have two tree views in a panel with a splitter, and the panel is on a TabControl. The sample code just has a simple form with the treeview...
3
5418
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 insert into the textbox I am having trouble achieving this, see code below, the x position is too far to the right and the y position is close to the bottom of the textbox and I want it to be side by side.
7
2148
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 str1, str2 As String str1 = CStr(arlsFilePath.Item(x))
3
22544
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 display (in the status bar) the image coordinates of the mouse location. However, if I use the picturebox's MouseMove event, I am getting the coordinates of the mouse over the PICTUREBOX, not the actual image underneath that (which is zoomed). i.e....
1
2317
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 can make it easier. Suppose we have an image which is 100px high and 100px wide. The coordinates of the upper left corner would be x=0 and y=0 The coordinates of the upper right corner would be x=99 and y=0 The coordinates of the lower left...
2
2557
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 is. But I am getting two distinct sets of coordinates if I change the angle from zero to 270. Here's the relevant code:
0
8952
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 problem, bounded rectangle problem. PointToClient, PointToScreen Beware this newbie trap for the unwary. It goes by various names (in some old MFC literature I saw some of the keywords above). Whenever doing comparisons between points,...
0
9555
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 effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10515
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
10291
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
10049
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 protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
9100
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
6827
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5479
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
5616
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
4156
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

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.