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
~2K People Reached
Favorite Tags
Member Avatar for vegaseat

Is it Mother Date and Father Time? Any way, getting all the different date and time displays working can be imperturbably perplexing at times. You take a look at it in this Windows Console Application.

Member Avatar for Tsawm
0
914
Member Avatar for hwa

Can someone help me?? How to retrive image from MySQL(not MS_SQL) and show into my <asp:Image> control using c# Lets said my table on have a field as following: "SELECT pic FROM image" Thanks in advance !!

Member Avatar for kvprajapati
0
204
Member Avatar for hwa

Here is my code: [CODE] override protected void OnInit(EventArgs e) { InitializeComponent(); base.OnInit(e); } private void InitializeComponent() { this.cmdUpload.Click += new System.EventHandler(this.cmdUpload_Click); this.Load += new System.EventHandler(this.Page_Load); } private string strConn; OdbcConnection cnn; private void cmdUpload_Click(object sender, System.EventArgs e) { OpenDatabase(); if ((File1.PostedFile != null) && (File1.PostedFile.ContentLength > 0)) { // …

Member Avatar for hwa
0
148
Member Avatar for hwa

On my attachment have the table I want to know how to make the comparison like: [COLOR="Red"][B]DUE_DATE_TIME + DURATION(in hours) <= OVER_DUE_DATE_TIME[/B][/COLOR] If the above statement is wrong then must prompt out the message box: (I'm also need help in how to prompt out the message box, Thanks) Can yours …

Member Avatar for Jx_Man
0
172
Member Avatar for hwa

My problem is I want to add in a value to a LABEL based on selected value in the DropDownList !! Example: tbl_abc ID [COLOR="Red"]Sequence [/COLOR] Name ----------------------------------------------- 1 [COLOR="red"] 2[/COLOR] Michael 2 [COLOR="red"] 3[/COLOR] Jenny 3 [COLOR="red"] 4[/COLOR] Max 4 [COLOR="red"]4[/COLOR] Max 5 [COLOR="red"] 2[/COLOR] Michael 6 [COLOR="red"] 4[/COLOR] …

Member Avatar for hwa
0
164
Member Avatar for hwa

[COLOR="Red"][/COLOR]I'm having a problem to inserting date/time in my database.. In my database have ONE column that consists of DATE and TIME I want use separate dropdownlist for the [COLOR="Red"]HOUR[/COLOR], [COLOR="Red"]MINUTE[/COLOR], [COLOR="Red"]SECOND[/COLOR] and I want to bind it & insert it to a 1 column in database.. I need to …

Member Avatar for hwa
0
108
Member Avatar for hwa

Example: I have a table name A and have three column name OVER_DUE_DATE_TIME(date/time), DUE_DATE_TIME(date/time) and DURATION(Integer, in hours). I need to do this validation: DUE_DATE_TIME + DURATION <= OVER_DUE_DATE_TIME If the validation is wrong then should prompt the user error message. May I have this solution in C# !! Thanks …

Member Avatar for hwa
0
169