Search found 47 matches: grab

Return to advanced search

Re: What is the best PDF Printer Driver Windows to use with Five

... You can probably create a subclass to the Printer program that allows you to bypass the Preview viewer as a print option, and just produce and grab the PDF and auto attach it to an email. You can also do things like have selectable scripts for your email ( templates ). If you are using FWH ...
by TimStone
Wed Jan 25, 2023 11:07 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: What is the best PDF Printer Driver Windows to use with Five
Replies: 11
Views: 794

Re: MDI child window appearance

Or we could run your VB EXE, grab its window handle and manage it from FWH...
by Antonio Linares
Fri Dec 23, 2022 8:19 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: MDI child window appearance
Replies: 50
Views: 4130

Re: Does anyone have a json reader

... will be the identifier, and the second column the value. When you receive the Json responses, those identifiers will be consistent, so you can grab just the ones you want out of each reply. Of course, make sure you initialize the variables first to empty values so if nothing is returned, you ...
by TimStone
Wed Nov 09, 2022 6:12 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Does anyone have a json reader
Replies: 7
Views: 713

FWForum Post and code grabber

I'm making a smal program that will hold all information that is usefull for me. I read all sample functions, but i also want to grab some posts and code from the forum. We have already a global forum grabber, but for this I want a topic grabber. Sample code from the forum that I would ...
by Marc Venken
Thu Sep 29, 2022 8:25 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWForum Post and code grabber
Replies: 14
Views: 803

Re: Mr. Rao's samples collection.

hi,

have finish 1st Version which will work with FiveWin Forum to "grab" all Message and CODE

btw. FiveWin CODE include HTML Code which i try to "strip"

you will find it here in HMG Forum
http://www.hmgforum.com/viewtopic.php?f=5&t=7281
by Jimmy
Mon Aug 15, 2022 8:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao's samples collection.
Replies: 139
Views: 20841

Re: cGetFile32() about traditional Chinese characters

... it, it won't work. I can't test here, it's in Chinese, and Windows in Portuguese doesn't provide Chinese characters. If I understand, you want to grab a .TXT file and Write to D:\..., but the logic is wrong. Also test like this: #Include "FiveWin.ch"REQUEST HB_CODEPAGE_BIG5REQUEST HB_CODEPAGE_UTF8MEMVAR ...
by karinha
Thu Nov 25, 2021 6:10 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile32() about traditional Chinese characters
Replies: 11
Views: 836

Re: Installation of mod_harbour as module or fastcgi handler

Christoph,

Are you using a SSD drive ?

ace64.dll can't be freely redistributed so I guess there is no other option except run the installer they provide and later grab what you may need
You only need it if you plan to use ADS. If not, then you have the install the mod_harbour that does not use ADS.
by Antonio Linares
Sat May 22, 2021 4:46 pm
 
Forum: mod_harbour
Topic: Installation of mod_harbour as module or fastcgi handler
Replies: 27
Views: 2888

cGetFile( )

... application and QuickBooks. I'm trying to update some old code that no longer works ... and I suppose there is a flag I need to set to allow me to grab this file. IN Quickbooks, it is already set in multi-user mode so this should be allowable. Your thoughts will be appreciated. Tim
by TimStone
Fri Feb 12, 2021 12:31 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: cGetFile( )
Replies: 2
Views: 382

Re: Preview in Terminal Server does not look good - Antonio Help

Carlos,

FWH preview creates metafiles.

If you could grab some of them from the created ones at the Windows Server and open them in your PC, we could check if the problem comes from the metafiles
and find the difference.
by Antonio Linares
Sun Feb 09, 2020 7:22 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Preview in Terminal Server does not look good - Antonio Help
Replies: 10
Views: 1750

Re: Using a Jpg instead of a Bitmap for Opening screen Graphics

I use a file lookup, then save the path in a data field. On startup, I grab the file path in a memory variable, then use:
DEFINE BRUSH oWinBrush FILE cScrWin

Then I use:
DEFINE WINDOW oWnd TITLE mlsTitle FROM 0,0 TO 1030, 1740 PIXEL BRUSH oWinBrush MENU oMenu

It works perfectly.
by TimStone
Mon Nov 19, 2018 12:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Using a Jpg instead of a Bitmap for Opening screen Graphics
Replies: 9
Views: 2652

Macro

... but I will give it a shot... I am importing data from many different medical systems. I have a config file that let's me setup start/end points to grab data, something like: <STARTDATE>10/10/2017</STARTDATE> <STARTTIME>11:49AM</STARTTIME> Some systems will have the data ...
by Jeff Barnes
Fri Nov 17, 2017 1:41 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Macro
Replies: 2
Views: 610

Test to see if text is in column 1

I have a text string that I grab from a Memo field. What I need to do is find out if certain text in that string is located in the first column of whatever line it may appear in. Example of the text: >> Hello, this is a TEST. This ...
by Jeff Barnes
Fri Sep 08, 2017 2:05 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Test to see if text is in column 1
Replies: 3
Views: 563

Text File (SOLVED)

... is separated into individual lines. This is what I am looking to get via code. Does anyone know how I can do this conversion? I want to be able to grab data via MemoLine() to get to the data I need. Here is a sample of the text file (.asc) if anyone needs to see what I'm tallking about; http://www.can-soft.net/dlnew/test.asc
by Jeff Barnes
Tue May 30, 2017 11:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Text File (SOLVED)
Replies: 3
Views: 524

Drag line to xBrowse

Hi, all !

Is it possible to xBrowse to grab the line with your mouse and drag it to its new position ?
by Natter
Thu Apr 13, 2017 2:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Drag line to xBrowse
Replies: 2
Views: 534

FWH app as Service

... different apps that I need to run as a service. Two of them work perfectly. The third however will not function correctly. The first two simply grab data from a text file and insert the data into a dbf. The third app is trying to create a PDF using the built-in FWH Report (Report oReport.....) ...
by Jeff Barnes
Fri Mar 24, 2017 3:51 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH app as Service
Replies: 17
Views: 3700
Next

Return to advanced search