Click here to Skip to main content
15,897,133 members
Home / Discussions / C#
   

C#

 
AnswerRe: ObjectPolicy Pin
Eddy Vluggen13-Sep-10 10:43
professionalEddy Vluggen13-Sep-10 10:43 
GeneralRe: ObjectPolicy Pin
hove8213-Sep-10 10:56
hove8213-Sep-10 10:56 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen13-Sep-10 11:36
professionalEddy Vluggen13-Sep-10 11:36 
GeneralRe: ObjectPolicy Pin
PIEBALDconsult13-Sep-10 14:43
mvePIEBALDconsult13-Sep-10 14:43 
GeneralRe: ObjectPolicy [modified] Pin
hove8213-Sep-10 19:54
hove8213-Sep-10 19:54 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen14-Sep-10 7:52
professionalEddy Vluggen14-Sep-10 7:52 
GeneralRe: ObjectPolicy Pin
hove8214-Sep-10 8:09
hove8214-Sep-10 8:09 
GeneralRe: ObjectPolicy Pin
Eddy Vluggen14-Sep-10 8:58
professionalEddy Vluggen14-Sep-10 8:58 
GeneralRe: ObjectPolicy Pin
hove8214-Sep-10 9:13
hove8214-Sep-10 9:13 
AnswerRe: ObjectPolicy Pin
Pete O'Hanlon13-Sep-10 10:45
mvePete O'Hanlon13-Sep-10 10:45 
GeneralRe: ObjectPolicy Pin
hove8213-Sep-10 10:59
hove8213-Sep-10 10:59 
QuestionGet only modified data at form exit Pin
manchukuo13-Sep-10 8:30
manchukuo13-Sep-10 8:30 
AnswerRe: Get only modified data at form exit Pin
Henry Minute13-Sep-10 9:52
Henry Minute13-Sep-10 9:52 
GeneralRe: Get only modified data at form exit Pin
Luc Pattyn13-Sep-10 10:31
sitebuilderLuc Pattyn13-Sep-10 10:31 
GeneralRe: Get only modified data at form exit Pin
Henry Minute13-Sep-10 12:32
Henry Minute13-Sep-10 12:32 
GeneralRe: Get only modified data at form exit Pin
Luc Pattyn13-Sep-10 13:10
sitebuilderLuc Pattyn13-Sep-10 13:10 
AnswerRe: Get only modified data at form exit Pin
Dave Kreskowiak13-Sep-10 10:21
mveDave Kreskowiak13-Sep-10 10:21 
GeneralRe: Get only modified data at form exit Pin
manchukuo13-Sep-10 10:51
manchukuo13-Sep-10 10:51 
AnswerRe: Get only modified data at form exit Pin
AspDotNetDev13-Sep-10 11:27
protectorAspDotNetDev13-Sep-10 11:27 
GeneralRe: Get only modified data at form exit Pin
manchukuo13-Sep-10 11:41
manchukuo13-Sep-10 11:41 
Questionreporting issue in c# application Pin
bapu288913-Sep-10 8:12
bapu288913-Sep-10 8:12 
AnswerRe: reporting issue in c# application Pin
bapu288913-Sep-10 20:07
bapu288913-Sep-10 20:07 
Questionhow to send file with bluetooth with secket programing Pin
behzadcp13-Sep-10 3:49
professionalbehzadcp13-Sep-10 3:49 
AnswerRe: how to send file with bluetooth with secket programing Pin
Giorgi Dalakishvili13-Sep-10 20:57
mentorGiorgi Dalakishvili13-Sep-10 20:57 
QuestionA Queston about Transformations Pin
BobInNJ13-Sep-10 3:38
BobInNJ13-Sep-10 3:38 
Please consider the following code fragment:
<br />
protected override void OnPaint( PaintEventArgs paintEventArgs )<br />
{<br />
    Graphics grfx = paintEventArgs.Graphics;<br />
    int width = this.ClientSize.Width;<br />
    int height = this.ClientSize.Height;<br />
    grfx.TranslateTransform( width / 2, height / 2 );<br />


I now claim that after executing the call to TranslateTransform the point 0,0 will
be the center of the screen. However, increasing y values still bring be down. That
is, the point (0,3) will be below, the point (0,0). I would like increasing y values
to bring me up the screen. Is there a way to do this, and if so, how?

Thanks

Bob

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.