Search found 32 matches: versioninfo

Return to advanced search

Re: EXE Author's name on Windows 11

Some news. With this VERSIONINFO: VS_VERSION_INFO VERSIONINFO { BLOCK "StringFileInfo" {  BLOCK "040904E4"  {   VALUE "CompanyName", "EMAG Software\0"  ...
by Enrico Maria Giordano
Mon Jul 31, 2023 7:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXE Author's name on Windows 11
Replies: 30
Views: 1200

Re: EXE Author's name on Windows 11

https://devblogs.microsoft.com/oldnewthing/20230503-51/?p=108135 https://learn.microsoft.com/pt-br/windows/win32/menurc/versioninfo-resource Regards, saludos. Yes, from here: https://learn.microsoft.com/pt-br/windows/win32/menurc/versioninfo-resource CompanyName ...
by Enrico Maria Giordano
Sat Jul 29, 2023 6:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: EXE Author's name on Windows 11
Replies: 30
Views: 1200

Re: Manifest

hi Tim, I resolved the VERSIONINFO yesterday, and that manifest works.? fine :D I notice when having winapi.ch in my .rc file, there are a huge list of redefinitions. Is this file still required ? delete it and you will see what happens ...
by Jimmy
Sat Nov 05, 2022 5:52 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1693

Re: Manifest

Thank you. I resolved the VERSIONINFO yesterday, and that manifest works.

I have one more question.

I notice when having winapi.ch in my .rc file, there are a huge list of redefinitions. Is this file still required ?
by TimStone
Fri Nov 04, 2022 5:46 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1693

Re: Manifest

hi Antonio,
Antonio Linares wrote:Only if you include a VERSIONINFO in your RC file

this is what i do
Image
by Jimmy
Thu Oct 27, 2022 9:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1693

Re: Manifest

Dear Jimmy,

> when you look at Property "Details" of EXE can you see "FileDescription" :?:

Only if you include a VERSIONINFO in your RC file
by Antonio Linares
Thu Oct 27, 2022 9:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest
Replies: 22
Views: 1693

Re: incorporar un certificado de confianza en EXE FiveWin

Tambien puedes intentar en tu RC incorporar el recurso VERSIONINFO https://docs.microsoft.com/en-us/windows/desktop/menurc/versioninfo-resource Ejemplo LANGUAGE 0, SUBLANG_NEUTRAL 1 VERSIONINFO FILEVERSION 01,2,19,1 PRODUCTVERSION 01,2,19,0 FILEOS VOS__WINDOWS32 ...
by cnavarro
Fri Feb 15, 2019 10:40 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: incorporar un certificado de confianza en EXE FiveWin
Replies: 10
Views: 2353

Re: funciones de FWH y Harbour en un archivo .txt

__clsVerify(<nClassH>)-><acBrokenMessages>|Nil __objAddData(<oObject>,<cDataName>)->oObject __objAddInline(<oObject>,<cInlineName>,<bInline>)->oObject __objAddMethod(<oObject>,<cMethodName>,<nFuncPtr>)->oObject __objDelInline(&l...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

Re: funciones de FWH y Harbour en un archivo .txt

__clsVerify __objAddData __objAddInline __objAddMethod __objDelInline __objDelMethod __objDelMethod __objDerivedFrom __objGetMethodList __objGetValueList __objModInline __objModMethod __objSetValueList __Pack __Run __Zap AAdd Abs AChoice AClone ACopy ACos AddASCII AddMonth ADel ADir ADSBlob2File ADS...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5627

Re: Manifest for Windows 10

Can I see your changed VersionInfo?

EMG
by Enrico Maria Giordano
Sat Aug 26, 2017 3:14 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Manifest for Windows 10
Replies: 12
Views: 2407

Re: Change to Harbour

Antonio, no effect! This is complete list of functions not found! Error: Nicht aufl÷sbares externes '_HB_FUN_CTOT' referenziert von C:\FWH\LIB\FIVEH.LIB|VALBLANK Error: Nicht aufl÷sbares externes '_HB_FUN_TOLEAUTO' referenziert von C:\FWH\LIB\FIVEH.LIB|HARBOUR Error: Nicht aufl÷sbares externes '_HB_...
by byte-one
Mon Jan 18, 2016 8:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Change to Harbour (SOLVED)
Replies: 11
Views: 2123

Re: Windows 10 version

Antonio Thanks for your work, 6.3 is the windows version code for windows 8 Are you running a real windows 10 version ? From what i read at MSDN BOOL WINAPI IsWindows10OrGreater(void); #include <VersionHelpers.h> … if (!IsWindows10OrGreater()) { MessageBox(NULL, "You need at least Windows...
by Richard Chidiak
Mon Jun 08, 2015 5:32 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 10 version
Replies: 12
Views: 1740

Windows 10 version

How can we detect windows 10 version without mistake ?

Which method is uded

will cWinVersion() return 10 ?

if we use TINFO := OS_VERSIONINFO()

TINFO[1] = 6 .AND. TINFO[2] = 4 // windows 10 ? version 6.4 ?

thanks fo reply

Richard
by Richard Chidiak
Mon Jun 08, 2015 1:17 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Windows 10 version
Replies: 12
Views: 1740

Re: Como saber la version del compilador C

HB_Compiler() Retrieves the version of the C compiler shipped with xHarbour. Syntax HB_Compiler() --> cCompilerVersion Return The function returns a character string holding the name and version of the C compiler shipped with xHarbour. Description Function HB_Compiler() is used to retrieve infor...
by carlos vargas
Wed Dec 04, 2013 3:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Como saber la version del compilador C
Replies: 4
Views: 810
Next

Return to advanced search