Click here to Skip to main content
15,929,597 members
Home / Discussions / C#
   

C#

 
GeneralRe: Dynamic Help Pin
Heath Stewart26-Jul-04 2:21
protectorHeath Stewart26-Jul-04 2:21 
QuestionHow can I write with different fonts in DirectX? Pin
arik_a19-Jul-04 22:53
arik_a19-Jul-04 22:53 
AnswerRe: How can I write with different fonts in DirectX? Pin
Heath Stewart20-Jul-04 9:37
protectorHeath Stewart20-Jul-04 9:37 
QuestionC# Living or Phazing out? Pin
Xentinel19-Jul-04 21:53
Xentinel19-Jul-04 21:53 
AnswerRe: C# Living or Phazing out? Pin
Michael P Butler19-Jul-04 22:15
Michael P Butler19-Jul-04 22:15 
AnswerRe: C# Living or Phazing out? Pin
Colin Angus Mackay19-Jul-04 22:45
Colin Angus Mackay19-Jul-04 22:45 
GeneralRe: C# Living or Phazing out? Pin
eggie520-Jul-04 9:17
eggie520-Jul-04 9:17 
GeneralRe: C# Living or Phazing out? Pin
Colin Angus Mackay20-Jul-04 11:02
Colin Angus Mackay20-Jul-04 11:02 
QuestionDisabling addition of new rows in DataGrid? Pin
Radoslav Bielik19-Jul-04 20:52
Radoslav Bielik19-Jul-04 20:52 
AnswerSolution :-) Pin
Radoslav Bielik19-Jul-04 21:22
Radoslav Bielik19-Jul-04 21:22 
Generalassigning data to a TextBox in HandlerEvent Pin
Stephan Wright19-Jul-04 20:50
Stephan Wright19-Jul-04 20:50 
Generalfound a solution :-) Pin
Stephan Wright19-Jul-04 23:04
Stephan Wright19-Jul-04 23:04 
Generalvery urgent. about audio mixers Pin
karpurapu_z19-Jul-04 20:37
karpurapu_z19-Jul-04 20:37 
GeneralGlobal variables and ViewState Pin
Alex Getman19-Jul-04 20:12
Alex Getman19-Jul-04 20:12 
GeneralRe: Global variables and ViewState Pin
Syed Abdul Khader20-Jul-04 4:08
Syed Abdul Khader20-Jul-04 4:08 
Generaledit box display formatting Pin
RonBou19-Jul-04 19:10
RonBou19-Jul-04 19:10 
Generalinpout32.dll Pin
ahmedadelfarid19-Jul-04 18:57
ahmedadelfarid19-Jul-04 18:57 
Generalurgent ! handling multiple data tables in a dataset Pin
sharpX19-Jul-04 18:40
sharpX19-Jul-04 18:40 
GeneralRe: urgent ! handling multiple data tables in a dataset Pin
Heath Stewart20-Jul-04 9:49
protectorHeath Stewart20-Jul-04 9:49 
QuestionHow can I display 2 forms, one after the other? Pin
arik_a19-Jul-04 18:08
arik_a19-Jul-04 18:08 
AnswerRe: How can I display 2 forms, one after the other? Pin
MKlucher19-Jul-04 18:28
MKlucher19-Jul-04 18:28 
GeneralRe: How can I display 2 forms, one after the other? Pin
arik_a19-Jul-04 22:47
arik_a19-Jul-04 22:47 
QuestionHow to realize Web control's context menu by c# Pin
nakey_yang19-Jul-04 17:18
nakey_yang19-Jul-04 17:18 
AnswerRe: How to realize Web control's context menu by c# Pin
Nick Parker19-Jul-04 17:29
protectorNick Parker19-Jul-04 17:29 
GeneralVery Urgent Please -- Overloading ++ operator doesn't function as intended. Pin
Member 112523619-Jul-04 17:12
Member 112523619-Jul-04 17:12 
Hi,
I'm overloading the ++ operator for my Day Class. I have the implementation for this overload within my class and when I tested this in the debug mode, my Day which is supposed to increment as I've coded doesn't increse. It basically gives out an object of type Day itself with the next date. Here is my code. Any help with this would be appreciated. Please do help me out with this.


<br />
public static Day operator ++(Day d)<br />
<br />
{<br />
<br />
	Day nxtDay;<br />
<br />
	int nxtDate;<br />
<br />
	//GregorianCalendar gc = new GregorianCalendar();<br />
<br />
	try<br />
<br />
	{<br />
<br />
		nxtDate = d._dayofmonth + 1;<br />
<br />
		nxtDate += 1 ;<br />
<br />
		nxtDay = new Day(new DateTime(d.Year, d.Month, nxtDate));<br />
<br />
	}<br />
<br />
	catch (Exception e)<br />
<br />
	{<br />
<br />
		e.GetType();<br />
<br />
		int nxtDayMonth = (d.Month == 12) ? 1 : d.Month + 1;<br />
<br />
		int nxtDayYear = (nxtDayMonth == 1)? d.Year + 1: d.Year;<br />
<br />
		nxtDay  = new Day(gc.ToDateTime(nxtDayYear,nxtDayMonth,1,1,1,1,1));<br />
<br />
	}<br />
<br />
	return nxtDay;<br />
<br />
}<br />




Thanks

~~~~~~~~~~~~~~~~~~~~~~~~
Shravan Addaypally
.NET Apps Developer
BellSouth Billing Inc.
Birmingham, AL 35205
~~~~~~~~~~~~~~~~~~~~~~~~

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.