Search:

Type: Posts; User: Ctylersills

Page 1 of 2 1 2

Search: Search took 0.01 seconds.

  1. Replies
    5
    Views
    21,265

    Thanks guys! That solves it for the example and...

    Thanks guys! That solves it for the example and two other projects
  2. Replies
    5
    Views
    21,265

    My mistake, your absolutely right, a lot of the...

    My mistake, your absolutely right, a lot of the tutorials invoked the function/method on class and instance types that had the same name and that must of got stuck in my brain somehow.
  3. Replies
    5
    Views
    21,265

    expected unqualified ID before'.' token

    I keep running into this issue, all the information Ive searched for regarding this error have been in regards to nesting classes and other issues. Here's some example code:


    #include <iostream>...
  4. THANK YOU THANK YOU THANK YOU!!! This is the...

    THANK YOU THANK YOU THANK YOU!!!
    This is the very information I needed to start with the most but have allowed myself to get distracted from. YOU guys are so awesome! Thanks a million.
  5. And sorry to repost but the most important part...

    And sorry to repost but the most important part that none of the mnuals say, to direct write how to I send the code to the printer, i can for example go into cmd prompt and send an echo "hello...
  6. Okay lets me be clear again, I can write cpp and...

    Okay lets me be clear again, I can write cpp and in c newer to c++ but still, I am fluent. I understand ASCII, and hex, etc, Im not a conversion specialist or anything but I completely understand...
  7. [QUOTE=Salem;1287433]I can see we're going to end...

    [QUOTE=Salem;1287433]I can see we're going to end up doing all your work for you.

    I really hope you're not being employed to write a POS system, because you're way out of your depth.
    Many weeks...
  8. Can someone start by coding/showing me an example...

    Can someone start by coding/showing me an example of what a Centered/Font B/ text "HELLO WORLD!", would look like in C++? And then explain to me how the I get get the program to write this to a file...
  9. BTW, I am calling apps/programs i found on...

    BTW, I am calling apps/programs i found on github, packages
  10. Ok, so first of all, your saying I can use any of...

    Ok, so first of all, your saying I can use any of the commands to the receipt printer and ittypes (ASCII, HEX, ESC, DECIMAL) commands provided in the manual to send to the receipt printer and it will...
  11. [Name]Print barcode [Format] (A)

    [Name]Print barcode



    [Format]

    (A)
  12. THak you so much fro the information you have...

    THak you so much fro the information you have already provided first of all, I M trying to create my own receipt format, here’s a programming example for a receipt that prints with barcode, if you...
  13. I am trying to Print from an ESC/POS Epsom TM-T88V Printer

    Im trying to write a program to write receipts from an Epson TM-T88v Printer,but every package I find doesnÂ’t have everything I need, Like 1 doesnt have QR codes, One doesnÂ’t Have code 39 codes,...
  14. Thank you so much. That makes perfect sense....

    Thank you so much. That makes perfect sense. That’s exactly the answer I was looking for on installation, and as far as the programming stuff the book was a perfect reference. Thanks guys!
  15. btw the book referenced earlier was a good...

    btw the book referenced earlier was a good resource i’ll be buying that as soon as i can!
  16. im saying even open source programs like code...

    im saying even open source programs like code blocks require installation “wizards” why can’t you just put all the files needed in the c directory on windows and run an exe that links all the needed...
  17. No no, I get it. Completely with you, but I can’t...

    No no, I get it. Completely with you, but I can’t seem to find a good programming basics minus language resource, any idea for the programming side? YouTube seems to have no videos I can find that...
  18. Understanding the basics that I don’t understand with the “language”

    I’m looking for an all inclusive kind of down to the details look at the insides of Programming. What I mean is basically is there a “Everything you need to know about probramming other than coding...
  19. That was it, it was the blank constructors, Ive...

    That was it, it was the blank constructors, Ive noticed that this particular compiler DOES NOT CARE FOR THEM AT ALL. Removed them and everything worked perfect. FYI, yes this was complete. I remove...
  20. Daughter class not inheriting the function from the mother.

    #include <iostream>
    #include <string>
    using namespace std;


    class Mother//Base Class
    {
    public:
    Mother();//daughter will not inhereit constructors or destructor
    void sayName()//function...
  21. AHHH, that makes total sense, I love getting an...

    AHHH, that makes total sense, I love getting an inside view of how the compiler works. Anyways, like I said I have to stop being so dependent on the “You spelled it wrong dummy” errors though, and...
  22. fair enough, you got me. BUT, since I switched to...

    fair enough, you got me. BUT, since I switched to C++ the compiler used ALMOST always catches my typos so I thought It was right and didn’t pay attention. I got way to dependent WAY to fast to error...
  23. Why is this’s friend function not accessing private variables???

    #include <iostream>
    using namespace std;


    class StankFist
    {
    public:
    StankFist(){stinkyVar=0;}
    private:
    int stinkyVar;
  24. how would I get the source code from a nuget...

    how would I get the source code from a nuget package? I’m thinking it would probably be MUCH easier to translate from c#
  25. Ok, so basically sending all the print commands...

    Ok, so basically sending all the print commands to the print buffer, am I right, saying that the print buffer file be written to, as output?
Results 1 to 25 of 50
Page 1 of 2 1 2