Posts
 
Reputation
Joined
Last Seen
Ranked #724
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
83% Quality Score
Upvotes Received
11
Posts with Upvotes
10
Upvoting Members
9
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
5 Commented Posts
~49.9K People Reached
About Me

Total IT Geek who loves Ice-Hockey and a Strong believer in Jesus Christ... weird combo I know, but I try to manage all the above :P

Interests
Ice-Hockey, Coding, Gaming, Church, Movies, and the missus (miss for now, but soon to be missus lets…
PC Specs
Sadly low :( Intel 3.2 Dual Core, 4 GB Ram, Ge-force GTS 250, 3 harddrives total 3.2 TB,
Favorite Tags
c++ x 114
qt x 30
mssql x 17
sql x 3
Member Avatar for devfeel

Devfeel... Uhm, I dont want to sound rude but how can that be such a big problem? converting and datatype shuffeling and loading into lists is something that should be rather simple if you managed the program you mentioned above? thines01's advice is solid and will give you exactly what …

Member Avatar for k_8
0
2K
Member Avatar for tomz6

When you pass by value, you "create" a second instance of the variable, local only to the function receiving it... When you pass by pointer/reference you can see it as passing a big neon arrow pointing to the original variable... thus you can imagine, as no additional memory is allocated …

Member Avatar for Banfa
0
993
Member Avatar for ireallyneedhelp

Ok... Basics of Daniweb... TRY FIRST!, dont give us your assignment and expect coding back... this is not a free software house, people get paid to do that... so untill you can give us an example of your coding or actual problems that you are struggling with in it, the …

Member Avatar for rubberman
0
186
Member Avatar for tomz6

cant think of an allready existing function... but if you have multiple arrays, use a bubble sort and apply the swop you are doing to both arrays instead of just one?

Member Avatar for Eagletalon
0
141
Member Avatar for robinotje

I have managed to retrieve a list of all files contained in a folder (and all sub folders) but unfortunately this is relying heavily on and written using QT libraries... if you would like I could post said code

Member Avatar for Ancient Dragon
0
15K
Member Avatar for Mncedisi

Start at the data, research what you have available and what you need and how to get that in your application... Then you create an application which pulls in the data (saved externally as specified) and is able to display it, and also is able to enter new data, that …

Member Avatar for Iyfjeyeon
0
180
Member Avatar for Vaspar

"add 1/3 to itself a large number of times and to compare the result to multiplying 1/3 by the number of times 1/3 was added to itself" & "Your program will do these additions 109 (1 billion) times." (perhaps they meant to say 10 x 9?) so what I understand …

Member Avatar for TrustyTony
0
256
Member Avatar for yanivlt777

SELECT DATEADD(DAY, 32143, CONVERT(DATE, '1899/12/31', 111)) -- RESULT = 1988-01-02

Member Avatar for relalimarmo
0
763
Member Avatar for zvjezdan.veselinovic

I think he got confused between the Get method vs Set method... also that specific error arises because you are trying to send to the function a variable in the main function but that variable is not declared or created in the main.cpp Walt your posts can stand on their …

Member Avatar for zvjezdan.veselinovic
0
219
Member Avatar for RonKevin

uhm... WaltP, point 4 on your list is not "main" but "menu"... and I believe it can be void... and the semicolon in point 3 is an end while the rest should just be spaced into a new line as an variable of the struct (I hope I said it …

Member Avatar for RonKevin
0
231
Member Avatar for markwiering

OK OK OK, here is an example of what Suzie said you need to do, you do it yourself... cout << "In which year where you born? (Example: 1995) "; cin >> bjaar; while <check if bjaar is not an integer>{ cout << "Your entry was not a number, please …

Member Avatar for markwiering
0
1K
Member Avatar for myk45

I agree... its a decent way to check the outcome of your functions... alternatively you can use a try catch... but it comes down to the same

Member Avatar for myk45
0
203
Member Avatar for sanghai45

well I dont know much of this kind of coding... but I guess the best trick would be to first get the positions of each node? have that saved and be able to calculate the distance between each node? then you can start with the current node... the node you …

Member Avatar for Despairy
0
163
Member Avatar for Eagletalon

Hi there everyone... Allright my setting is this: I have written an C++ application that receives input from a user app, converts it to XML, and then posts it to our ERP (Syspro) through e.net COM objects using ActiveQt and in specific QAxObject... The problem is this: QAxObject inherits from …

Member Avatar for Eagletalon
0
965
Member Avatar for Eagletalon

Hey Everybody, Allright my setting is like this: I created a derived MVC program using C++ and QT on Visual Studio 2008, that sends multiple instructions to our ERP system through an external program... On each command posted this way the user application needs to wait for a return string …

Member Avatar for Eagletalon
0
573
Member Avatar for Letscode

1 Question... how does 1 do this for a column with the data type char if you want tot take it to decimal... gives me an error on the conversion.... "Msg 8114, Level 16, State 5, Line 1 Error converting data type varchar to numeric." is there an additional way …

Member Avatar for manikandan5
0
1K
Member Avatar for Eagletalon

Hey Everyone, I have run into a bit of a problem with regards to application startup... I have written a C++ application with QT libraries that uses active QT to communicate with our ERP system in our business, the requirements are that any application we use needs to communicate its …

Member Avatar for Lucaci Andrew
0
1K
Member Avatar for lewashby
Member Avatar for jasleen_kaur

freopen("Document.in" ,"r",stdin); freopen("b","w",stdout); is not C++... read the links that zero sent you... Here is what zero tried to show you: ifstream myfile ("example.txt"); if (myfile.is_open()) { while ( myfile.good() ) { getline (myfile,line); cout << line << endl; } myfile.close(); } else cout << "Unable to open file";

Member Avatar for jasleen_kaur
0
1K
Member Avatar for Tinier
Member Avatar for Tinier
0
294
Member Avatar for amberrrrrNJ

Hi amber... No-one is going to do your homework for you... show us you tried and we will assist where you get stuck... post some code or give errors or problems dont ask us to do everything

Member Avatar for amberrrrrNJ
0
196
Member Avatar for f4fjks

Allright in visual studio, at the top you will see a dropdown box with the text "debug"... change that to "release"... then build the application... now in the folder you saved the project there will appear a "release" folder, in this folder will be the files you want, this can …

Member Avatar for f4fjks
0
946
Member Avatar for jovillanuev

CASE (ISNULL([QtyOnHand],0)) WHEN < 0 THEN 0 ELSE ISNULL([QtyOnHand],0) END

Member Avatar for Eagletalon
0
63
Member Avatar for tornado2232

wth is the newton raphson method? did you try at all? take it all step by step and try to develop something rather than just asking others to do everything for you... if your stuck with a error or genuine programming problem (after TRYING) we will be happy to help

Member Avatar for ravenous
0
183
Member Avatar for rmbrown09

alright do you know where the error takes place? Maby narrow it does to a function? Everything looks pretty well done allthough it feels slightly unneccessary here and there :? Regardless, you deserve some credit for at least trying... now, first thing... as a programmer, a sad truth about life …

Member Avatar for rmbrown09
0
145
Member Avatar for ma.ali786

Create a table with "id", "firstname", "middlename", "lastname", "address" And select them into 1 field... closest I think you are going to get to what you seek... Alternatively you can try different select statements or tricks to display in different ways... but I dont believe the nested tables are gonne …

Member Avatar for adam_k
0
228
Member Avatar for Eagletalon

Haha I guess I'd have to get around to this some or other time, Hi everyone, My name is Jaco, and I am addicted to oxygen... its sad I know, tried to shake it many times but no luck :( Lol ok seriously now, Ive been on this forumn for …

Member Avatar for mary.elizabeth
0
58
Member Avatar for jojodeco

Alright firstly, this forumn the people are not going to do something for you if you aren't prepared to do something yourself... I will however try to help you in getting started... First place... find what is expected of your program... is there any user input? or is it all …

Member Avatar for Eagletalon
0
548
Member Avatar for Eagletalon

Hi There, I hope somebody can help me, I work with Visual C++ 2008 with QT libraries I am trying to include a Interop.Encore.dll file into my program to access our ERP system business objects and post new data to the ERP We have a Visual Basic program geared to …

Member Avatar for Eagletalon
0
3K
Member Avatar for jovillanuev