topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
store/restore parts of the screen | Thank you Rene. These are nice samples.
I the meantime I had a closer look into Pezold and read about WM_PAINT and InvalidateRect.
Please could you have a look at the topic:
Can I change the report viewer ?
Isn't that a heavy-duty to repaint the whole window every time you move the mouse?
HairCross Cursor:
Ins... |
storing mod_harbour views on memo fields | Wow... <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
First you have to identify...
[url:2hm5iwco]https://harbour.fourtech.es/modharbour_samples/genesis/index.prg?views:exec:4[/url:2hm5iwco]
[img:2hm5iwco]https://github.com/FiveTechSoft/s... |
storing mod_harbour views on memo fields | [img:1wux3lye]https://github.com/FiveTechSoft/screenshots/blob/master/memo_views2.jpg?raw=true[/img:1wux3lye] |
storing mod_harbour views on memo fields | [img:2i072wqz]https://github.com/FiveTechSoft/screenshots/blob/master/memo_views3.jpg?raw=true[/img:2i072wqz] |
storing mod_harbour views on memo fields | [img:16g92lp0]https://github.com/FiveTechSoft/screenshots/blob/master/genesis_view4.jpg?raw=true[/img:16g92lp0] |
storing mod_harbour views on memo fields | Dear Antonio,
I made a test on view: number 14
[url:1os3lv03]https://harbour.fourtech.es/modharbour_samples/genesis/index.prg?views:exec:14[/url:1os3lv03]
Code execution is working fine.
Can you please explain how we get post data into harbour variables?
I remember when I was using ASP that t... |
storing mod_harbour views on memo fields | Dear Otto,
Your example is working fine:
{"title"=>"07%2F10%2F2019", "Abreise"=>"07%2F19%2F2019", "zimmer_quantity"=>"1", "zimmer%5Berwachsene%5D%5B%5D"=>"1", "zimmer%5Bkinder%5D%5B%5D"=>"1"}
The only thing I noticed is that you are calling a non secure site:
(SSL is invalid)
<!-- m --><a class="postlink" href="htt... |
storing mod_harbour views on memo fields | Dear Otto,
To save the posted data you do this:
[code=fw:2btt76k1]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local... |
storing mod_harbour views on memo fields | Dear Antonio,
thank you.
Would you be so kind to show me the code how to read the database and to show it on the form.
OT: is there a way to know if I only have the files
mod_harbour.so
libharbour.dll
if these are the 32 bit or 64 bit files.
Thank you in advance
Otto |
storing mod_harbour views on memo fields | Otto,
In mod_harbour/samples/genesis/index.prg please review function BuildEdit() source code
[url:17phoq5d]https://github.com/FiveTechSoft/mod_harbour/blob/master/samples/genesis/index.prg[/url:17phoq5d]
1. Go to the folder where the DLL is
2. run "bash" from a cmd window from that folder
3. "file mod_h... |
storing mod_harbour views on memo fields | Hello Antonio.
I've tested the genesis from the first link and works perfectly.
Then I downloaded all the genesis folder from GitHub and placed inside the samples on my local machine.
When starts and I put the login informations I have this error :
[code=fw:kqygoc45]<div class="fw" id="{CB}" style="font-family: monosp... |
storing mod_harbour views on memo fields | Massimo,
If you install Apache on the Windows 10 bash (linux) then you have to give the right permits to the data folder this way:
cd /home/$USER/mod_harbour/samples/genesis
sudo chown -R www-data:www-data data
With this, the DBFs will open properly |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello:
I use Harbour 3.1 and Windows 7 64 bits.
When I run this code, very often I got:
(DOS Error 32) DBFCDX/1006 Create error: C:\Users\John\Desktop\harbour
\DATA\CUSTOMER.cdx
Working sample at:
<!-- m --><a class="postlink" href="http://www.mediafire.com/?47nd41ki6l87jgx">http://www.mediafire.com/?47nd41... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | DOS ERROR 32 means, according to DOS documentation, 'network request not supported'.
But I think the problem is because the erasing and indexing happens in such a fast interval (For..Next loop) that writting to the disk in so fas iterations is the problem for the sistem. If you don't use Commit() it might not show the... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello,
Thanks for reply.
This error happens in my app from time to time. It has more dbfs and indexes, but I wrote this sample to easily reproduce the error.
In my sample, I don´t open the index file never, just use customer.dbf new. |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | John,
As Boris points, it may be a local network problem
Anyhow, it is something specifically related to Harbour, not to FWH |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Antonio,
Thanks for heloping me. Yes it is not a FWH bug. I did not say that.
I am not running sample in a network. In fact, I created a second sample forcing EXCLUSIVE MODE and I still get the error.
Sample updated:
<!-- m --><a class="postlink" href="http://oron.com/8otfjgsek4zq">http://oron.com/8otfjgsek4zq</a><!... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | John,
You should report it in the Harbour developers list:
[url:3fmaqgjb]http://groups.google.es/group/harbour-devel[/url:3fmaqgjb] |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | UkService,
Your code is doubly buggy:
When you opens .dbf, that open .cdx file automatic. -SET AUTOOPEN ON- is default.
Then:
1st) You must not FErase() .cdx open
2st) You must not INDEX ON .cdx open
Regards
[quote="ukservice":g19m0ipq]Hello:
I use Harbour 3.1 and Windows 7 64 bits.
[code=fw:g19m0ipq]<div ... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello,
Thanks for reply.
I did another sample, forcing exclusive and using a different name for the index and I get she same error from time to time.
I provide a new download url:
<!-- m --><a class="postlink" href="http://demo.ovh.com/es/5a0f7902749392cdc7d498d584111b9f/">http://demo.ovh.com/es/5a0f7902749392cd ..... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | UkService,
I do not understand or you don´t understand <!-- s:? --><img src="{SMILIES_PATH}/icon_confused.gif" alt=":?" title="Confused" /><!-- s:? -->
Code sample ok:
[code=fw:p0qzst0z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />SET AUTOPEN OFF <span style="color: #B900B9;">// Atencion ... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello UK,
you exe runs fine here.
I tested on WINDOWS Server 2008 R2.
I get the alert box saying 101 and the path.
Best regards,
Otto |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello UK,
also of WINDOWS 7 Professional 64 bit the exe is running fine.
I will go on on a WINDOWS 8 system.
Best regards,
Otto
PS: What is you "userfriedly" name? |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello UK,
it is running fine on WINDOWS 8 but I only have 32 bit Operating System installed.
Best regards,
Otto |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Otto,
Thanks a lot. Did you run it several times (8-10)?.
What Harbour and Linker do you use?,
Thanks. |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Uk,
I made now 25 tests (windows 7 prof 64 bit). All is working well.
I use your exe file.
What is your"userfriedly" name?
Best regards,
Otto |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Otto,
My name is John.
Thanks for helping me.
Last question please, what Harbour and linker do you use?.
Regards,
John |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hello John,
I use xharbour and bcc582.
But the tests I made with your exe.
Best regards,
Otto |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | John,
try to remove Commit() inside the loop |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hi John,
regarding your first sample:
- you cannot delete an open index
- if the index is deleted you must use index, not reindex, reindex needs an open index
- dbcommit() is not neccessary, it does not affekt the index, it will only write the database buffer to disk.
your second sample should work, but I would remov... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Hi,
Thanks for all help.
I modified the sample as follows:
<!-- m --><a class="postlink" href="http://demo.ovh.com/en/5f778b0a078d64d9431f5b7153f675ff/">http://demo.ovh.com/en/5f778b0a078d64d9 ... 153f675ff/</a><!-- m -->
And now I get sometimes:
[b:1jsk90cw]Error description: (DOS Error 5) DBFCDX/1006 Create error... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | John
I put together a Sample program to open and index a FoxPro Database and compound index. I saw a couple of things I felt were wrong with your code ..
1) The .dbf and .cdx have to be the same name "Customer.dbf", "Customer.Cdx" but you can use any Alias you wish.
2) Opening your tables I would use this syntax us... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | John,
I ran your sample several times, I get no error <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> .
Very curious <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( -->
Dos error 5 means "Access denied", maybe it´s a problem wit... |
strange (DOS Error 32) DBFCDX/1006 ¿bug? | Rick,
[quote="Rick Lipkin":1g9s2xcw]
1) The .dbf and .cdx have to be the same name "Customer.dbf", "Customer.Cdx" but you can use any Alias you wish.[/quote:1g9s2xcw]
No, they can have different names, only this way you can create temporary indexes |
strange behavior of a TGet | I have 3 numeric get controls
when I insert a number in the first tget it would become the third update because it is a clause of the bchange and it performs a calculation
but if I delete the number in the first get it does not execute the bchange for the second time,
is normal or there is something wrong because ... |
strange behavior of a TGet | Now I correct with
[code=fw:2vvxfz8t]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /> @ <span style="color: #000000;">96</span>, <span style="color: #000000;">10</span> <span style="color: #0000ff;">Say</span> <span style="color: #ff0000;">"Costo :"</span> <span style="color: #0000ff;">SIZ... |
strange date get | Hi all,
I have a very strange behaviour of a get object.
The date doesn't fire it's bChange code if editing is made by hand. If the get is changed by action button the bChange block works okay.
I don't find an explanation or solution for this.
Here my code:
rc file
[code=rc:3hw9d7ga]<div id="{CB}" style="font-family:... |
strange date get | Dear Detlef,
On your example the ON CHANGE clause of the GET is not implemented
You are just defining an ACTION for it |
strange date get | Dear Antonio,
sorry... I wanted to keep my example short. But I shortened too much. <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
Now the ON CHANGE clause is added.
But the effect is still the same.
Regards, Detlef |
strange date get | It seems to behave fine. When you modify the GET then the other values are updated.
What is wrong ? |
strange date get | Antonio,
when I type in a 5 for month of the date and press enter the following value for stat-month is not updated. |
strange date get | Please try this:
[code=fw:36m2ms7m]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ON</span> <span style="color: #0000ff;">CHANGE</span> <span style="color: #000000;">(</span>;<br /> oDate:<span style="c... |
strange date get | Many thanks Antonio for your support, even on Sunday.
[quote="Antonio Linares":3asy34ae]Please try this: .. oDate:Assign()[/quote:3asy34ae]
With this it's working fine. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
-Detlef |
strange effect on msgbar | In previous versions everything was homogeneous now if I assign the color to the message bar the end (ie the angle) comes in another color and is ugly to see even if I insert the vscroll
this in windows seven and win 10 is ugly to see aesthetically
I would prefer the old version
[img:62qcmuql]https://i.postimg... |
strange error | this evening when I compiled is go out this error
Warning W8019 c:\Work\bcc7\include\windows\sdk\winnt.h 14984: Code has no effect in function TpDestroyCallbackEnviron |
strange error | If I have this test
Function test()
Local dDatafine:=ctod("14/08/2019")
SET DATE FORMAT "dd/mm/yyyy"
SET DATE ITALIAN
SET CENTURY ON
SET EPOCH TO ( YEAR( DATE() ) - 50 )
? dDatafine
return nil
it return me this
[img:1js52c4k]https://i.postimg.cc/0rRC79S9/ffffffffffffffffffffffff... |
strange error | What is strange in it? You look at your own code carefully.
You have used CTOD() before setting DATE FORMAT. Till you set the date format is the default format "mm/dd/yy". 14 as month is invalid.
To avoid such mistakes it is a good idea to use STOD( "20190814" ). This does not depend on date format. |
strange error | ja ja ja sorry my mistake,,,, |
strange error for calculating days !!Resolved!! | I have 4 date ranges (periods)
I have two dates and I want to calculate the number of days for each period.
local dcheck_in: = ctod ("17/05/2020")
local dCheck_out: = ctod ("17/06/2020")
if I do the operation
dCheck_out-dcheck_in
i get 31 days
in the calculation function for the periods they inexplicably bec... |
strange error for calculating days !!Resolved!! | [quote="ADutheil":1pmwg4za]What happens if you change the function to:
[code=fw:1pmwg4za]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> GetDayofPeriod<span style="color: #000000;">(</span>dDateFrom,dDateTo,aListini<span style="color: #000000;">)</sp... |
strange error for calculating days !!Resolved!! | What happens if you change the function to:
[code=fw:3gxmgmdh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">Function</span> GetDayofPeriod<span style="color: #000000;">(</span>dDateFrom,dDateTo,aListini<span style="color: #000000;">)</span><br /> &nbs... |
strange error for calculating days !!Resolved!! | Perhaps the error not is there ...
This morning I saw the dateTo is wrong
on a my function to update the dates after a modify I have these lines
local dStart:= uCharToVal(dDataIniziale, "D" )
local dEnd:= uCharToVal(dDataFinale, "D" )
If I select the from 10 July to 14 July
and the dEnd return me 14 March... |
strange error on index with ftp | I have a strange error making index with dbf and ftp
on main.prg I set
[b:3imm77lc]REQUEST DBFCDX
REQUEST DBFFPT
EXTERNAL ORDKEYNO,ORDKEYCOUNT,ORDCREATE,ORDKEYGOTO[/b:3imm77lc]
FUNCTION Main()
PUBLIC oApp
[b:3imm77lc] RddSetDefault( "DBFCDX" )[/b:3imm77lc]
SetHandleCount( 100 )
SET DATE FORMAT "... |
strange error on index with ftp | Hello Silvio,
did you found a solution?
Best regards,
Otto |
strange error on index with ftp | no. I 'm working to resolve it |
strange error on index with ftp | It shouldn't be needed but try this:
[code=fw:15jc66w7]<div class="fw" id="{CB}" style="font-family: monospace;">RDDINFO<span style="color: #000000;">(</span> RDDI_MEMOEXT, <span style="color: #ff0000;">".FPT"</span> <span style="color: #000000;">)</span></div>[/code:15jc66w7]
You are going to need this too:
... |
strange error on index with ftp | enrico,
i use other files with ftp and only one make error |
strange error on index with ftp | Estimado Silvio .
Mira haber si te sirve algpo de esto..
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=35464">viewtopic.php?f=6&t=35464</a><!-- l -->
Creo que si , pronto hare la proxima entrega.
Oscar Chacon.
<!-- w --><a class="postlink" href="http://www.SITUSR.co... |
strange error on link (COMPILING ) | this evening when I compiled my application
happend this error
[1]:iLink32.Exe -Gn -aa -Tpe -s -v @main.bcl
Turbo Incremental Link 6.70 Copyright (c) 1997-2014 Embarcadero Technologies, Inc.
Warning: C:/Work/Prg/Fsdi_tdatabase/main.ilc: 0x00010000 / 0x08000000
Warning: C:/Work/Prg/Fsdi_tdatabase/main.ild: 0x00010000... |
strange error on link (COMPILING ) | Search in the forum for:
Error detected (LME288)
It has many answers.
Look this for example,
[url:di6og9ch]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31426&p=197122&hilit=Error+detected+LME288+#p197122[/url:di6og9ch]
Maybe upgrading your BCC to BCC7.4 Solve the problem.
Regards. |
strange error on link (COMPILING ) | I reinstalled windows 10 pro on my tablet miix 320 lenovo
now it is ok
it come when windows 10 with last upgrade may 2019
I hope Antonio Linares resolve it soon |
strange error on link (COMPILING ) | It is a Embarcadero issue, not mine <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
strange error on link (COMPILING ) | [url:34pnw8j7]http://forums.fivetechsupport.com/viewtopic.php?f=16&t=33542[/url:34pnw8j7] |
strange error on report | I call report with
ACTION oApp:oGrid:Report()
oGrid is a xbrowse
and I have this
[img:3urt2eud]https://i.postimg.cc/kXSHMnJn/AERROR-REPORT.jpg[/img:3urt2eud]
the problem is that the first 4 records have the ELATTIVO LOGIC field = .T. as you can see here :
[img:3urt2eud]https://i.... |
strange error on report | The xbrowse you are displaying is different from the report you are displaying |
strange error on report | this is the original
[img:3s0o7ofu]https://i.postimg.cc/BbLXWgVN/bbgh.png[/img:3s0o7ofu]
[img:3s0o7ofu]https://i.postimg.cc/tTDc60pv/report.png[/img:3s0o7ofu]
I saw on the last column it not print any record ( bloccato field)
[code=fw:3s0o7ofu]<div class="fw" id="{CB}" style="fon... |
strange error on xbrowse | I must show bitmaps on a column for different type of record
I made at init
// prendo i bitmaps dei gradi
oDTipGrad:=Apri_Dbf("Tabelle" ) // open database
(oDTipGrad)->(DbSeek("G"))
DO WHILE (oDTipGrad)->CveTab="G" .AND. !(oDTipGrad)->(EoF())
AAdd(aGradiBmp,(oDTipGrad)->Bitmap)
(oDTipGrad)->... |
strange error on xbrowse | Please make sure that all elements of aGradiBmp represent correct filepaths, If necessary first check all elements of the array with File(aGradiBmp[n]) before creating xbrowse.
Incidentally with recent versions of xbrowse
instead of
[code=fw:2p88hqwi]<div class="fw" id="{CB}" style="font-family: monospace;">AEval<span... |
strange error on xbrowse | NOT RUN
I made
// prendo i bitmaps dei gradi
oDTipGrad:=Apri_Dbf("Tabelle" )
(oDTipGrad)->(DbSeek("G"))
DO WHILE (oDTipGrad)->CveTab="G" .AND. !(oDTipGrad)->(EoF())
AAdd(aGradiBmp,(oDTipGrad)->Bitmap)
(oDTipGrad)->(DbSkip())
ENDDO
Chiudi_Dbf("Tabelle",oDTipGrad)
// to control file
... |
strange error on xbrowse | Dear Nages ,
Can you see this test please
[code=fw:3fvg3m45]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"xbrowse.ch"</span><br />... |
strange error on xbrowse | Nages have try the test ? |
strange error with Pelles | [1]:PORC.EXE Resource\default.rc /I c:\work\pellesc\include /I c:\work\pellesc\include\win
PORC: Resource\default.rc(54): error: File not found: 'beach\simboliote.png'.
PORC: Resource\default.rc(55): error: File not found: 'beach\simboliew.png'.
I have on default.rc
BTN_PNG_NOTE 10 "beach\simboli\note.png"
... |
strange error with Pelles | Intenta:
[code=fw:2emdt9v8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />BTN_PNG_NOTE <span style="color: #000000;">10</span> <span style="color: #ff0000;">".<span style="color: #000000;">\b</span>each<span style="color: #000000;">\s</span>imboli<span style="color: #000000;">\n</span>ote.png"</span><... |
strange error with Pelles | resolved with
BTN_PNG_NOTE 10 "beach/simboli/note.png"
BTN_PNG_ALL 10 "beach/simboli/new.png" |
strange error with png files | friends,
I tried a small prg to show a background file png and two button ( btnbmp) with png file into a Wnd
I have some problems as you can see
the btnbmp are not transparent
[img:1uxyuuza]http://www.eoeo.it/wp-content/uploads/2016/01/nn.jpg[/img:1uxyuuza]
[code=fw:1uxyuuza]<div class... |
strange error with png files | Silvio,
Painting a Button on top of a image doesn't work ( the transparent area shows the window-brush )
The following solution works, merging 2 images for brush usage
Using PIXELFORMER
1. load and copy the needed image
2. create a new image with the window-size and wanted backgound-color
3. past the copied image
... |
strange error with png files | I cannot use a brush because I must insert the background on window on exactly position
I explain you I have a png where you can see a room as the picture I sent you and the reels must be on center ( see the e-mail)
I use
oWnd:bPainted := {|hDC| PalBmpDraw( hDC, 0, 0, oBackground:hBitmap,, oWnd:nWidth, oWnd:nHeig... |
strange errors | Today I compiles this test and I have strange errors on compilation and I not Know why
I have Harbour and last fwh with bcc7
where are the errors ?
[b:oj648w9w]the test[/b:oj648w9w]
[code=fw:oj648w9w]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span ... |
strange errors | Silvio,
I can't test your code since I don't use Harbour and I don't have the latest FW version installed. However all those syntax errors look like they might be invisible characters. This used to happen whenever you copied code online using the MS Edge browser--it stuck in a lot of characters that you couldn't see b... |
strange errors | ok
I found the error
I used Edge on win10
this morning I use moxilla and it is compiled
thanks |
strange errors | Silvio,
you are using an old version of Edge. Please update Windows 10. MS has fixed this problem months ago.
EMG |
strange errors | strange I have edge updated |
strange errors | Silvio,
My Edge is also fixed.
Check your file date:
c:\Windows\SystemApps\Microsoft.MicrosoftEdge_8wekyb3d8bbwe\MicrosoftEdge.exe
Mine is dated 12/7/2017.
Alternately, you can use Explorer.
James |
strange errors | mine date is 06.01.2018
Microsoft Edge 40.15063.0.0
Microsoft EdgeHTML 15.15063 |
strange errors | They look old. These are mine:
Microsoft Edge 41.16299.15.0
Microsoft EdgeHTML 16.16299
EMG |
strange errors | I have the same versions as Enrico.
Slivio, something seems very wrong with yours. You have a newer date on the file and an older version number. |
strange errors | I not Know How upgrade edge not found on Internet a link and my Pc windowsupdaye let me say the system is updated on 12.01.2018 last windows 10 Pro update |
strange errors | Silvio,
It may just be that the Win 10 Home and Win 10 Pro versions are different, and that they have not fixed the Pro version of Edge yet. If so, then you will just have to wait and avoid using Edge to copy code from. I know it will be hard to remember, because I kept forgetting and doing it myself.
James |
strange errors | [quote="James Bott":3h3ldes3]It may just be that the Win 10 Home and Win 10 Pro versions are different, and that they have not fixed the Pro version of Edge yet.[/quote:3h3ldes3]
No, I have Windows 10 Pro 1709 16299.192 and Edge [b:3h3ldes3]is[/b:3h3ldes3] updated.
EMG |
strange errors | I have w19 home. Perhaps win10pro is updated. |
strange execution of Index | I have a dbf and made 3 index
USE SERVIZI ALIAS SERVIZI
INDEX ON SERVIZI->ID TAG ID TO SERVIZI FOR !deleted()
INDEX ON UPPER(SERVIZI->NAME) TAG NAME TO SERVIZI FOR !deleted()
INDEX ON SERVIZI->ORDINE TAG ORDINE TO SERVIZI FOR !deleted()
Now I wish see the dbf index on Ordine field
If I made
[b:1bi1sg6i]SERVIZI->(... |
strange execution of Index | What did you expect to see?
We can't see the Ordine column so we can't tell if it is correct. |
strange execution of Index | I think the problem for Silvio is that the index "order" is not the number 3.
may be you can use [b:3ltuew6s]IndexOrd[/b:3ltuew6s] to see what number it is.
or get informations by this piece of code (untested):
[code=fw:3ltuew6s]<div class="fw" id="{CB}" style="font-family: monospace;">cMsg := <span style="color: #ff0... |
strange execution of Index | Silvio,
Mr. Rao told that there can be a issue when building indexes like this :
INDEX ON SERVIZI->ID TAG ID TO SERVIZI FOR !deleted()
See :
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=33776&hilit=field">viewtopic.php?f=3&t=33776&hilit=field</a><!-- l -->
Maybe t... |
strange execution of Index | I have ID as Character sample "0001", name as Character , Ordine as Number
the problem is on ordine field if I use dbsetorder(3) instead of dbsetorder("ordine") is the tag |
strange execution of Index | Silvio,
You can't use aliases in an index. |
strange execution of Index | Silvio,
This code is working fine here.
[code=fw:rtphhr8z]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br /><br /><span style="color: #00C800;">Function</span> Main<span style="color: #000000;">(</span><sp... |
strange execution of Index | Silvio,
DbSetOrder( <nIndexPos> ) --> NIL
Arguments
<nIndexPos>
This is the numeric ordinal position of the index to activate as the controlling index. Indexes are numbered in the sequence they are opened with OrdListAdd(),
try this way:
[code=fw:1f9382d4]<div class="fw" id="{CB}" style="font-family: monospace;">SE... |
strange execution of Index | I made allways servizi->(dbsetorder(number_of_index))
why now I must make servizi->(dbsetorder(tagname))
Incredible!!!! |
strange execution of Index | Silvio,
I noticed that the file was already in ORDINE order, so I changed a couple of them. Then when I ran it they were not indexed properly.
Then I realized I had forgotten to delete the existing index before building the indexes. I did that and now it is working.
[code=fw:lhyx1bso]<div class="fw" id="{CB}" style=... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.