Click here to Skip to main content
16,004,901 members
Home / Discussions / C#
   

C#

 
GeneralRe: API Call to GetProfileString Does Not Fill Buffer Pin
Heath Stewart15-Nov-04 9:09
protectorHeath Stewart15-Nov-04 9:09 
GeneralRe: API Call to GetProfileString Does Not Fill Buffer Pin
stoked15-Nov-04 10:51
stoked15-Nov-04 10:51 
GeneralRe: API Call to GetProfileString Does Not Fill Buffer Pin
stoked15-Nov-04 8:03
stoked15-Nov-04 8:03 
General.Net Service & Notifyicon disappearing after log-off/log-on Pin
Steef (Stephan Deckers)15-Nov-04 6:07
Steef (Stephan Deckers)15-Nov-04 6:07 
GeneralRe: .Net Service & Notifyicon disappearing after log-off/log-on Pin
Heath Stewart15-Nov-04 6:45
protectorHeath Stewart15-Nov-04 6:45 
GeneralRe: .Net Service & Notifyicon disappearing after log-off/log-on Pin
Steef (Stephan Deckers)15-Nov-04 8:48
Steef (Stephan Deckers)15-Nov-04 8:48 
GeneralDatetime : Minutes between two date values Pin
Anonymous15-Nov-04 2:42
Anonymous15-Nov-04 2:42 
GeneralRe: Datetime : Minutes between two date values Pin
turbochimp15-Nov-04 3:07
turbochimp15-Nov-04 3:07 
Sure. The DateTime and TimeSpan structures have lots of useful helper methods for doing stuff like this.

Here is my (very contrived) example of one way to do it (NOTE: there are several other ways to go about this):

            DateTime time1 = DateTime.Now;<br />
            DateTime time2 = DateTime.Now.Add(new TimeSpan(0,0,59,0,0));<br />
<br />
            TimeSpan span = time2.Subtract(time1);<br />
            int minutes = span.Minutes;


The most exciting phrase to hear in science, the one that heralds the most discoveries, is not 'Eureka!' ('I found it!') but 'That's funny...’

GeneralRe: Datetime : Minutes between two date values Pin
Heath Stewart15-Nov-04 5:50
protectorHeath Stewart15-Nov-04 5:50 
GeneralRe: Datetime : Minutes between two date values Pin
turbochimp15-Nov-04 6:03
turbochimp15-Nov-04 6:03 
GeneralRe: Datetime : Minutes between two date values Pin
Stefan Troschuetz15-Nov-04 3:11
Stefan Troschuetz15-Nov-04 3:11 
GeneralInherited User Control: "System.NullReference" Pin
Jannigje15-Nov-04 2:06
Jannigje15-Nov-04 2:06 
GeneralRe: Inherited User Control: &quot;System.NullReference&quot; Pin
turbochimp15-Nov-04 3:13
turbochimp15-Nov-04 3:13 
GeneralRe: Inherited User Control: &quot;System.NullReference&quot; Pin
Jannigje15-Nov-04 3:42
Jannigje15-Nov-04 3:42 
GeneralRe: Inherited User Control: "System.NullReference" Pin
Skynyrd15-Nov-04 6:49
Skynyrd15-Nov-04 6:49 
Generalabout appbar icon Pin
oldhawkiu15-Nov-04 0:05
oldhawkiu15-Nov-04 0:05 
GeneralRe: about appbar icon Pin
Jannigje15-Nov-04 2:13
Jannigje15-Nov-04 2:13 
GeneralRe: about appbar icon Pin
oldhawkiu15-Nov-04 13:58
oldhawkiu15-Nov-04 13:58 
GeneralRe: about appbar icon Pin
Jannigje15-Nov-04 20:24
Jannigje15-Nov-04 20:24 
GeneralPress Esc to cancel editing in TextBox and return to column's value Pin
god4k14-Nov-04 23:14
god4k14-Nov-04 23:14 
GeneralRe: Press Esc to cancel editing in TextBox and return to column's value Pin
..Hubert..15-Nov-04 1:01
..Hubert..15-Nov-04 1:01 
GeneralINCLUDES Pin
Brendan Vogt14-Nov-04 22:52
Brendan Vogt14-Nov-04 22:52 
GeneralRe: INCLUDES Pin
Stefan Troschuetz14-Nov-04 23:36
Stefan Troschuetz14-Nov-04 23:36 
GeneralRe: INCLUDES Pin
Brendan Vogt15-Nov-04 2:20
Brendan Vogt15-Nov-04 2:20 
GeneralRe: INCLUDES Pin
Stefan Troschuetz15-Nov-04 2:51
Stefan Troschuetz15-Nov-04 2:51 

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.