Click here to Skip to main content
15,911,531 members
Home / Discussions / C#
   

C#

 
QuestionGIS Travel Time Estimations Pin
devil8529-Apr-08 21:54
devil8529-Apr-08 21:54 
GeneralRe: GIS Travel Time Estimations Pin
phannon8629-Apr-08 22:22
professionalphannon8629-Apr-08 22:22 
GeneralRe: GIS Travel Time Estimations Pin
devil8529-Apr-08 22:27
devil8529-Apr-08 22:27 
GeneralRe: GIS Travel Time Estimations Pin
Guffa29-Apr-08 23:42
Guffa29-Apr-08 23:42 
JokeRe: GIS Travel Time Estimations Pin
Big Daddy Farang30-Apr-08 8:55
Big Daddy Farang30-Apr-08 8:55 
JokeRe: GIS Travel Time Estimations Pin
Guffa30-Apr-08 10:33
Guffa30-Apr-08 10:33 
QuestionHow to pass datatable as parameter into webservice method Pin
Balaji.KJ29-Apr-08 21:28
Balaji.KJ29-Apr-08 21:28 
AnswerRe: How to pass datatable as parameter into webservice method Pin
Vikram A Punathambekar29-Apr-08 21:39
Vikram A Punathambekar29-Apr-08 21:39 
GeneralRe: How to pass datatable as parameter into webservice method Pin
AshwiniSH29-May-14 0:03
professionalAshwiniSH29-May-14 0:03 
QuestionAbout setting password. Pin
Prabhat00329-Apr-08 20:28
Prabhat00329-Apr-08 20:28 
AnswerRe: About setting password. Pin
Christian Graus29-Apr-08 21:20
protectorChristian Graus29-Apr-08 21:20 
AnswerRe: About setting password. Pin
Abhijit Jana29-Apr-08 21:23
professionalAbhijit Jana29-Apr-08 21:23 
GeneralRe: About setting password. Pin
Christian Graus29-Apr-08 21:25
protectorChristian Graus29-Apr-08 21:25 
GeneralRe: About setting password. Pin
Prabhat00329-Apr-08 22:21
Prabhat00329-Apr-08 22:21 
GeneralRe: About setting password. Pin
Christian Graus29-Apr-08 22:29
protectorChristian Graus29-Apr-08 22:29 
GeneralRe: About setting password. Pin
Vikram A Punathambekar29-Apr-08 23:12
Vikram A Punathambekar29-Apr-08 23:12 
GeneralRe: About setting password. Pin
Christian Graus29-Apr-08 23:23
protectorChristian Graus29-Apr-08 23:23 
GeneralRe: About setting password. Pin
Prabhat00329-Apr-08 22:25
Prabhat00329-Apr-08 22:25 
GeneralRe: About setting password. Pin
Ashfield30-Apr-08 0:07
Ashfield30-Apr-08 0:07 
QuestionFTP Pin
JABIR E29-Apr-08 20:26
JABIR E29-Apr-08 20:26 
AnswerRe: FTP Pin
Christian Graus29-Apr-08 21:16
protectorChristian Graus29-Apr-08 21:16 
QuestionHow to set power scheme's brightness in vista using c#? Pin
lovnin29-Apr-08 19:52
lovnin29-Apr-08 19:52 
AnswerRe: How to set power scheme's brightness in vista using c#? Pin
Christian Graus29-Apr-08 19:58
protectorChristian Graus29-Apr-08 19:58 
GeneralRe: How to set power scheme's brightness in vista using c#? Pin
Vikram A Punathambekar29-Apr-08 21:33
Vikram A Punathambekar29-Apr-08 21:33 
QuestionAnchoring listbox problem Pin
rotsey29-Apr-08 19:45
rotsey29-Apr-08 19:45 
Hi,

I have a Listbox in a Panel of SplitContainer.

I want to anchor it so the listbox grows/shrinks vertically with the resizing the splitcontainer.

This is my code
What happens is it sizes the listbox horizontally about nearly the same size as the split container width.


_TableList = new MdsListBox();

_TableList.Name = "TableList";
_TableList.Left = 10;
_TableList.Top = 40;
_TableList.Width = 150;
_TableList.Height = 100;
_TableList.Anchor = (AnchorStyles.Left | AnchorStyles.Right | AnchorStyles.Bottom | AnchorStyles.Top);

I want the size of the listbox set here retained.

rotsey

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.