Search found 5 matches: sender

Searched query: sender

by ShumingWang
Tue Nov 05, 2024 3:11 am
Forum: FiveWin for Harbour/xHarbour
Topic: How to add 2d barcode to fastreport or fwh/harbour?
Replies: 7
Views: 941

Re: How to add 2d barcode to fastreport or fwh/harbour?

... net/projects/zint/files/zint/
New version is 2.13
1.2
fastreport--page: image type cell -- Code page:

procedure Picture12OnBeforePrint(Sender: TfrxComponent);
begin
callhbfunc('fr3img3',[trim(<masterdata."model">)+',sub']) ;
LoadImageFromHbVar(Picture1,'fr3img');
end;

// "model ...
by karinha
Fri Aug 16, 2024 7:11 pm
Forum: FiveWin for Harbour/xHarbour
Topic: OLE Errors
Replies: 10
Views: 2338

Re: OLE Errors

Is outlook set as the DEFAULT E MAIL SENDER? Manually, is it sending correctly?

Regards, saludos.
by Otto
Sat Aug 10, 2024 9:41 am
Forum: mod_harbour
Topic: Presentando Harbour websocket server
Replies: 10
Views: 7595

Re: Presentando Harbour websocket server

... the WSS is not forwarding the messages to the connected clients.
The server only responds to received messages and sends back to the original sender.

I wanted to make changes, but I'm missing files: hbmk2: Error: Referenced, missing, but unknown function(s): HB_SOCKETISOPEN(),
AP_FILENAME ...
by Jorge Jaurena
Wed Jun 05, 2024 1:49 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 853

Re: Ayuda con DLL

... te copio el ejemplo porque quizas hay algo que no estoy viendo.

/// EJEMPLO EN VB ///
'PumpStatus()
Private Sub btn_PumpStatus_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btn_PumpStatus.Click
Dim c_Fusion As New FusionClass.Fusion()
c_Fusion.Connection(FusionIP ...
by MarcoBoschi
Thu Apr 06, 2023 2:40 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Send sms POST
Replies: 4
Views: 466

Send sms POST

... 9999999' \
--header 'Access_token: TOKENALFANUMERICO' \
--header 'Content-Type: application/json' \
--data '{
"recipient": [
"+393123456789"
],
"message": "Ths is a Test",
"sender": "MarcoBoschi",
"message_type": "n"
}'

How can I launch this command from a fivewin program?

Many Thanks to all
Marco