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

hey guys. here is a scenario: i have a form named frm1 and a variable in it [CODE] private x as integer = 0[/CODE] and another form called frm2 that needs to be able to make a local copy of "x" from frm1 and any changes made to "x" on …

Member Avatar for Jx_Man
0
174
Member Avatar for Robins Antony

Hi friends, I’m doing a project in VB to conduct a Quiz competition. There r 4 rounds in it. It allows customization .ie; the users can create their own Quiz. Is it a good idea to dynamically creating databases & tables using code to store the questions & answers for …

Member Avatar for dan_e6
0
75
Member Avatar for JochenM

hi folks, i need a library to analyse references of a scientific document. the lib should be able to identify references in the full text (for instance [1], [2], ... or Author A (1995), ... Author B & C (1968), ...) and it should be able to identify the elements …

Member Avatar for JochenM
0
130
Member Avatar for dan_e6

hey guys. ive created this function that will delete the first element it finds in a linked list that has the value n in it. it works except when the number is the FIRST element in the list. it wont delete it, it will replace it with a 0 when …

Member Avatar for John A
0
104
Member Avatar for dan_e6

hey guys. ive been asked to do this: Write a recursive function which returns true if the linked list is sorted in ascending order. bool isSorted(nodeType *L) why would we use a recursive function to check if it's in ascending order? can anyone help me with this.

Member Avatar for n1337
0
459
Member Avatar for dan_e6

hey guys. i have a linked list set out like this [CODE] struct node { string bookTitle; string *authors; int nAuthors; node *next; }; node *start_ptr; [/CODE] and i need to sort the linked list based on bookTitle alphabetically. how would i go about doing this?

Member Avatar for dan_e6
0
91
Member Avatar for dan_e6

hey guys. i cant remember for the life of me what the difference is between putting ++ before or after a variable (specifically an int). for example in a for loop.

Member Avatar for William Hemsworth
0
14K
Member Avatar for dan_e6

hey guys. just wondering what it means when a function has this in it.... void add(string title, string authors[], int nAuthors); the [] next to authors. what does this mean?

Member Avatar for dan_e6
0
259
Member Avatar for dan_e6
Member Avatar for William Hemsworth
0
78
Member Avatar for dan_e6

hey guys. I need some help here! I have a 2D vector named grid. what i need to do is magnify any data in it. it's of a bool type so something like this. 1100 0110 0011 in the 2D vector would become (after magnification) 11110000 11110000 00111100 00111100 00001111 …

Member Avatar for dan_e6
0
193