Page 4 of 5

Re: FiveWeb (FiveWin days are numbered)

Posted: Fri Apr 18, 2014 8:48 pm
by Marco Turco
Hi Lailton,
me too am very interested in a running FiveWeb library with a decent compatibility with FWH/xHarbour.

There are some turnaround to put FWH/xHarbour apps on the Cloud at the moment (eg. Citrix etc.)
but as ANY mid/large-scale FWH developer know, there isn't a commercial future for a FWH app without a real Cloud moving.
I develop software in UK and here the Cloud apps have been a killer application for the "old style" standalone apps,
luckly I sell my software to the less developed south of Europe countries but the way is clear :shock: :shock: :shock: :shock:

Keep the forum user updated please and pls. let me know if I can help in some way.

Re: FiveWeb (FiveWin days are numbered)

Posted: Fri Apr 18, 2014 9:06 pm
by Lailton
Thanks Marco,
All the Help and Support will be welcome :D

Re: FiveWeb (FiveWin days are numbered)

Posted: Sat Apr 19, 2014 6:34 am
by Antonio Linares
Lailton,

I am ready to help in case that you want us to join efforts :-) (as you commented me by email)

Re: FiveWeb (FiveWin days are numbered)

Posted: Sun Apr 20, 2014 8:34 am
by elvira
Antonio ,

Great News!!!!.

Customers are demanding more and more to do, at least via web/ cloud, to add/ view / edit an invoice or a quotation using the same screen as in the desktop mode as Boris showed on his pictures.

And alternTernatives such Citrix or Terminal Server are quite expensive and they need Cal licenses for each user...

Hope Fiveweb works!!! ;)

Re: FiveWeb (FiveWin days are numbered)

Posted: Mon Apr 21, 2014 12:20 pm
by codemaker
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, almost finished version because it contains some sensitive info about companies and Employees.
But in any case, the link shows the working app and you can get an impression how and what Fiveweb can do.

The login form is "nailed" to one login and one company data, for testing purposes. Just hit enter
Then tray not to change to much data while checking the app. I suggest you to explore the menu options and dialogs functionality

The laptop which this IIS and app is on is a small slow laptop, so do not expect any lighten speed. I tested the final app on some server with i7 processor and a lot of memory and upload speed on my personal server of 4/Mbps and the app runs very fast and good. Of course if the client internet speed is not fast enough, the result will be slower.

The IIS is Windows 7 IIS.
I can disable the IIS and run Vertrigo server and the same functionality achieved.
It uses DBF

If you want to try Fiveweb and FastReport, then try "Hours Report" report from "Reports" menu option. Keep in mind that only the data from 2013 year exists in this testing environment files. Also to see the printouts by FR, check the "Employees Data" menu option and then upper right button "Master List"
Other reports are finished but not included in this old app version.
Image

I will keep this link open today and then will turn it off, because I am using this laptop for some other jobs.

http://codemaker.info/clockweb/clocweb.exe
(hit "OK" on login screen, cannot change anything here)
Image

You can use the tablet also (I tested on 10.1 inch Samsung and was able to work)
You can use any operating system and any browser - the results are the same (or almost the same, but the functionality and controls are equally ordered - no problem with compatibility)

The project is not finished yet, I expect to be finished at the end of May

Enjoy exploring only today!
Boris (Codemaker )

Re: FiveWeb (FiveWin days are numbered)

Posted: Mon Apr 21, 2014 3:29 pm
by devtuxtla
Hello Boris / Lailton / Antonio

This is a great job with fiveweb I congratulate you.

I still insist that joining forces FiveWeb can be a great product.

regards

Re: FiveWeb (FiveWin days are numbered)

Posted: Mon Apr 21, 2014 11:29 pm
by dutch
devtuxtla wrote:Hello Boris / Lailton / Antonio

This is a great job with fiveweb I congratulate you.

I still insist that joining forces FiveWeb can be a great product.

regards
I do agree with devtuxtla.

Re: FiveWeb (FiveWin days are numbered)

Posted: Tue Apr 22, 2014 10:11 am
by elvira
Great idea ++++1.

Boris, very impressive and great Work!!. Some questions:

X at the dialogs does not work.

Dialogs can have Tabs?.

Some controls are not aligned. For example see Acept and Cancel:
Image

Re: FiveWeb (FiveWin days are numbered)

Posted: Tue Apr 22, 2014 11:24 pm
by Lailton
Elvira,

The alignment you can adjust on resource file ( pelles or other editor ) :D

News coming soon.

Re: FiveWeb (FiveWin days are numbered)

Posted: Wed Apr 23, 2014 9:56 am
by elvira
Great, Lailton ;).

A basic sample with add/seek/modify/browse/print a customer database maintenance would be very usefull to test and see your product in action.

Does it support Folders on Dialogs?.

Re: FiveWeb (FiveWin days are numbered)

Posted: Wed Apr 23, 2014 6:42 pm
by Lailton
Elvira,

Folder and Tabs is under development, the other controls is working :P.
We are working on new update with folder/tab and documentation.

:P

Re: FiveWeb (FiveWin days are numbered)

Posted: Wed Apr 23, 2014 7:48 pm
by elvira
Ok, perfect.

And can we see a basic sample with add/seek/modify/browse/print a customer database maintenance would be very usefull to test and see your product in action?.

Thanks thanks :D :D :D

Re: FiveWeb (FiveWin days are numbered)

Posted: Fri Apr 25, 2014 4:16 am
by Lailton
Elvira,

Boris was posted link with it, but we will provide a better sample in few day together with full documentation.

Small test with setfont :D
Image

Code: Select all

#include <fiveweb.ch>

function main()
 local m_wnd
 local m_get, m_var:=space(100)
 local m_list, m_list_arr:={'Lailton','FiveWeb','Harbour','Borland 582'}
 local m_say
 define window m_wnd title 'test'
  @ 10, 10 get m_get var m_var color CLR_BLUE,CLR_BLACK size 300,40
  @ 10,320 button m_btn prompt 'select file' action select_file(m_get:nhandle)  size 300,40
  @100, 10 listbox m_list array m_list_arr size 300,40
  m_var:='Hello World !'
  @190,10 say m_say prompt m_var size 300,40
  m_get:setfont('Courier',17)
  m_btn:setfont('Impact',20)
  m_list:setfont('Script',30)
  m_say:setfont('Monospace',50)
 activate window m_wnd maximized
return nil

function select_file(handle)
 local m_wnd, m_brw
 define window m_wnd title 'select file' from 0,0 to 410,550 nosysmenu
  @ 0,0 browse m_brw header {'Arquivos'} field {'Arquivos'} fieldsize {530} size 550,300
  m_brw:cload:='data'
  m_brw:cclick:='click('+numtochar(handle)+','+numtochar(m_wnd:nhandle)+')'
  m_wnd:oclient:=m_brw
  m_wnd:center()
 activate window m_wnd
 m_wnd:gotop()
return nil

function click(m_get,handle,selected,id,brw)
 websettext(selected,m_get)
 windowclose(handle)
return nil

function data(...)
 populate with array directory('.\require\lang\*.ini')
return nil
 

Re: FiveWeb (FiveWin days are numbered)

Posted: Fri Apr 25, 2014 5:26 am
by HunterEC
Lailton / Boris:

Very impressive work, congratulations !

Trabalho muito impressionantes, parabéns

Re: FiveWeb (FiveWin days are numbered)

Posted: Fri Apr 25, 2014 2:07 pm
by MGA
Lailton, tem uma previsão para liberar uma versão?