Click here to Skip to main content
15,922,533 members
Home / Discussions / C#
   

C#

 
GeneralRe: Problem running a Web Service in a Window Service Pin
Varun Sareen17-Oct-10 20:49
Varun Sareen17-Oct-10 20:49 
GeneralRe: Problem running a Web Service in a Window Service Pin
Abhinav S17-Oct-10 22:05
Abhinav S17-Oct-10 22:05 
GeneralRe: Problem running a Web Service in a Window Service Pin
Varun Sareen18-Oct-10 19:00
Varun Sareen18-Oct-10 19:00 
Questionhow to get x,y coordinates when drawing rectangle on the picture box Pin
ash_ng17-Oct-10 19:37
ash_ng17-Oct-10 19:37 
AnswerRe: how to get x,y coordinates when drawing rectangle on the picture box Pin
Khaniya17-Oct-10 20:33
professionalKhaniya17-Oct-10 20:33 
AnswerRe: how to get x,y coordinates when drawing rectangle on the picture box Pin
johannesnestler19-Oct-10 4:14
johannesnestler19-Oct-10 4:14 
QuestionSQL Backing up with SMO & C# ? Pin
Mohammad Dayyan17-Oct-10 4:49
Mohammad Dayyan17-Oct-10 4:49 
AnswerRe: SQL Backing up with SMO & C# ? Pin
Ravi Bhavnani17-Oct-10 6:01
professionalRavi Bhavnani17-Oct-10 6:01 
GeneralRe: SQL Backing up with SMO & C# ? Pin
Mohammad Dayyan7-Nov-10 2:20
Mohammad Dayyan7-Nov-10 2:20 
AnswerRe: SQL Backing up with SMO & C# ? Pin
Luc Pattyn17-Oct-10 6:38
sitebuilderLuc Pattyn17-Oct-10 6:38 
QuestionA good way to store this information? Pin
stephen.darling16-Oct-10 12:33
stephen.darling16-Oct-10 12:33 
AnswerRe: A good way to store this information? Pin
Mycroft Holmes16-Oct-10 12:41
professionalMycroft Holmes16-Oct-10 12:41 
GeneralRe: A good way to store this information? Pin
OriginalGriff16-Oct-10 22:07
mveOriginalGriff16-Oct-10 22:07 
GeneralRe: A good way to store this information? Pin
PIEBALDconsult17-Oct-10 13:27
mvePIEBALDconsult17-Oct-10 13:27 
AnswerRe: A good way to store this information? PinPopular
Luc Pattyn16-Oct-10 13:24
sitebuilderLuc Pattyn16-Oct-10 13:24 
GeneralRe: A good way to store this information? Pin
Keith Barrow17-Oct-10 4:58
professionalKeith Barrow17-Oct-10 4:58 
GeneralRe: A good way to store this information? Pin
stephen.darling17-Oct-10 10:29
stephen.darling17-Oct-10 10:29 
AnswerRe: A good way to store this information? Pin
PIEBALDconsult17-Oct-10 13:26
mvePIEBALDconsult17-Oct-10 13:26 
GeneralRe: A good way to store this information? Pin
stephen.darling17-Oct-10 15:05
stephen.darling17-Oct-10 15:05 
GeneralRe: A good way to store this information? Pin
PIEBALDconsult17-Oct-10 15:12
mvePIEBALDconsult17-Oct-10 15:12 
GeneralRe: A good way to store this information? Pin
stephen.darling18-Oct-10 5:00
stephen.darling18-Oct-10 5:00 
AnswerRe: A good way to store this information? Pin
W Balboos, GHB20-Oct-10 1:29
W Balboos, GHB20-Oct-10 1:29 
GeneralRe: A good way to store this information? Pin
stephen.darling20-Oct-10 7:40
stephen.darling20-Oct-10 7:40 
QuestionDynamic array of PictureBoxes with scroll-bars? Pin
DaveGriffith15-Oct-10 15:59
DaveGriffith15-Oct-10 15:59 
AnswerRe: Dynamic array of PictureBoxes with scroll-bars? Pin
Luc Pattyn15-Oct-10 17:27
sitebuilderLuc Pattyn15-Oct-10 17:27 
Here are two hints for you:

1.
if you put one or more large Controls (say a Panel) inside a small Panel, the small one will scroll all of it provided you set its ScrollBars properties. So you get pan functionality for free.

2.
Having a large number of PictureBoxes is a bad idea. Actually a single PictureBox isn't worth much either. It is a very poor Control. I'd rather paint the image myself onto whatever surface I have, say a Panel.

Summary: you can do all of it using just two Panels!
I suggest you perform a few simple experiments.

Smile | :)
Luc Pattyn [Forum Guidelines] [Why QA sucks] [My Articles] Nil Volentibus Arduum
Please use <PRE> tags for code snippets, they preserve indentation, and improve readability.


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.