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 SkipVought 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. StevoSimpson

    Databinding with a user control

    Hi, I am attempting to create a user control which consists of 3 textboxes, one for minimum, most likely, and maximum values. The controls Value property is databound to a bindingSource which represents a business object. The actual control is bound to a Distribution class which exposes the 3...
  2. StevoSimpson

    Sorting columns in a listView by number, not string

    Hi, I've managed to create a listView which can sort the columns in ascending or descending order by following the MS help file: http://support.microsoft.com/?kbid=816183 However, this sorts by string, so any numbers, for example in an ID field, dont get sorted correctly - instead of 0...
  3. StevoSimpson

    Adding a String to a textbox - I only get the first char

    Thanks for that info. You were right in thinking that the original String* did have null characters every other character. I thought I had managed to get rid of them like this: info = info->Replace("\\0", ""); Although I'm not entirely sure if it has worked properly. If I write it straight...
  4. StevoSimpson

    Adding a String to a textbox - I only get the first char

    Hi, I'm having trouble getting a textbox to show strings properly. I'm reading in a file into a String*, searching for a specific string within this, and saving the found string. ie. FileStream* fstrm = new...
  5. StevoSimpson

    Sales report: Assistant info, even if they have no sales

    Ok, never mind, I seem to have got it working... doing something I'm sure I tried a few hours ago - I've been staring at this screen for too long obviously. For anyone in the same boat, I had to use a query within a query: First off, a query that returns all information about sales and what...
  6. StevoSimpson

    Sales report: Assistant info, even if they have no sales

    Hi, I'm having a slight problem in designing a query for a report. I am creating a sales database, and the report I need to generate should loop through all the assistants, showing their sales grouped per day, and the item included in the sale (max of one per sale). The tables look like this...

Part and Inventory Search

Back
Top