Click here to Skip to main content
15,899,679 members
Home / Discussions / C#
   

C#

 
GeneralRe: How can I convert this string to the image? Pin
Mohammad Dayyan25-Jun-08 10:16
Mohammad Dayyan25-Jun-08 10:16 
GeneralRe: How can I convert this string to the image? Pin
hammerstein0525-Jun-08 10:22
hammerstein0525-Jun-08 10:22 
GeneralRe: How can I convert this string to the image? Pin
Mohammad Dayyan25-Jun-08 10:36
Mohammad Dayyan25-Jun-08 10:36 
QuestionUse Ctrl+F1 to cycle between MDI child windows Pin
AndrusM25-Jun-08 7:46
AndrusM25-Jun-08 7:46 
QuestionUsing Ctrl+E menu shortcut from readonly control Pin
AndrusM25-Jun-08 7:43
AndrusM25-Jun-08 7:43 
QuestionAdding A Record (Sql Server 2005 Compact Edition and Visual Studio 2005 C#) Pin
lpaulding25-Jun-08 6:16
lpaulding25-Jun-08 6:16 
AnswerRe: Adding A Record (Sql Server 2005 Compact Edition and Visual Studio 2005 C#) Pin
Igor Velikorossov25-Jun-08 6:34
Igor Velikorossov25-Jun-08 6:34 
GeneralRe: Adding A Record (Sql Server 2005 Compact Edition and Visual Studio 2005 C#) Pin
Abhijit Jana25-Jun-08 6:43
professionalAbhijit Jana25-Jun-08 6:43 
QuestionRegion left-most coordinate? Pin
Emil Müller25-Jun-08 6:08
Emil Müller25-Jun-08 6:08 
AnswerRe: Region left-most coordinate? Pin
Guffa25-Jun-08 7:31
Guffa25-Jun-08 7:31 
GeneralRe: Region left-most coordinate? Pin
Luc Pattyn25-Jun-08 7:55
sitebuilderLuc Pattyn25-Jun-08 7:55 
GeneralRe: Region left-most coordinate? Pin
Emil Müller25-Jun-08 13:48
Emil Müller25-Jun-08 13:48 
Questionregular expression problem Pin
mahraja25-Jun-08 5:51
mahraja25-Jun-08 5:51 
AnswerRe: regular expression problem Pin
Igor Velikorossov25-Jun-08 6:30
Igor Velikorossov25-Jun-08 6:30 
GeneralRe: regular expression problem [modified] Pin
mahraja25-Jun-08 7:35
mahraja25-Jun-08 7:35 
AnswerRe: regular expression problem Pin
SomeGuyThatIsMe25-Jun-08 7:45
SomeGuyThatIsMe25-Jun-08 7:45 
Questionwhy my ticks always the same, please help thanks very much. Pin
matthew_net25-Jun-08 5:25
matthew_net25-Jun-08 5:25 
AnswerRe: why my ticks always the same, please help thanks very much. Pin
Mohammad Dayyan25-Jun-08 5:36
Mohammad Dayyan25-Jun-08 5:36 
GeneralRe: why my ticks always the same, please help thanks very much. Pin
matthew_net25-Jun-08 5:49
matthew_net25-Jun-08 5:49 
GeneralRe: why my ticks always the same, please help thanks very much. Pin
Luc Pattyn25-Jun-08 6:48
sitebuilderLuc Pattyn25-Jun-08 6:48 
GeneralRe: why my ticks always the same, please help thanks very much. Pin
Dan Neely25-Jun-08 7:08
Dan Neely25-Jun-08 7:08 
AnswerRe: why my ticks always the same, please help thanks very much. Pin
Dan Neely25-Jun-08 5:45
Dan Neely25-Jun-08 5:45 
GeneralRe: why my ticks always the same, please help thanks very much. Pin
matthew_net25-Jun-08 6:02
matthew_net25-Jun-08 6:02 
QuestionGDI / FPS Question Pin
Harvey Saayman25-Jun-08 4:32
Harvey Saayman25-Jun-08 4:32 
AnswerRe: GDI / FPS Question Pin
leppie25-Jun-08 5:00
leppie25-Jun-08 5:00 
HarveySaayman wrote:
1. Will this give me an accurate frames per second reading?


Probably not, but it will be close.

HarveySaayman wrote:
2. the reading i get is +/- 100(which makes sence cuz 1000 / 10 = 100), but when the animation timer is set to 1ms the fps value is +/- 500. Is this because the image cant be drawn/calculated that fast and the image wont repaint again until previous panel.Invalidate() has not been completed?


Your monitor is not gonna show you more than 60 times a second, going above 60 FPS is pointless (unless you are benchmarking, but then you shouldnt be painting to the screen, but a bitmap instead).

HarveySaayman wrote:
3. quite a bit happens in calculateAndUpdateDrawingVariables(); and it runs 100times per second(animationTimer = 10ms). Any tips on what to avoid in a method like this that runs so many times to use less CPU power?


Can you cache the result of the function given the same variables? If so, that would help. Else redesign you painter so that it can use a cache.

xacc.ide - now with TabsToSpaces support
IronScheme - 1.0 alpha 4a out now (29 May 2008)

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.