Search found 38 matches

by Iris Gesser
Thu Jan 30, 2025 10:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: xBrowse record selector color
Replies: 3
Views: 122

Re: xBrowse record selector color

Dear Natter,

I am not sure if this is what you need.
Mr. Rao once helped me with the colors in xbrowse.
Function MyColors( oBrw )
local aColors := { , }

If (cust->resstatus = "###Cancelled" .and. cust->BOOKINGOK = " ")
aColors := { CLR_BLACK, CLR_STORNO }
else
if ((cust->resstatus ...
by Iris Gesser
Sat Sep 02, 2023 9:14 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Choise : Windows server standard 2022 versus essential 2022
Replies: 23
Views: 3076

Re: Choise : Windows server standard 2022 versus essential 2022

P.S.: You could perform the installation on your existing notebook, and test it within the 3-month grace period - so there would be no expenses for now.
by Iris Gesser
Sat Sep 02, 2023 9:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: Choise : Windows server standard 2022 versus essential 2022
Replies: 23
Views: 3076

Re: Choise : Windows server standard 2022 versus essential 2022

Dear Marc,

I think the prices are about right, with the Server 2019 version likely being a bit cheaper.

We are reducing expenses through the use of "Serverbooks".
For example, we have the following device in continuous use without any issues: HP ProBook 440 G8.
I am aware of the concerns against a ...
by Iris Gesser
Sat Sep 02, 2023 4:57 am
Forum: FiveWin for Harbour/xHarbour
Topic: Choise : Windows server standard 2022 versus essential 2022
Replies: 23
Views: 3076

Re: Choise : Windows server standard 2022 versus essential 2022

Hello,

for our Serverbooks we are using Windows Server Standard 2019 or a higher version with per device licensing.
There are running dozens of servers - we are installing about 2-3 servers/month with this software without having troubles.
Per system we have 5-7 active users who only get ...
by Iris Gesser
Fri Jun 04, 2021 9:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: DOS Error 267)

Dear all,

this was the solution:

function main()
LOCAL CtMP := GETENV( "TMP" )

lMKDir(CtMP)

Kind regards and thank you for the answers!
by Iris Gesser
Fri Jun 04, 2021 5:01 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: DOS Error 267)

Dear community,
I have the same issue with a program. I get "...Create error: TEMP5.cdx...".
Can anyone help me, please? Where do I have to set the permission?
Where is temp5.cdx created.
Thank you in advance and kind regards
Iris
by Iris Gesser
Wed Jan 27, 2021 10:38 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: WebServices Request

I think, the request is done in a really wrong way. Do you think, that the 4 first lines are needed? Because the same information is put in the post...
//REQUEST START    cPost :=      "POST /Services.asmx/PMSVRExport HTTP/1.1" + CRLF ;    cPost := cPost + "Host ...
by Iris Gesser
Wed Jan 27, 2021 9:09 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

WebServices Request

Good evening,

may I ask you for your help?

I have to make a request with webservice to receive a list of guests who had made a precheckin on a website, but unfortunately I am not able to do it.
I can reach the TEST-server:
m
but getting errors that have to do with my request.

It should look like ...
by Iris Gesser
Wed Jul 29, 2020 8:01 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: basic access authentication

Dear Mr. Rao,

it is resolved, thank you very much.
cUserPW := hb_base64encode(cHotelCode+":"+cMsgPassword,len(cHotelCode+":"+cMsgPassword))set date frenchset century onloHyperlink := CreateObject( 'Microsoft.XMLHTTP' )loHyperlink:Open( "POST" ,"https://www ...
by Iris Gesser
Wed Jul 29, 2020 7:32 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: basic access authentication

Dear Mr. Rao,

unfortunately it does not work, but I do not find the error.
I have changed it like this:

loHyperlink := CreateObject( 'Microsoft.XMLHTTP' )loHyperlink:Open( "POST" ,"https://www.korrespondenzmanager.com/betriebe/2710335266647221/index.php", .F. )loHyperlink ...
by Iris Gesser
Tue Jul 28, 2020 11:08 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: basic access authentication

This are the credentials, that I have to use:

https://www.korrespondenzmanager.com/be ... /index.php
Benutzer: wusr90174-01
Passwort: twertz34

Thank you for your help
Iris
by Iris Gesser
Tue Jul 28, 2020 10:56 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

basic access authentication

Dear community,

I am not familiar with basic access authentication.
Ist there a way to post an XML with basic access authentication?
I have tried this code, but I think it is just nonsense....
loHyperlink := CreateObject( 'Microsoft.XMLHTTP' )cHttpSend := [{ "user": ]+hb ...
by Iris Gesser
Tue Mar 03, 2020 8:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xbrowse row colours

I have just tried it, It worked perfectly, thank you, Cristobal!
by Iris Gesser
Tue Mar 03, 2020 6:11 am
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

Re: xbrowse row colours

Thank you!
by Iris Gesser
Mon Mar 02, 2020 10:37 pm
Forum: FiveWin for Harbour/xHarbour
Topic:
Replies: -1
Views:

xbrowse row colours

Dear community,

I have tried to give a row another colour and it worked with this code.

oBrw:bClrStd := { || If( (cust->resstatus = "###Cancelled" .and. cust->guarancode = " "), { CLR_WHITE, CLR_RED }, { CLR_BLACK,CLR_WHITE } ) } //@IA 2020030

How can I integrate another colour for another ...