Search found 83 matches

by FWExplorer
Tue Feb 09, 2021 6:00 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

Re: how to add libraries to the buildh.bat file

No. Twitter.prg, in the samples folder.
by FWExplorer
Tue Feb 09, 2021 3:58 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

Re: how to add libraries to the buildh.bat file

It compiled correctly. Unfortunately, the line      aMatch  = HB_RegExAll( 'form action="(.*?)" method="(.*?)"', cPage, .F., .T. )   doesn't do anything. aMatch is empty afterwards, and then of course there's an array error on the next line      cURL    = aMatch[ 1 ][ 2 ]  
by FWExplorer
Mon Feb 08, 2021 7:54 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

Re: how to add libraries to the buildh.bat file

I'm pretty sure I extracted the Fivewin build a few months ago.

But I'll give it a shot, thanks.
by FWExplorer
Mon Feb 08, 2021 2:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

Re: how to add libraries to the buildh.bat file

Got further, but there's still some missing externals Error: Unresolved external '_curl_global_init_mem' referenced from C:\HARBOUR\LIB\HBCURL.LIB|core Error: Unresolved external '_curl_global_cleanup' referenced from C:\HARBOUR\LIB\HBCURL.LIB|core Error: Unresolved external '_curl_formfree' referen...
by FWExplorer
Mon Feb 08, 2021 10:04 am
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

Re: how to add libraries to the buildh.bat file

Ok, thanks Antonio.

Regards,
by FWExplorer
Sun Feb 07, 2021 10:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: how to add libraries to the buildh.bat file
Replies: 11
Views: 9249

how to add libraries to the buildh.bat file

Hi, I'm getting missing externals from twitter, which I believe are found in libcurl.lib, in the harbour distribution. What's the official way to add specific contribution libraries to buildh.bat? When I try compile twitter.prg, the externals are Compiling... Harbour 3.2.0dev (r2008190002) Copyright...
by FWExplorer
Thu Jan 07, 2021 12:09 am
Forum: FiveWin for Harbour/xHarbour
Topic: WaitUntil - batch command replacement for scheduler
Replies: 8
Views: 1878

Re: WaitUntil - batch command replacement for scheduler

Looks good, I'll put it through its paces, thanks. This works for me. waituntil.prg #include "fivewin.ch" function Main()    local cDay  := HB_ARGV( 1 )    local nSec  := TIMETOSEC( HB_ARGV( 2 ) )    local n    do while !( CDOW( Date() ) = cDay )       Sleep( ( 86401 - Seconds() ) * 1000 )...
by FWExplorer
Tue Jan 05, 2021 11:33 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WaitUntil - batch command replacement for scheduler
Replies: 8
Views: 1878

Re: WaitUntil - batch command replacement for scheduler

Hi Antonio, This is what I was (unsuccessfully) trying to describe. https://raw.githubusercontent.com/HBEnthusiast/FW/main/WaitUntil.prg The executable WaitUntil.exe is also on that hub. I haven't fully tested it in more than 4 circumstances yet, but the syntax is WaitUntil <Day> <Time> So, in order...
by FWExplorer
Tue Jan 05, 2021 9:23 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WaitUntil - batch command replacement for scheduler
Replies: 8
Views: 1878

Re: WaitUntil - batch command replacement for scheduler

Thanks Antonio, But unfortunately, it's not exactly what I'm trying to build. Anyway, I'm very close. I'll share the code shortly. D. You can build it using FWH this way: example of use (from cmd.exe) tarry 21:26 tarry.prg #include "FiveWin.ch" function Main( cTime )    if cTime != nil    ...
by FWExplorer
Tue Jan 05, 2021 11:07 am
Forum: FiveWin for Harbour/xHarbour
Topic: WaitUntil - batch command replacement for scheduler
Replies: 8
Views: 1878

Re: WaitUntil - batch command replacement for scheduler

Unfortunately, it doesn't address the specification of a specific time. These are just variations of timeout, where you specify the number of seconds. I'd want a child program or batch to run, e.g. at 11:15 am, regardless of when the parent calling batch starts. So we don't know the number of second...
by FWExplorer
Mon Jan 04, 2021 9:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: WaitUntil - batch command replacement for scheduler
Replies: 8
Views: 1878

WaitUntil - batch command replacement for scheduler

I'd like to take some of the applications in the office out of the Windows Scheduler, and just put it in a batch file that waits until a specified time. I already use Timeout for certain tasks. And there are variations of this, out on the web. But I haven't found anything like a WaitUntil command. I...
by FWExplorer
Wed Dec 30, 2020 9:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Debugger error when executing WebPageContents()
Replies: 5
Views: 940

Re: Debugger error when executing WebPageContents()

oHttp:Status Ok, thank you self. You're welcome, self. Happy Holidays & Regards, Self I don't have the original code from last night, and I'm not getting the same error right now. Not sure what changed. I was originally sending the command line http:\\www.google.com, with backslashes. Maybe that...
by FWExplorer
Wed Dec 30, 2020 3:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Debugger error when executing WebPageContents()
Replies: 5
Views: 940

Re: Debugger error when executing WebPageContents()

I don't have the original code from last night, and I'm not getting the same error right now. Not sure what changed. I was originally sending the command line http:\\www.google.com, with backslashes. Maybe that generated the error. I think we're ok, now. How do I get a response return code, like 200...
by FWExplorer
Wed Dec 30, 2020 2:24 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Debugger error when executing WebPageContents()
Replies: 5
Views: 940

Debugger error when executing WebPageContents()

This is not a support question. I'm not having a problem using the function during runtime. Everything is fine. But during a debugging of WebPageContents(), there's an error which I believe is due to an interpretation of the escape sequence \". The title of the error popup is in spanish, and is...