Search found 58 matches

by andykmv
Oct 27, 2023 7:38
Forum: Projects
Topic: commandline zip packer / unpacker util using libzip
Replies: 2
Views: 1471

Re: commandline zip packer / unpacker util using libzip

some good stuff there - especially the time stuff i am trying to nut out - when using zip_stat_index - translating the timestamp of the file in zip to a useable datatype would have taken a bit of nutting out; thankfully you have already beaten that one :D when i am finished hacking away i'll add som...
by andykmv
Oct 27, 2023 7:27
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 979
Views: 343952

Re: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)

Hi! i am having an odd issue withe the 3.1.- release i am using (and it could be just me that is odd!) i did a search here and couldnt find a related issue/bug/feature when i have my project open, with edit window, files pane to the left and open files as tabs above, and i am using the laptop with a...
by andykmv
Oct 07, 2023 21:39
Forum: Beginners
Topic: LibZip libraries and include files
Replies: 6
Views: 1803

Re: LibZip libraries and include files

andykmv to make the import lib look at this post https://www.freebasic.net/forum/viewtopic.php?p=292174&hilit=dlltool#p292174 for the bi file generation I use FBfrog https://github.com/dkl/fbfrog , quite often you will need to edit the generated bi to get it working many thanks again, have had ...
by andykmv
Sep 30, 2023 3:01
Forum: Beginners
Topic: LibZip libraries and include files
Replies: 6
Views: 1803

Re: LibZip libraries and include files

srvaldez wrote: Sep 29, 2023 1:21 hello andykmv :)
here's the latest libzip https://u.pcloud.link/publink/show?code ... e7XQOPNqAX
it includes the latest bi and two very simple examples
files downloaded 8)
by andykmv
Sep 30, 2023 2:59
Forum: Beginners
Topic: LibZip libraries and include files
Replies: 6
Views: 1803

Re: LibZip libraries and include files

@srvaldez, you're a champion! many thanks :D in the meantime i have been investigating compiling libzip, zlib, zstd and see what i can get. so far i have installed cygwin ,visual studio 2022, cmake (did a little reading on cmake tutorials to start getting my head around cmake list files) and managed...
by andykmv
Sep 27, 2023 21:25
Forum: Beginners
Topic: LibZip libraries and include files
Replies: 6
Views: 1803

LibZip libraries and include files

[edited] hi all, I am working on some code to scan my filesystems for .zip files and create an index of the zip files, their location and all files contained within along with key attributes including date, time, size & CRC-32 value. LibZip looks like the ideal library to use to query the conten...
by andykmv
Mar 20, 2020 3:12
Forum: Beginners
Topic: Need help with passing a parameter
Replies: 5
Views: 1472

Re: Need help with passing a parameter

Subs are procedures that don't return values. need to use functions

some extra help starting here:
https://www.freebasic.net/wiki/wikka.ph ... Procedures
by andykmv
Nov 06, 2019 6:27
Forum: Projects
Topic: WinFBE Editor and FreeBASIC Compiler (All-in-One Package) (V3.1.0 June 4, 2023)
Replies: 979
Views: 343952

Re: WinFBE FreeBASIC Editor for Windows (Updated August 23, 2017)

compiling FAILED: Error Code 1 Failed Compile (Errors 2 Warnings 0 [2019-11-04 04:00:37]) Command Line: C:\Users\fxmam\Documents\Mes Outils Personnels\WinFBE_Suite\FreeBASIC-1.07.1-gcc-5.2\fbc32.exe -m "C:\Users\fxmam\Documents\Mes Outils Personnels\WinFBE_Suite\TMPCD5A.bas" "" ...
by andykmv
Nov 01, 2019 23:35
Forum: Community Discussion
Topic: How to add new features? (syntax, user API)
Replies: 53
Views: 7850

Re: How to add new features? (syntax, user API)

From a purely technical point of view and common sense, I share for my part quite the point of view expressed by CoderJeff. More generally, however, I think that the idea of "user defined keywords" (UDKs), in the same way that there are UDTs, is not necessarily irrelevant, but only from t...
by andykmv
Oct 25, 2019 1:37
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

MrSwiss wrote:Sorry, but it won't work because:
#IFDEF __FB_WIN64__ not existing! currently, in the compiler,

you'll have to use:
either: #IFDEF __FB_WIN32__ (testing for WIN, any bitness) or:
#IFDEF __FB_64BIT__ (testing for FBC 64)
to make your preprocessor code working correctly.
thanks for the tip!
by andykmv
Oct 24, 2019 7:22
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

ok, i could setup the #IFDEF __FB_LINUX__ around your code segment, then use #IFDEF __FB_WIN64__ around new code including the "netsh wlan show networks" command &massage output into nmcli output format then put the resulting data back into the relevant variable to continue processing ...
by andykmv
Oct 22, 2019 2:33
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

ok, trying the "suck it and see" method. :^) thanks for the additional tips - i have started re-reading the thread next step is get kasa working - having an issue with kasa at the moment - for some reason can't select country but have only spent a few min on it - or was that mins ? :^) onc...
by andykmv
Oct 20, 2019 3:09
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

windows 8.1 pro comand: netsh wlan show networks Interface name : Wi-Fi There are 3 networks currently visible. SSID 1 : TP-LINK_Smart Plug_1A11 Network type : Infrastructure Authentication : Open Encryption : None SSID 2 : andy Network type : Infrastructure Authentication : WPA2-Personal Encryption...
by andykmv
Oct 20, 2019 2:15
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

ok changed the readfile to readfiles, min to mins and also removed the resource file fblogo.rc from the fbc compile options. result: compiled successfully. thanks for the tips on the readfile and min names as it would have taken a while to find that. had a similar issue in a program of mine a year o...
by andykmv
Oct 19, 2019 7:43
Forum: Hardware Interfaces / Communication
Topic: TP-Link HS110
Replies: 159
Views: 50685

Re: TP-Link HS110

thanks! downloaded and attempted compile with 1.05.0 wi-64 - my script: set cp="r:\data_papps\freebasic\lib" set sp="R:\Data\Test\hs110" set bp="R:\Data\Test\hs110" R:\data_papps\FreeBASIC\fbc -target win64 -v %sp%\tplink.bas fblogo.rc -x %bp%\tplink.exe and got this: F...