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
~1K People Reached
Favorite Forums
Favorite Tags
Member Avatar for crbsathy

Hi Friends, I have a doubt in accessing the memory address . In java there is no pointers like c . then how can we access the address of the memory variable.

Member Avatar for JamesCherrill
0
1K
Member Avatar for crbsathy

Hi Friends While adding record in Ms-Access using ADODB... Last record in the database is replaced instead of adding .. I dont know why?? Plz any one help me.. [U][U] Code :[/U] Private Sub cmdAdd_Click() If ((IsNumeric(txtincome.Text) = True) And (IsNumeric(txtmobile) = True) And (IsNumeric(txtnum) = True)) Then Datacontrol.Recordset.MoveLast Datacontrol.Recordset.AddNew …

Member Avatar for debasisdas
0
66
Member Avatar for ricss_madara

class bubbleSort1{ public static void bubbleSort(int[] x) { int n = x.length; for (int pass=1; pass < n; pass++) { // count how many times // This next loop becomes shorter and shorter for (int i=0; i < n-pass; i++) { if (x[i] > x[i+1]) { // exchange elements int …

Member Avatar for mayur_kulkarni
0
87