Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~572 People Reached
Favorite Tags
Member Avatar for PRINCE01

Need help,want to insert record via a webform ,but 2 of are my column data type are DateTime this is part of my code: string Name = txtName.Text; string Description = txtDecription.Text; string Topic = txtTopic.Text; string Sponsor = txtSponsor.Text; string Location = txtLocation.Text; DateTime StartDate; StartDate= DateTime.Parse(txtStartDate.Text); DateTime EndDate …

Member Avatar for rohand
0
85
Member Avatar for PRINCE01

I am using memebership provider in my app. I ADDED MEMBERSHIP SCHEMA TO AN EXISTING DATABASE. HOW DO I GENERATE THE T-SQL SCRIPTS FOR SQLMEMBERSHIP??

0
53
Member Avatar for PRINCE01

I need instance method(s) within the class am writing that convert from any base to base 10 & vice versa WIThOUT USING ANY LIBRARY ROUTINE. //this is what i have so far private int DecimalToBinary(int Decimal, int BaseNumber) { int Reminder; do { Reminder = Decimal % BaseNumber; } while …

Member Avatar for PRINCE01
0
315
Member Avatar for PRINCE01

//am having errors on this portion of my code // am require to implement Icomparable interface with my rational class[code]// public int CompareTo(Rational opnd1,Rational opnd2 ) { if (Rational opnd1 < Rational opnd2) return -1; else (Rational opnd1 == Rational opnd2) return 0; else return 1;[/code]

Member Avatar for apegram
0
119