• Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Program C++

    Start here: #include <iostream> int main() { // put your code here }
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in How to show a box with the number inside and can move around in 2d array

    There's a space between each of the numnbers in that huge square, which leaves room for the |, _ and - characters areound the number in the center.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Sorting and Search Binary String

    What's wrong with Windows File Explorer?
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Please help me in solving this c++ program

    Since we have no clue what that program is supposed to do how do you expect anyone to help you? Help you do what, exactly?? Do you take your car …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in who can solve this??

    >who can solve this? Probably anyone who has half a brain.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Bad Grammar

    Just goes to prove how the English language is changing over time -- from my generation to yours today, and how it's usage is somewhat different from country-to-country, and even …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Getting Name from ID

    Now you need to post the code what you are trying to do because combobox only accepts strings, never integers.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Happy thanksgiving!

    Happy Cyber Monday!
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Connect Two PC through USB port

    Are both PCs connected to the internet? What operating system do they run? If have several PCs running Windows 7 and 8 all connected via internet by setting up a …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Setting up server

    > "Home Premium and lower editions can't connect to domains." Ok, I was thinking of Windows 7 Pro. Sorry for misleading you. You will need to upgrade the computers from …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Setting up server

    home Premium should not be a problem. Only one computer needs to run the Server software -- I don't know whether it can manage passwords without human intervention or not …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Setting up server

    Are the printers wifi ready? Or are they connected directly to computers? What operating systems are running on the 6 computers? With MS-Windows 7/8 you don't really need a computer …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Bad Grammar

    In another 20 years or so you won't be able to read English newspapers and magazines any more -- young people are growing up learning to text and use shortened …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Linked list of chars In c

    > the difference between a pointer size and char size isn't going to be an issue. sizeof(char) == 1 sizeof(char\*) == 4 (except Turbo C compilers where it could be …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in How to show a box with the number inside and can move around in 2d array

    what compiler are you using? You could draw a box by using the line-drawing bytes of the ascii character set (the values between 179 and 223). google for "ascii character …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in How to send and receive data through rs232 in Vs2010

    you are trying to compile the program for UNICODE, which is the default for Visual Studio compilers. Either got to Project--> Properties-->ConfigurationProperties --> General, then on the right paine change …
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Getting Name from ID

    Have you tried something like this: Select SaleID, RepID1, RepID2, RepID3,RepFName,RepLName FROM tblSalesMain as s, tbnlRepMain WHERE s.RepID1 = tblRepMain.RepID This would work in Sybase SQL, not sure about others.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in VC2010 project modification, CFileView CClassView CPropertiesWnd

    Are you sure it's called CDocableView?? I'm looking at the [MFC Hierachy Chart](http://msdn.microsoft.com/en-us/library/ws8s10w4(v=vs.110).aspx) and don't see such a vew.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Sorting and Search Binary String

    It looks like it's already divided into small functions. Maybe you just misread the code.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in non-open source license

    try google
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in plagiarism

    Never heard of copyright "detection". Do you mean "protection"? There really is no fullproof way to do it, someone is always going to find a way to pirate software.
  • Member Avatar for Ancient Dragon
    Ancient Dragon

    Replied To a Post in Sorting and Search Binary String

    I think you will want to use a structure or class to hold the names so that it's easier to search on just one of the fields. But ... if …