I have an application I put on my network so that I can run it from anywhere in the home. I get the attached message. No big deal, but I would like to stop getting it.
Is your program a single program or a project. If it is a project, do you have a resource file with (see below) in it.
1 VERSIONINFO
FILEVERSION 1,4,0,0
PRODUCTVERSION 1,4,0,0
FILEFLAGSMASK 0x00000000L
FILEFLAGS 0x00000000L
FILEOS 0x00000000L
FILETYPE 0x00000000L
FILESUBTYPE 0x00000000L
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Duralien & Associates"
VALUE "Contact e-mail", "billhsln@airmail.net"
VALUE "FileDescription", "PDF_Database.Exe"
VALUE "FileVersion", "1.40"
VALUE "Development Language", "IWBASIC"
VALUE "LegalCopyright", "Copyright© 2015"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 1252
END
END
Having the resource above or one like it might solve the error (not 100% sure), but it at least it might help.
Bill
Bill,
What's the name of the resource file you're speaking of? I'm not up on projects; are there one or more resource file(s) in them?
Bill
Resource is the 3rd option on IWB 3.0s IDE. Only option is ADD.
Bill
Bruce,
Save Bill's versioninfo as a text file to your HD. Use IWB's Add Resource, give it an ID of 1, Type VersionInfo,
then add the file you just saved
It does have to be a Project, though
Brian
I'll give it a try. Thanks.