Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. prpleprncs

    Converting figures from a table based on a value entered on a form

    Never mind. I got it. I wasn't using the database field name correctly. Basically I used the iif function in my query and changed txtValue to the actual database field name and it worked perfectly. amt...
  2. prpleprncs

    Converting figures from a table based on a value entered on a form

    Hello, I have a report that prints values from a Invoicing database using US currency. When the invoice data is input, you can check a box to record the currecy- US or Euro. So I created a form that prompts for the invoice number that needs printing. If the currency for the invoice is Euro...
  3. prpleprncs

    listbox font color change

    I got it. I have a ColorListBox.cpp and .h that I included. But thanks for the suggestions.
  4. prpleprncs

    listbox font color change

    Are you sure there is a SetFont method. I haven't been able to find nor use it.
  5. prpleprncs

    listbox font color change

    Thank you, but I don't know how to subclass...??
  6. prpleprncs

    listbox font color change

    How do you change the the color of the font in a listbox?
  7. prpleprncs

    multiple Listboxes

    Never mind. Got it.
  8. prpleprncs

    multiple Listboxes

    I know how to make multiple listboxes, but what class do i use for it fi the first uses my XXXdlg.cpp class? do i just make my own
  9. prpleprncs

    sprintf, %s%, and arrays

    that didn't work. think we forgot that buffer was an array used for sprintf.
  10. prpleprncs

    sprintf, %s%, and arrays

    And once I have concatenated the array to the buffer, how do i add the concatenation to the listbox
  11. prpleprncs

    sprintf, %s%, and arrays

    Is there anyway to print and array using: sprintf(buffer, "%s",errMsg[z]); m_tadslist.AddString(buffer); At the moment, it throws an exception.
  12. prpleprncs

    delete char from input file

    nope won't work. tried that. the 0's and 1's are random. plus i have to have data integrity because i have to convert to decimal once conditions have been meet concerning whether or not the bit is 1 or 0. i used this: while (finAllBit>>b) { bits[a]=b; a++; if(a>304)//only want 304 at a...
  13. prpleprncs

    delete char from input file

    that may not work. the character are 'bits'. all 0's and 1's. what i did do was instead of copying to a diff file like i was, i simply put them in a buffer and started reading from the last place i left off. then overwrote the buffer. this works. but let me know if you come up with another way
  14. prpleprncs

    delete char from input file

    Is it possible to delete character from an input file once they are read.

Part and Inventory Search

Back
Top