• Member Avatar for richieking
    richieking

    Replied To a Post in Call all text file in one folder transfer new folder as CSV file

    Can you atleast show some code mate.? We dont do homework here. We assist with homework.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Help with Qt 5 multiple forms application

    So maybe post your code and we can start from there. Also without any experience in signals and slots, You do not have any chance in GUI. Thats the whole …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Class

    > yes I got it...I did a basis mistake...I should include the header files in the begining. The basic logic is yes.
  • Member Avatar for richieking
    richieking

    Replied To a Post in a code that force the user to insert captial letters and numbers as pass

    You can also try this. This is according to your post > hello i'm trying to figure out how to write a program in c++ that check when i insert …
  • Member Avatar for richieking
    richieking

    Replied To a Post in how to change multipli rows in Qt?

    This is not automatic but easily doable. You now have the filtered records, You need to get all the filtered records by id, Use the id to change/update all the …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Overloading == Operator

    You may wanna change your class name to say txt or whatever. Array is a C++ lib. MosChops just warned you aboout that. Now add change to say class txt …
  • Member Avatar for richieking
    richieking

    Replied To a Post in not able to save a file using button

    Why String^ to just a string?? change that.
  • Member Avatar for richieking
    richieking

    Replied To a Post in win32 - how show the ToolTip manually?

    And what do you mean by manually? Please explain....
  • Member Avatar for richieking
    richieking

    Replied To a Post in sorting array

    I think its better to use sort() from the algorithm lib. C++11 has make the language more rubost and powerful. I advice all the newbies to have a better grisp …
  • Member Avatar for richieking
    richieking

    Replied To a Post in While statement Asterisk

    Check your logic up. Use this to get the idea... #include <iostream> using namespace std; int main() { bool ff = true; short tt; short count=1; while(ff){ for(tt = 0 …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Regulations.gov API HELP!!

    Can you paste some results you get after running your code here. I think you are talking about how to format the data for use. I stand to be corrected …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Need help

    In your int main function you must return a value. int main always must return a value.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Bubble sort doesn't print right numbers.

    use this #include <iostream> using namespace std; int main() { int foo []={4555,1,56,2,7,4,5,60,7,8,9,90,8,12}; int temp; for(int i =0; i< sizeof(foo)/sizeof(int); i++ ){ for(int c =0; c< sizeof(foo)/sizeof(int); c++ ){ if(foo[c] …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Digital signature adding object node

    Your code please.
  • Member Avatar for richieking
    richieking

    Replied To a Post in rotating sentences

    And your code sir.
  • Member Avatar for richieking
    richieking

    Replied To a Post in qt fetch the url of a html

    1. Show your code 2. Can you tell us what you intend to do with the url link later? eg. download an image file etc...
  • Member Avatar for richieking
    richieking

    Replied To a Post in Stack & Queue output/print

    First of all your your design or approach to your idea is wrong. you must understand or read more about templates. Every template must be initialized with a data type. …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Radix Sort C++ with Time Executation

    So what is your problem now?? Do you have any issues??
  • Member Avatar for richieking
    richieking

    Replied To a Post in Hierarchical database engine - "TreeBase CodeName"

    I have checked with your idea on your google code hosting page. I think its very interesting concept. I have downloaded your demo and source code to play with it.I …
  • Member Avatar for richieking
    richieking

    Replied To a Post in solving array problems

    And can you show your code please?
  • Member Avatar for richieking
    richieking

    Replied To a Post in [pointers] Member Access Operators: . and ->

    ok i will be very brief with my answer. Your question: > since "state" is a pointer, why doesn't -> work? ptr[i] -> state = num; // doesn't work. why? …
  • Member Avatar for richieking
    richieking

    Replied To a Post in variable was not declared in this scope

    There are 2 things to do according to what you wanna achieve. 1.Bring `double ranum = rand()%11;` line 7 on the first line in the void loop function. or2. make …
  • Member Avatar for richieking
    richieking

    Replied To a Post in linklist

    We help with your homework but not doing them. please show some effort first.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Qt remote database connection

    You can not simply connect to your database on another system like that. There must be a contact or a server on the remote system that you will use to …
  • Member Avatar for richieking
    richieking

    Replied To a Post in c++

    `samsondadson3` on line 18 the return statement must not be inside that bracket. Return must be inside the main's as it is returning `int main()` fuction.
  • Member Avatar for richieking
    richieking

    Replied To a Post in C++

    That is the power of precedence. The multiplication will take the power. thats `int y =a-b++ * --b;` you need to put them in a correct arragement depending on what …
  • Member Avatar for richieking
    richieking

    Replied To a Post in please help me

    Are you talking about this? Well show some code next time. We are here to help not to do your homework. float recSq(float x, float y){ return x*y; }
  • Member Avatar for richieking
    richieking

    Replied To a Post in solve programe in c++

    > Imagine you are developing a software package that requires users to enter their own passwords. > > Your software requires that user’s passwords meet the following criteria: > > …
  • Member Avatar for richieking
    richieking

    Replied To a Post in arrays

    Master when do you need your programme? How soon? Anything again master?
  • Member Avatar for richieking
    richieking

    Replied To a Post in function

    And you expect us to do that for you dont you master? Sure we will.. just give us one more month please master.
  • Member Avatar for richieking
    richieking

    Replied To a Post in help

    try and learn cpp very well and try not to rush your way through. take your time to understand well the language and other goodies will follow.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Strange Invalid Null Pointer Debug Assertion

    `void Database::getPNResults(bool* bErrors)` can you show how you called this fuction in your code? Also understand the basic use of a pointer. Pointers on creation are initialized to point to …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Count the number of text numbers in a txt file using c++..

    Can you show us your code ... Show us something. Shall we share some ideas??
  • Member Avatar for richieking
    richieking

    Replied To a Post in string

    You code please.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Semantic analyzer

    We dont do no homework here. Help yourself service only.
  • Member Avatar for richieking
    richieking

    Replied To a Post in c++ guessing game

    Show some code first.. Provide some code and we will work from there.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Looping Using Recursion

    AD... That is not true. "Now, you tell us which is more eligent -- pretty code that crashes often, or not-so-pretty code that runs without problems?" All basic loop or …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Issue with Boost ASIO Acceptor

    can you post your code here if you dont mind.? we need to read through your code.... possibly run it ourselves ok
  • Member Avatar for richieking
    richieking

    Replied To a Post in Looping Using Recursion

    So my question to # mike_2000_17 # is that what makes you think that your code is better than # Harod_2 's recurssion?? Like i pointed to you recurssion is …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Please help For this program(functions)

    If you can show us some code about your quest, maybe we may help you achieve your goal.
  • Member Avatar for richieking
    richieking

    Replied To a Post in program of array

    Show your code so far ok?
  • Member Avatar for richieking
    richieking

    Replied To a Post in Database or File-Handling?

    So show us your code so far.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Predator Prey GOL Mod 2d Grid Movement

    You need to post your error and the line that the error points to. You have different `headers` that we dont have access to test your code.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Problem with OnlineJudge task

    What error?? take your time and explain your problem very well. We need to understand what you want to achieve before we can assist you.
  • Member Avatar for richieking
    richieking

    Replied To a Post in Looping Using Recursion

    **Mike_2000_17** What are you saying?? That recursion should not be practise or are you saying recursion is worse than other loops? Are you serious? Do you want to see a …
  • Member Avatar for richieking
    richieking

    Replied To a Post in input string in SDL?

    Are you that lazy even to google around? What sort of laziness is that? What you need is everywhere on google. If you cant help yourself... then do not expect …
  • Member Avatar for richieking
    richieking

    Replied To a Post in c++ deleting a line from text file

    Deleting data in vector comes with a lot of work. For your operation, you need to consider list. Now based on your code , from line `49` to end. i …
  • Member Avatar for richieking
    richieking

    Replied To a Post in Pls can some one help to debug this command interpreter

    on `line 6` you have `char *prog_arv[4];` this is like char `**prog_arv`. you need to remove * to have `char prog_arv[4];` for the way you intend to use the char …
  • Member Avatar for richieking
    richieking

    Replied To a Post in project

    $100 for fully working GUI APP.
  • Member Avatar for richieking
    richieking

    Replied To a Post in C++ project

    Can you show your code?

The End.