Click here to Skip to main content
15,896,557 members
Home / Discussions / C#
   

C#

 
Questionwhat method dotnet uses Pin
zoyakhan7-Jul-09 18:52
zoyakhan7-Jul-09 18:52 
AnswerRe: what method dotnet uses Pin
Luc Pattyn7-Jul-09 18:58
sitebuilderLuc Pattyn7-Jul-09 18:58 
Questionform Pin
Member 25451767-Jul-09 18:17
Member 25451767-Jul-09 18:17 
AnswerRe: form Pin
K03067-Jul-09 18:21
K03067-Jul-09 18:21 
GeneralRe: form Pin
Luc Pattyn7-Jul-09 18:54
sitebuilderLuc Pattyn7-Jul-09 18:54 
QuestionJava's DefaultTreeModel equivalent in c# Pin
vidhyaravichandar7-Jul-09 18:01
vidhyaravichandar7-Jul-09 18:01 
AnswerRe: Java's DefaultTreeModel equivalent in c# Pin
N a v a n e e t h7-Jul-09 18:17
N a v a n e e t h7-Jul-09 18:17 
GeneralRe: Java's DefaultTreeModel equivalent in c# Pin
Member 25451767-Jul-09 18:23
Member 25451767-Jul-09 18:23 
GeneralRe: Java's DefaultTreeModel equivalent in c# Pin
Mycroft Holmes7-Jul-09 19:41
professionalMycroft Holmes7-Jul-09 19:41 
QuestionIcon problems Pin
nik1217-Jul-09 16:12
nik1217-Jul-09 16:12 
AnswerRe: Icon problems Pin
Christian Graus7-Jul-09 17:10
protectorChristian Graus7-Jul-09 17:10 
AnswerRe: Icon problems Pin
Luc Pattyn7-Jul-09 18:23
sitebuilderLuc Pattyn7-Jul-09 18:23 
AnswerRe: Icon problems Pin
Cracked-Down7-Jul-09 18:34
Cracked-Down7-Jul-09 18:34 
GeneralRe: Icon problems Pin
Mirko19807-Jul-09 22:34
Mirko19807-Jul-09 22:34 
AnswerRe: Icon problems Pin
DaveyM697-Jul-09 22:19
professionalDaveyM697-Jul-09 22:19 
GeneralRe: Icon problems Pin
nik1219-Jul-09 10:52
nik1219-Jul-09 10:52 
Question'Sharing' a bindingsourse with a form and a usercontrol on that form Pin
Glen Harvy7-Jul-09 15:51
Glen Harvy7-Jul-09 15:51 
AnswerRe: 'Sharing' a bindingsourse with a form and a usercontrol on that form Pin
Mycroft Holmes7-Jul-09 19:47
professionalMycroft Holmes7-Jul-09 19:47 
GeneralRe: 'Sharing' a bindingsourse with a form and a usercontrol on that form Pin
Glen Harvy8-Jul-09 13:06
Glen Harvy8-Jul-09 13:06 
QuestionAn odd predicament with windows forms Pin
nik1217-Jul-09 15:30
nik1217-Jul-09 15:30 
AnswerRe: An odd predicament with windows forms Pin
Jacob Dixon7-Jul-09 15:36
Jacob Dixon7-Jul-09 15:36 
GeneralRe: An odd predicament with windows forms Pin
nik1217-Jul-09 15:42
nik1217-Jul-09 15:42 
GeneralRe: An odd predicament with windows forms [modified] Pin
harold aptroot7-Jul-09 16:14
harold aptroot7-Jul-09 16:14 
GeneralRe: An odd predicament with windows forms Pin
Luc Pattyn7-Jul-09 18:29
sitebuilderLuc Pattyn7-Jul-09 18:29 
Hi,

to set the location of a Control do one of these:
myControl.Location=new Point(x,y);
myControl.Bounds=new Rectangle(x,y,width,height);


Both Location and Bounds are structs, i.e. value types; gettin such struct and modifying it won't cut it, you have to provide a struct with the new values.

Smile | :)

Luc Pattyn [Forum Guidelines] [My Articles]

The quality and detail of your question reflects on the effectiveness of the help you are likely to get.
Show formatted code inside PRE tags, and give clear symptoms when describing a problem.

AnswerRe: An odd predicament with windows forms Pin
harold aptroot7-Jul-09 15:38
harold aptroot7-Jul-09 15:38 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.