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...
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
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[]...
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...
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
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'...
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...
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
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"...
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...
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...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.