Ok, mr. Fafi, but it still not normal
SET SCOPE TO it's just analog of ordScope( 0, nil ) and ordScope( 1, nil )...
I think that problem was in work area. In you case
select datailordScope( 0, nil )ordScope( 1, nil )select(oldarea)
will also work correct IMHO. I don't use ...
Search found 41 matches
- Thu Oct 29, 2009 11:54 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to clear ordScope()
- Replies: 11
- Views: 3302
- Thu Oct 29, 2009 11:08 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to clear ordScope()
- Replies: 11
- Views: 3302
Re: How to clear ordScope()
This method absolutely correct!
I use OrdScope(0,nil) in all projects and scops are clears...
Try to look on ordkeycount() after the OrdScope(0,NIL). Then you can try to do :
function ClearMyFilter()local oldarea:=select()select datailordScope( 0, nil )ordScope( 1, nil ...
I use OrdScope(0,nil) in all projects and scops are clears...
Try to look on ordkeycount() after the OrdScope(0,NIL). Then you can try to do :
function ClearMyFilter()local oldarea:=select()select datailordScope( 0, nil )ordScope( 1, nil ...
- Thu Oct 29, 2009 8:39 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to clear ordScope()
- Replies: 11
- Views: 3302
Re: How to clear ordScope()
Hello, Fafi !
It has to work!
But you miss ")" in the end of
It has to work!
But you miss ")" in the end of
Code: Select all | Expand
detail->(ordScope(0,NIL))
- Fri Sep 04, 2009 11:40 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: xBrowse & Edit Cell
- Replies: 1
- Views: 383
Re: xBrowse & Edit Cell
So... I made it by changing this string in the end of method Edit(nKey) in class TXBrwColumn:
Instead
if nKey != nil PostMessage( ::oEditGet:hWnd, WM_CHAR, nKey ) endif
I put:
if nKey != nil if !GetKeyState( VK_SHIFT ).and.(nKey IN {VK_END,VK_HOME}) PostMessage ...
Instead
if nKey != nil PostMessage( ::oEditGet:hWnd, WM_CHAR, nKey ) endif
I put:
if nKey != nil if !GetKeyState( VK_SHIFT ).and.(nKey IN {VK_END,VK_HOME}) PostMessage ...
- Thu Sep 03, 2009 2:33 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: xBrowse & Edit Cell
- Replies: 1
- Views: 383
xBrowse & Edit Cell
Hi!
It's necessary for me, that cell editing in some xBrowse cells started with the end of value of a cell.
(User input the address. He selects street from the another browse, then the pointer in a cell has to go on the end of streets name, and then the user input house and apartment numbers)
I ...
It's necessary for me, that cell editing in some xBrowse cells started with the end of value of a cell.
(User input the address. He selects street from the another browse, then the pointer in a cell has to go on the end of streets name, and then the user input house and apartment numbers)
I ...
- Wed Aug 26, 2009 5:29 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: How to activate minimized program?
- Replies: 6
- Views: 833
Re: How to activate minimized program?
Hello, Dutch!
In my programs I did it such way:
if IsExeRunning( 'dispan.exe' ).or.IsExeRunning( 'Dispan.exe' ).or.IsExeRunning( 'DISPAN.exe' ).or.IsExeRunning('DISPAN.EXE' ) if pppp()==1 msgstop('Program is already running.','Ups...') endif return .f ...
In my programs I did it such way:
if IsExeRunning( 'dispan.exe' ).or.IsExeRunning( 'Dispan.exe' ).or.IsExeRunning( 'DISPAN.exe' ).or.IsExeRunning('DISPAN.EXE' ) if pppp()==1 msgstop('Program is already running.','Ups...') endif return .f ...
- Fri Aug 21, 2009 11:47 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Re: Network questions
Rick
Thanks you so much! Undoubtedly, you are right! Unfortunately (may be fortunately I am not the admin of our network and I can't establish the rules. Therefore I have to invent such "tricks"...
Thanks you so much! Undoubtedly, you are right! Unfortunately (may be fortunately I am not the admin of our network and I can't establish the rules. Therefore I have to invent such "tricks"...
- Thu Aug 20, 2009 6:18 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Re: Network questions
the Netware login script used to set an evironment variable "UserName"
Great idea!!! I even didn't think about it!!! It's all work well. There are two the same variables I need: NWUSERNAME and USERLOGINNAME.
Also I found it in Windows register: HKEY_CURRENT_USER\Volatile Environment.
So, many ...
Great idea!!! I even didn't think about it!!! It's all work well. There are two the same variables I need: NWUSERNAME and USERLOGINNAME.
Also I found it in Windows register: HKEY_CURRENT_USER\Volatile Environment.
So, many ...
- Wed Aug 19, 2009 2:19 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
- Wed Aug 19, 2009 5:50 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Re: Network questions
Hi!
Wouldn't the user name be the same
In our network (more than 500 pc) each user have the unique Novell name, but in OS Windows everybody have only "Admin" and "User" records. Than, if you have the same passwords (in Novell and Windows) after the Novell password inputing, Windows registration ...
Wouldn't the user name be the same
In our network (more than 500 pc) each user have the unique Novell name, but in OS Windows everybody have only "Admin" and "User" records. Than, if you have the same passwords (in Novell and Windows) after the Novell password inputing, Windows registration ...
- Tue Aug 18, 2009 1:34 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Re: Network questions
Try netname( .t. )
Thank's. But "netname" is return the name of current Windows User...
- Tue Aug 18, 2009 12:25 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Re: Network questions
Hello, Anser!
Thank you, but I can't find the command "WhoAmi" in FWH, xHarbour or OS Windows and Novell NetWare
May be it's only for Linux...
Have you some example of usage this command?
Thank you, but I can't find the command "WhoAmi" in FWH, xHarbour or OS Windows and Novell NetWare
May be it's only for Linux...
Have you some example of usage this command?
- Tue Aug 18, 2009 11:01 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: Network questions
- Replies: 16
- Views: 3557
Network questions
Hello!
Does anybody know the answers on this two questions:
1. How can I get my current login in Novell Netware ( something like function WNetGetUser() for Win )
2. Function GetIP() on my PC returns "0.0.0.0", but I have the static IP in my XP system. What I do wrong?
Thank's a lot.
Does anybody know the answers on this two questions:
1. How can I get my current login in Novell Netware ( something like function WNetGetUser() for Win )
2. Function GetIP() on my PC returns "0.0.0.0", but I have the static IP in my XP system. What I do wrong?
Thank's a lot.
- Tue Jul 07, 2009 7:26 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: testtab2.prg
- Replies: 1
- Views: 410
Re: testtab2.prg
Hello, José!
Please, check your "Fivewin.ch". It has include the string "#include "Folder.ch". If not, you can include "Folder.ch" by hand.
Please, check your "Fivewin.ch". It has include the string "#include "Folder.ch". If not, you can include "Folder.ch" by hand.
- Tue Jul 07, 2009 6:16 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: HB_UnZipFile() Problem?
- Replies: 7
- Views: 1323
Re: HB_UnZipFile() Problem?
Dear Dutch!
At first, in your examle I see the path :'\\adsserver\server\easyfo\fo\data\foliohis\testzip.zip'
So, I feel some doubt about '\\adsserver'. Did you try to map the servers disk by letter (like above 'M:\easyfo\fo...')
At second, can you send me compiled program (exe file) with any ...
At first, in your examle I see the path :'\\adsserver\server\easyfo\fo\data\foliohis\testzip.zip'
So, I feel some doubt about '\\adsserver'. Did you try to map the servers disk by letter (like above 'M:\easyfo\fo...')
At second, can you send me compiled program (exe file) with any ...