IonicWind Software

IWBasic => General Questions => Topic started by: Bruce Peaslee on July 31, 2015, 09:58:39 AM

Title: Intranet Warning
Post by: Bruce Peaslee on July 31, 2015, 09:58:39 AM
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.
Title: Re: Intranet Warning
Post by: billhsln on July 31, 2015, 10:10:51 AM
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
Title: Re: Intranet Warning
Post by: Bill-Bo on July 31, 2015, 04:26:06 PM
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
Title: Re: Intranet Warning
Post by: billhsln on July 31, 2015, 04:36:52 PM
Resource is the 3rd option on IWB 3.0s IDE.  Only option is ADD.

Bill
Title: Re: Intranet Warning
Post by: Brian on August 01, 2015, 06:38:37 AM
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
Title: Re: Intranet Warning
Post by: Bruce Peaslee on August 01, 2015, 09:24:39 AM
I'll give it a try. Thanks.