Search found 129 matches
- Mon Jan 25, 2021 10:18 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: CreateObject( "MSXML2.XMLHTTP" )
- Replies: 33
- Views: 58654
Re: CreateObject( "MSXML2.XMLHTTP" )
My clients haven't used Windows XP in a long time. I remember that some methods didn't work correctly, so I used the winhttp.winhttprequest.5.1 class. Try it like this: If Os_IsWinXp() oServer := CreateObject( "winhttp.winhttprequest.5.1" ) Else oServer := CreateObject( "MSXML2....
- Thu Jan 21, 2021 1:08 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: CreateObject( "MSXML2.XMLHTTP" )
- Replies: 33
- Views: 58654
Re: CreateObject( "MSXML2.XMLHTTP" )
In some versions of windows as an example: SEVEN SP1 and XP I solved the problem including SETTIMEOUTS.
Code: Select all
oServer := CreateObject( "MSXML2.ServerXMLHTTP.6.0" )
oServer:SetTimeouts(40000,40000,40000,40000)
- Thu Jan 21, 2021 12:31 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: CreateObject( "MSXML2.XMLHTTP" )
- Replies: 33
- Views: 58654
Re: CreateObject( "MSXML2.XMLHTTP" )
In several cases when sending content the correct POST would be
Try like this:
ohttp:Open( "POST" ,"http://www.w3schools.com/angular/customers.php", .F. )
Try like this:
ohttp:Open( "POST" ,"http://www.w3schools.com/angular/customers.php", .F. )
- Thu Jan 14, 2021 3:45 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: CMIMEENC (pdf-file to mime)
- Replies: 1
- Views: 869
Re: CMIMEENC (pdf-file to mime)
Use
cResult := Hb_base64Encode(Hb_MemoRead('C:\Users\Marc\Documents\Factuur 20210005.pdf'))
cResult := Hb_base64Encode(Hb_MemoRead('C:\Users\Marc\Documents\Factuur 20210005.pdf'))
- Mon Jun 22, 2020 1:38 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Snippets of fivewin commands for VsCode
- Replies: 3
- Views: 906
Re: Snippets of fivewin commands for VsCode
Hi Otto. I am only 2 months using VsCode. These Snippets were converted from the UeStudio templates I used. An advantage that VsCode has that you can put other snippets in charge. Ex: in this case I have the color definitions that are in _FwD_ColorsT. When you have the cursor on it, press CTRL + Spa...
- Sun Jun 21, 2020 8:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Snippets of fivewin commands for VsCode
- Replies: 3
- Views: 906
Snippets of fivewin commands for VsCode
Hi guys. I created a snippets file (code snippets) with fivewin commands. https://i.ibb.co/P9yw6w1/Anota-o-2020-06-21-100244.png To include in your VsCode read the pdf file referring to the links below: https://easyupload.io/m215wo https://www.dropbox.com/s/h4bxaga1g3oex80/Fivewin_Snippets.zip?dl=0
- Thu Apr 30, 2020 1:51 am
- Forum: FiveWin para Harbour/xHarbour
- Topic: Demostración de Object Manager for Fivewin / Harbour
- Replies: 2
- Views: 723
Re: Demostración de Object Manager for Fivewin / Harbour
Como hay varias personas preguntando cómo activar los comandos del Object Manager y no lo entendieron, escribiré aquí. Para activar las partes relacionadas con clases y objetos SHIFT+CTRL+F12 Para activar la parte Functions SHIFT+CTRL+F11 Si desea vincular una variable de objeto a una clase Ex: Vari...
- Wed Apr 29, 2020 12:33 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Demostración de Object Manager for Fivewin / Harbour
- Replies: 2
- Views: 723
Demostración de Object Manager for Fivewin / Harbour
Hola, gente. He estado trabajando en una forma de administrar mis proyectos por un tiempo. Antes de trabajar en un proyecto llamado RAIOX, que yo mismo consideraba un fracaso. Hace aproximadamente 2 años y medio decidí diseñar de nuevo y comencé el proyecto Object Manager. Confieso que todavía falta...
- Wed Jan 29, 2020 7:24 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Check keyboard buffer without the program being in focus
- Replies: 1
- Views: 562
Check keyboard buffer without the program being in focus
I have a program running on Tray and I am trying to check for a key combination that may be pressed. Example: Pressing CTRL + J The problem is that the program is minimized in the tray. the CTRL key I can check with GETKEYSTATE plus the letter J key only with LastKey (), but it works if the program ...
- Fri Jan 17, 2020 7:33 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: UE Studio Config - Harbour 3.0, MSVC, FWH
- Replies: 52
- Views: 17729
Re: UE Studio Config - Harbour 3.0, MSVC, FWH
Best skype chat
Skype giovany.vecchi
Skype giovany.vecchi
- Thu Jan 16, 2020 3:26 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: UE Studio Config - Harbour 3.0, MSVC, FWH
- Replies: 52
- Views: 17729
Re: UE Studio Config - Harbour 3.0, MSVC, FWH
Hi Vilian The Harbour.uew file you define in the project in wordfiles. https://i.postimg.cc/gLHj2KgR/SH-02-Jan-16-12-17.jpg It is the global template file you edit the file and paste the contents of UETMPLTE.TPL that is on 7z or replace it with uestudio. https://i.postimg.cc/gLWrp7Hm/SH-01-Jan-16-12...
- Thu Jan 16, 2020 12:40 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: UE Studio Config - Harbour 3.0, MSVC, FWH
- Replies: 52
- Views: 17729
Re: UE Studio Config - Harbour 3.0, MSVC, FWH
For years I created a UEW the way I wanted. Most to work you have to follow some rules in the prgs source code. The problem that occurs in uestudio is the delimited folders. As harbor language follows a style of exit procedure with random RETURNS, you will have to follow these rules. Following in th...
- Wed Jan 15, 2020 12:21 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: UE Studio Config - Harbour 3.0, MSVC, FWH
- Replies: 52
- Views: 17729
Re: UE Studio Config - Harbour 3.0, MSVC, FWH
Yes, enter as many commands as you like Edit APPLICATION [Build] Out = $T Depends = $FGO $FGR DebugFlag = ReleaseFlag = Cmd0 = CMD /C DelDepend.bat Cmd1 = ilink32 $(LOPT) $(Bcc_Dir)\LIB\c0w32.obj $FGO, $T,, $(LIBS),, $FGR Cmd2 = $(Working Directory)\upx.exe -1 --compress-icons=0 -o$(Working Directo...
- Wed Nov 20, 2019 4:59 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change text color and background of tRadio
- Replies: 10
- Views: 1335
Re: Change text color and background of tRadio
I did not make it.Have you managed to solve the 3D effect?
I noticed that even putting at the beginning of the program the option Set3dLook (.F.) OR .T., Does not change anything.
- Wed Nov 20, 2019 4:11 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Change text color and background of tRadio
- Replies: 10
- Views: 1335
Re: Change text color and background of tRadio
Thank you Navarro. We have to show that Fivewin is beyond what we think we can do.cnavarro wrote:Giovany, Your design is very good, congratulations
Via Activex Integration
Other controls