Search found 83 matches

by FWExplorer
Mon Jun 15, 2020 3:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement PeekStr()
Replies: 16
Views: 1550

Re: How to implement PeekStr()

Hi Antonio, The ValType returns a "U". But in the debugger, it's interpreted as an "N", e.g. 7258044 Lib_h := hb_libLoad ("INT386W.DLL") IF !Empty (Lib_h)     ? "INT386W.DLL loaded!"     Prolog_Id_n := hb_DynCall ( {"LoadProlog", Lib_h, HB_DYN_CALLCO...
by FWExplorer
Mon Jun 15, 2020 1:22 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to implement PeekStr()
Replies: 16
Views: 1550

How to implement PeekStr()

Hi, I've been struggling more than a week, with trying to a get a string from a pointer returned from a DLL. I can't get a straight answer, in any of the forums. There doesn't seem to be a specific example that's relevant. CallGoal is a Prolog function that returns a pointer to a string Result_call ...
by FWExplorer
Tue Nov 19, 2019 10:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Sales question for 16/32/64 bit, Windows & Linux, and Droid
Replies: 4
Views: 508

Re: Sales question for 16/32/64 bit, Windows & Linux, and Droid

Hi C Navarro, I have both Windows 10 and XP desktops, and I use both of them, for different purposes. What about the most recent 16 bit version? I also work in Freedos. I was looking at the product picklist again. Are all of these covered by the FTDN license? I think I purchased one way back, but ha...
by FWExplorer
Tue Nov 19, 2019 5:43 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Sales question for 16/32/64 bit, Windows & Linux, and Droid
Replies: 4
Views: 508

Sales question for 16/32/64 bit, Windows & Linux, and Droid

Hi, I don't see an All Products forum in English, so am posting this question here. If we haven't purchased Fivewin in over 10 years, what product should we select if we wanted 1. The most recent 16-bit 5.2 FW 2. The most recent 32 bit Harbour FWH, both Windows and Linux 3. The most recent 64 bit Ha...
by FWExplorer
Mon Aug 19, 2013 3:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tlex - does it handle embedded strings?
Replies: 3
Views: 740

Re: Tlex - does it handle embedded strings?

Oops, I made a mistake, in posting this as the desired result: cWelcomeMessage := "Hi" "Welcome to Fivewin" "friend!" Should be cWelcomeMessage := "Hi" "Welcome to Fivewin, friend!" , and aTokens := hb_ATokens( sParseString, " ", .T. ) does...
by FWExplorer
Mon Aug 19, 2013 10:27 am
Forum: FiveWin for Harbour/xHarbour
Topic: Tlex - does it handle embedded strings?
Replies: 3
Views: 740

Re: Tlex - does it handle embedded strings?

So we embed everything, including the double-quoted string, in single quotes. Ok, sounds good, thanks Antonio.
by FWExplorer
Sun Aug 18, 2013 10:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Tlex - does it handle embedded strings?
Replies: 3
Views: 740

Tlex - does it handle embedded strings?

Hi, Does the TLex object handle things like embedded strings? E.g. with the proper delimiters/tokens/ids, can it understand the 5 terminals from cWelcomeMessage := "Hi, Welcome to Fivewin, friend!" as cWelcomeMessage := "Hi" "Welcome to Fivewin" "friend!" or ?...