Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
50% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #3K
~7K People Reached
This member's community profile is only visible to logged in members until they have earned 15 reputation points.

12 Posted Topics

Member Avatar for Tomi1988
Member Avatar for S_915
0
5K
Member Avatar for Lyandor

Hey guys. Can you have a look at my queries? I can't spot the error with my foreign key linking. As of now, the table staff has already existed: StaffID char(7) Staff_Name varchar(50) Position varchar(50) And now I'm trying to create a new table called SalesInvoice: create table SalesInvoice( SalesInvoiceID …

Member Avatar for seslie
0
188
Member Avatar for Lyandor

Hey guys, is there a way to get a node's name and assign it as a value to a variable using javascript? Here's an example structure of the xml. [CODE] <list> <student id="101"> <name>John Smith</name> <DOB>07-09-1987</DOB> <address>123 ABC street</address> </student> <student id="102"> <name>John Doe</name> <DOB>05-04-1986</DOB> <address>234 DEF street</address> <address2>345 GHI …

0
112
Member Avatar for Lyandor

Hello everyone, Lyandor here. Just joined today after sometime lurking around in the shadows in daniweb, looking forward to your guidance everyone. As for my background.... I started programming like 4 years ago, but haven't been an active one, just barely enough to get by my semesters :P As for …

Member Avatar for Anny11
0
123
Member Avatar for bigdan182

ehhh my guess is either: wrong name spelling for your main function wrong data type for your main function no return for main function or if you're attempting for winapi, you should have winmain instead of main. Then again, post your code, there's too many guesses with what information you …

Member Avatar for bigdan182
0
172
Member Avatar for triumphost

First: there is, though not directly, you can use resource editor to create dialogs visually. just add new resources and visual studio (assuming you're using it) should show you a blank dialog with 2 buttons. just play around like you do in .NET Second: Adding to the first, you can …

Member Avatar for caut_baia
0
156
Member Avatar for thedalek

your comparison inputs a digit into 1 array slot. So instead of 45 in codearray[0], it becomes 4 in codearray[0] and 5 in codearray[1]. if you want to input each slot with 2 digits each, i would reccomend changing the algoritm this way: leap j by 2 everytime the loop …

Member Avatar for thedalek
0
220
Member Avatar for radiata

Here's a little pointer [CODE] if (a > b) { if (a > c) { //highest value is a } else if (a < c) { //highest is c }[/CODE] do the same for b and c and you should be fine. I'm not up for the idea of a …

Member Avatar for Nick Evan
0
217
Member Avatar for milan2011

Hmmm I did something similar, except i stored the strings from the file into a vector. What i did was: getline(1,2,3); 1 being the filename 2 being the variable used to store the value in and the 3rd would be the divider which signals the code to stop reading. Let's …

Member Avatar for Lyandor
0
188
Member Avatar for Lyandor

A little poll, which do you guys prefer to use for an application that uses 2 or more windows at the same time? MDI or modeless dialogs? And the reason why.

0
133
Member Avatar for west456

your codes in MyTime.cpp aren't complete. let's say your default constructor instead of: [CODE] MyTime::MyTime() //code[/CODE] It should be: [CODE] MyTime::MyTime() { //code }[/CODE] do keep in mind that functions have to have () at the back of their name such as void Mytime::IncrDay() which you typed as void MyTime::IncrDay. …

Member Avatar for Lyandor
0
562
Member Avatar for Lyandor

Hey guys, I'm new to this forum so nice to meet you all :D I'm really bugged by a weird bug that prevents my dialog from showing up, however the buttons show up twice, one overlapping the other. I saw other threads that discusses about this but I'm afraid I …

Member Avatar for caut_baia
0
183

The End.