Search found 208 matches

by codemaker
Tue Dec 01, 2015 9:36 pm
Forum: FiveWin for Harbour/xHarbour
Topic: How to check if a drive exists
Replies: 36
Views: 7523

Re: How to check if a drive exists

Seems that Windows 8 has different logic: FUNCTION GetReadyDrives()       LOCAL aDrives := {}       LOCAL nDrive  := 1       LOCAL nMode   := SetErrorMode(1)       FOR nDrive := 1 TO 26          IF IsDisk( Chr( 64 + nDrive ) )             AAdd( aDrives, Chr( 64 + nDrive ) )          ENDIF       NEXT...
by codemaker
Thu Feb 05, 2015 6:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FTP upload blocked by Firewall
Replies: 8
Views: 2277

Re: FTP upload blocked by Firewall

yes, I also find this by googling, but I am using this which does the job:

netsh firewall add allowedprogram C:\folder1\folder2\someprogram.exe myprog ENABLE

It enters the program in Firewall and I can upload. For now, because it is questionable if it works on all Windows OS.. :(
by codemaker
Thu Feb 05, 2015 5:13 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FTP upload blocked by Firewall
Replies: 8
Views: 2277

Re: FTP upload blocked by Firewall

hmpaquito, Can you please tell me, what exactly is the purpose of this method? Can I use it somehow to catch the problem I have in function oFile:OpenWrite() when uploading to FTP? If so, can you please make a small example I need to be able either to detect if the program is in the Firewall list of...
by codemaker
Thu Feb 05, 2015 11:54 am
Forum: FiveWin for Harbour/xHarbour
Topic: FTP upload blocked by Firewall
Replies: 8
Views: 2277

Re: FTP upload blocked by Firewall

Enrico, I agree absolutely.... What I want is to cut off the number of calls and technical support calls from our clients. The number of people who don't know how to deal with Firewall and practically nothing except the program they use on their everyday job - is huge :( This is the reason I am tryi...
by codemaker
Wed Feb 04, 2015 11:19 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FTP upload blocked by Firewall
Replies: 8
Views: 2277

FTP upload blocked by Firewall

I know that we can add a program to Firewall list and then this program can use FTP to upload the file. Otherwise it cannot. I have a problem because if the Firewall block the program to do a FTP, it doesn't always show the screen which informs the user about the block and even offer to automaticall...
by codemaker
Fri Jun 13, 2014 3:02 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24916

Re: FiveWeb (FiveWin days are numbered)

Dear Boris / Laiton, I understand the documentation is not complete. Would it be possible to post source code that has been successfully implemented by both of you? Of course without providing information about your project and/or customer? I am sure all of the interested developers will jump on an...
by codemaker
Tue Apr 29, 2014 1:17 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24916

Re: FiveWeb (FiveWin days are numbered)

The only big problem with FiveWeb is the missing documentation. Because I am finishing one huge project using Fiveweb, I went through all the aspects of FiveWeb and learned all the tricks needed, I promissed Lailton I will write the help file /documentation. For all controls and methods used. I know...
by codemaker
Mon Apr 21, 2014 12:20 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24916

Re: FiveWeb (FiveWin days are numbered)

Today I'm reconfiguring one of my laptops and I installed IIS on Windows 7 so I decided to show here an older version of my FiveWeb based project. Keep in mind that this is far from the current version, but it will serve to show at least part of Fiveweb capabilities. I don't want to show the current...
by codemaker
Thu Apr 17, 2014 7:55 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24916

Re: FiveWeb (FiveWin days are numbered)

Hi Darrel, I am not using mySql yet. But, as far as I know Fiveweb connects to MySql without problem and according to the samples Lailton provided there is no problem wit MySQL. He suggests Dolphin. I am finishing the app which will work on Windows environment for now. If I write the app which works...
by codemaker
Thu Apr 17, 2014 5:51 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FiveWeb (FiveWin days are numbered)
Replies: 70
Views: 24916

Re: FiveWeb (FiveWin days are numbered)

Boris, The screen shots are great. Is Paysoft a client of yours? They used to be a client of mine a number of years ago. I haven't seen that name in a long time. I notice that the web demo is not running on Paysoft's website. James :) The same year you did some code for them, I started to work for ...
by codemaker
Thu Apr 17, 2014 9:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4848

Re: FastReport, variables from PRG in FR3 file

ShumingWang wrote:codemaker,
Could you Email me your .fr3 file to me ,so to check .
Email: 100200651@qq.com .

Shuming Wang
Sent!
Thank you
Boris
by codemaker
Tue Apr 15, 2014 8:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4848

Re: FastReport, variables from PRG in FR3 file

The problem I discovered tonight is: 1. If I start a new report and have it blank at the beginning, I can do [GetHbVar('ccLastLine')] anywhere on the blank report inside the Text field and it shows the content opf the variable 2. If I already have some report designed, I cannot put the [GetHbVar('cc...
by codemaker
Mon Apr 14, 2014 7:50 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4848

Re: FastReport, variables from PRG in FR3 file

Unfortunatelly same problem... If I enter into text field on FR3: [GetHbVar('cclastLine')] the error is this http://i65.photobucket.com/albums/h235/codemaker_bg/e1.jpg If I enter into text field on FR3 : [GetHbVar(cclastLine)] the error is this http://i65.photobucket.com/albums/h235/codemaker_bg/e2....
by codemaker
Mon Apr 14, 2014 6:31 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4848

Re: FastReport, variables from PRG in FR3 file

Sorry, I am not sure I understand what you mean?
by codemaker
Mon Apr 14, 2014 5:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: FastReport, variables from PRG in FR3 file
Replies: 17
Views: 4848

Re: FastReport, variables from PRG in FR3 file

Thany to both of you for trying to help. Neither method suggested works for me :( Is there some specifric position of the variable defined and assigned in a program? I test this way: ccLastLine := "AAAAAAAAAAA" //cLastLine //  ccLastLine+= CRLF // If we need to design!! //-----------------...