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 strongm 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. raileyb

    identifier not found

    Thanks out to everyone for your attempts to help me. Here is what I found, inside cstdio #if !defined(_WIN32_WCE) // These are not supported on CE using ::freopen; using ::getc; using ::perror; using ::putc; using ::remove; using ::rename; using ::rewind; using ::setbuf; using ::tmpfile; using...
  2. raileyb

    identifier not found

    Thanks, I made the change to <stdio.h> and tried ::rename (oldname, newname); and now I get: Error 25 error C2039: 'rename' : is not a member of '`global namespace'' now I see the rename defined in stdio.h, I don't understand why it's not being found. Brian
  3. raileyb

    identifier not found

    If you want to customize the installer for Windows Mobile applications, you have to create C++ code. I wanted to rename a file before the uninstall of a a previous version started. codeUNINSTALL_INIT Uninstall_Init(HWND hwndParent, LPCTSTR pszInstallDir) { int result; char oldname[]...
  4. raileyb

    supporting second column in listbox objects

    Hi, I have form that contains two listboxs. The first listbox (lstfindings) is populated with the results of a query so the user can see a set of findings that they can then click on (multiselect), selecting just the subset of this list. I have an on click event on this first listbox. Each time...
  5. raileyb

    supporting second column in listbox objects

    Thank you for your help. I am now able to populate and hide a second column. IF my target object is named ListSystemImpactedSelected, and i wanted to see the separate column values while running in debug, how would I reference the individual columns? taz
  6. raileyb

    supporting second column in listbox objects

    Thanks for the reply. I believe I corrected tried what you suggest prior to posting. I may have either incorrectly attempted what you're suggesting or maybe the key is my definition of the itemData object. I do know that as the code is now, it works and I process the list when it's 'finalized'...
  7. raileyb

    supporting second column in listbox objects

    Hi, I have this code in place in a on click event. It moves the selected items from one list into another list. But I want to alter it so that both this list and the target list have two columns (the second column being invisible on the form and containing a reference value that I will use in my...
  8. raileyb

    how to make treeview toplevel display as an alphabetical index

    Hey Steve and gol4, Thanks for the suggestions and code samples. I too will give them a try and see how my situation goes. Taz
  9. raileyb

    return without gosub on new function

    Thank you, picking up vba after 20 years of other languages lulls me into a false sense of security. Here's your star for a fast, accurate tek tip! taz
  10. raileyb

    return without gosub on new function

    I feel like such a dummy, but I can't get this simple function to work. I wanted to write a function, called Num2Name, that accepts a value, evaluates it, and returns a string based on the number. See below: Public Function Num2Name(ValveNumber) Select Case ValveNumber Case "2"...
  11. raileyb

    overlay transparent background images to form composite image

    Hi, Oh, I wish it was that easy... Yes, all the image objects have 'transparent' as their background style. Thanks anyway though! Brian
  12. raileyb

    how to make treeview toplevel display as an alphabetical index

    I have a treeview that alphabetically displays records, but instead of: + Anderson, Paul + Baker, Mike + Bonner, Terri + Jones, Hal etc. the customer would rather see: + A + B + C etc. and by expanding one of the top levels, only the names that start with that letter would appear. + A - B...
  13. raileyb

    overlay transparent background images to form composite image

    In my form, I have a series of overlayed linked images that combine to form what looks kind of like a dart board, with bands of different colors in different positions. These colors change based on user input and I change the 'look' by setting one band to invisible and another to visible. This...

Part and Inventory Search

Back
Top