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
Ranked #2K
~1K People Reached
About Me

Hi Im Jenni.

Favorite Tags
Member Avatar for fishsqzr

Does C# allow short-circuit evaluation of Boolean expressions? That is, if you have an expression such as if (test1) & (test2) {....} when test1 is false, there is no reason to evaluate test2 and a language which supports short-circuit evaluation never looks at the second test because the result will …

Member Avatar for iamthwee
0
481
Member Avatar for Kusno

Dear all, I have rectangle that I split to 4 columns and put lines and I fill in each column with textbox ------------------------------------------------------------------------------------------------------------------------------ | Col1 | Col2 | Col3 | Col4 | ------------------------------------------------------------------------------------------------------------------------------- Example : Col1 => Currency Col2 => Amount Col3 => Value date Col4 => Due date sometimes, …

Member Avatar for SheSaidImaPregy
0
114
Member Avatar for Alv45525

hello guys, i really need help....i have a transaction table in ms access N i want to retrieve last 10 transaction from the table from my vb form...how am i suppose to do it???i used the folloing code but it is displaying all transactions of a specific account number. N …

Member Avatar for Alv45525
0
128
Member Avatar for SheSaidImaPregy

I have a few questions for those who know so much about the web.. 1. Is it better to declare.. 20 variables and do all your SQL queries immediately, or to do like 10 variables and open your connection, do one query, then reset your variables and runt he queries …

Member Avatar for SheSaidImaPregy
0
95
Member Avatar for agrothe

Hi, at url [url]http://lowellbonnell.ca/index.php?view=Markets[/url] my ajax will only work if you insert the www in firefox. IE is fine either way. Any ideas?

Member Avatar for jquick
0
158
Member Avatar for scorpionz

Hi its scorpionz i have some little Problem in Coding i want to Develop an asp.net application that retrieve records from a table of ms access and display on a page in a grid or html table. Make sure the table has two fields [EmpName, EmpQualification]. The page should provide …

Member Avatar for jquick
0
117
Member Avatar for jquick

Hi, I need to build a datetime object out of 3 drop down lists. I know I can use DateTime.TryParse().. but I don't know what format it wants? I tried this: [CODE=C#] showDate. = Convert.ToInt32(ddl_bday_day.SelectedValue); showDate.Month = Convert.ToInt32(ddl_bday_month.SelectedValue); showDate.Year = Convert.ToInt32(ddl_bday_year.SelectedValue); [/CODE] But those are read only properties. I then …

Member Avatar for jquick
0
111