topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Clipper/fivewin | hola
tengo una version demo de Fivewin quisiera saber si puedo hacer un ejecutable con las librerias que tiene este demo o no es posible. Por favor requiero que me enseñen a hacerlo, tengo el compilador de clipper 5.2 y el blinker demo 5.1 y las librerias que trae la version demo de fivewin. El ejecutable se esta haci... |
Clipper/fivewin | Con la versión demo puedes construir ejecutables perfectamente, sólo que saldrá una ventanita diciendo que es la versión demo.
Necesitas una versión de Blinker superior ó igual a la 3.0. Tambien puedes usar el link.exe de Microsoft que es gratuito. Lo puedes decargar desde la página de descargas de <!-- w --><a class=... |
Clonar disco o imagen del S.O. instalado | Alguna utilidad [b:tldsfl92]buena bonita y gratis[/b:tldsfl92] para poder tener un disco clonado (o la imagen del S.O. instalada) para no tener que pasarme horas reinstalando el S.O. y asi poder (en unos minutos) volver a tener todo como al principio.
Gracias. |
Clonar disco o imagen del S.O. instalado | Puedes usar la Acronis TrueImage ....,
Slds |
Clonar disco o imagen del S.O. instalado | Muchas gracias. Parece "demasiado" para lo "poco" que yo quiero, solo clonar. |
Clonar disco o imagen del S.O. instalado | [url:2gxpdaag]http://downloadsquad.switched.com/2008/09/05/5-free-apps-to-clone-your-hard-drive/[/url:2gxpdaag] |
Clonar disco o imagen del S.O. instalado | Antonio, ¿ y cual me recomiendas ?
Navegando, navegando, me he encontrado HDclone
<!-- m --><a class="postlink" href="http://www.hdclone.com/">http://www.hdclone.com/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.miray.de/products/sat.hdclone.html">http://www.miray.de/products/sat.hdclone.html</a><!-- ... |
Clonar disco o imagen del S.O. instalado | Jose María,
yo te recomiendo HDD Raw Copy Tool [url:2nosjubx]http://hddguru.com/software/HDD-Raw-Copy-Tool/[/url:2nosjubx]
Como pides es gratuito. En esa página encontrarás más utilidades interesantes y gratuitas.
Saludos,
Félix |
Clonar disco o imagen del S.O. instalado | Gracias...
[quote="Baxajaun":11jb5lgl]yo te recomiendo HDD Raw Copy Tool [url:11jb5lgl]http://hddguru.com/software/HDD-Raw-Copy-Tool/[/url:11jb5lgl][/quote:11jb5lgl]
No encuentro lo que tiene HDclone, que es poder fabricar un disco botable (o pen usb) con el programa de clonar. Esta facilidad viene bien cuando ... |
Clonar un objeto | Hola a todos
¿alguien sabría como clonar un objeto, hacer un duplicado del mismo?
Un saludo |
Clonar un objeto | Hola Paco,
Prueba __objClone( o )
Saludos,
José Luis Capel |
Clonar un objeto | Supongo que no inicializa metodos ni nada por el estilo, vamos que no llama al constructor.
Los codebloks ¿se duplican también?
Saludos |
Clonar un objeto | Paco,
[code:y8ptpxt5]Function Main()
LOCAL u,v
u := miClase():c()
u:s := "objeto u"
v := __objClone( u )
? v:s // "objecto u"
? v:b() // 1
RETURN NIL
CLASS miClase
DATA s
DATA t
METHOD a()
METHOD B INLINE a() // esto crea ... |
Clonar un objeto | Muchas gracias voy a probarlo |
Close ADO-connection | Hi,
I allways use in the beginning of my program
[code=fw:258wnmat]<div class="fw" id="{CB}" style="font-family: monospace;">oSQL:=CreateObject<span style="color: #000000;">(</span><span style="color: #ff0000;">"ADODB.Connection"</span><span style="color: #000000;">)</span><br />oSQL:<span style="color: #00000... |
Close ADO-connection | Marc,
[quote="Marc Vanzegbroeck":2k389opf][code=fw:2k389opf]<div class="fw" id="{CB}" style="font-family: monospace;">oSQL:=<span style="color: #00C800;">nil</span><br /> </div>[/code:2k389opf][/quote:2k389opf]
This is not needed.
[quote="Marc Vanzegbroeck":2k389opf]How can I close the connection completely with ADO... |
Close ADO-connection | Hi Marc
ferase requires the full path of the filename it may not be a sql issue.
Cheers
Colin |
Close ADO-connection | I too confirm the problem.
I could not find a solution yet. |
Close ADO-connection | [quote="Colin Haig":3q6ub0dq]Hi Marc
ferase requires the full path of the filename it may not be a sql issue.
Cheers
Colin[/quote:3q6ub0dq]
Colin,
This is not the problem, because it's working if I don't open the file before. |
Close ADO-connection | [quote="Enrico Maria Giordano":2nroltdn]
Should be enough. It might be a timing issue. Try to insert a delay between close() and ferase().
EMG[/quote:2nroltdn]
Enrico,
A delay between close() and ferase() don't work <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> I even tested ... |
Close ADO-connection | Marc,
[quote="Marc Vanzegbroeck":y5tp59lo][quote="Enrico Maria Giordano":y5tp59lo]
Should be enough. It might be a timing issue. Try to insert a delay between close() and ferase().
EMG[/quote:y5tp59lo]
Enrico,
A delay between close() and ferase() don't work <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(... |
Close ADO-connection | [quote="Enrico Maria Giordano":19mivxk7]
What did you use for the delay?
EMG[/quote:19mivxk7]
delay(100) |
Close ADO-connection | Marc,
[quote="Marc Vanzegbroeck":2g2zingv][quote="Enrico Maria Giordano":2g2zingv]
What did you use for the delay?
EMG[/quote:2g2zingv]
delay(100)[/quote:2g2zingv]
Try with SysWait().
EMG |
Close ADO-connection | Thanks to EMG
SysWait(100) worked for me. |
Close ADO-connection | [quote="nageswaragunupudi":8a3q1uer]Thanks to EMG
SysWait(100) worked for me.[/quote:8a3q1uer]
Also for me <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Close ADO-connection | NageswaraRao and Marc,
Great! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
EMG |
Close ADO-connection | very good! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Close ADO-connection | I wonder about other users having the database open thus preventing deletion. Is there a way to tell? Or, perhaps this is a temp file only created and used by one user? |
Close ADO-connection | [quote="James Bott":36nr7jy5]I wonder about other users having the database open thus preventing deletion. Is there a way to tell? Or, perhaps this is a temp file only created and used by one user?[/quote:36nr7jy5]
I only use SQLite-database on stand-alone programs.
For network-versions I use MySQL. There I don't dele... |
Close ADO-connection | Please try this test program.
I am able to delete the file "soon" after closing the connection.
[code=fw:2h4gbmpn]<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> <... |
Close ADO-connection | [quote:cefoonoq]Unless all references in the application to this Object go out of scope, our application do not entirely give up the connection.[/quote:cefoonoq]
Then, I assume, as long as you are not using PUBLICs, PRIVATEs, STATICs, and undeclared vars for connection objects, that this would not be a problem? If so,... |
Close ADO-connection | James,
[quote="James Bott":1ai0lk9x]Then, I assume, as long as you are not using PUBLICs, PRIVATEs, STATICs, and undeclared vars for connection objects, that this would not be a problem?[/quote:1ai0lk9x]
Unfortunately, not. Even "detached locals" can keep live reference to an object. As an example:
[code=fw:1ai0lk9x... |
Close ADO-connection | [quote:2gchm2xf]Even "detached locals" can keep live reference to an object.[/quote:2gchm2xf]
Very much true. But it is very rare that our programmers in normal course create a "detached local" pf the recordset.
[quote:2gchm2xf]As an example:
Code:
REDEFINE BUTTON...;
ACTION MYFUNC( oRs )
[/Code]
[/quote:2gc... |
Close ADO-connection | NageswaraRao,
Please check the sample below (change table and field name). You will see that LDB is automatically deleted only if you remove the BUTTON.
[code=fw:1uq127uf]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"<... |
Close ADO-connection | Or if you remove oRs from the TEST2() parameter.
EMG |
Close ADO-connection | After oRs:Close()
set
oRs := nil
Then immediately ActiveConnection also is closed |
Close ADO-connection | NageswaraRao,
[quote="nageswaragunupudi":hprjztvc]After oRs:Close()
set
oRs := nil
Then immediately ActiveConnection also is closed[/quote:hprjztvc]
The point is that oRs can have live references elsewhere in the code. Setting it to NIL doesn't solve the problem, sorry.
EMG |
Close ADO-connection | [quote:1i27iv05]The point is that oRs can have live references elsewhere in the code. Setting it to NIL doesn't solve the problem, sorry.
[/quote:1i27iv05]
Mr Enrico
The points I am making are
#1) Once all references to the recordset are gone the active connection also is closed.
#2) ACTION clause does not create det... |
Close ADO-connection | NageswaraRao,
[quote="nageswaragunupudi":22hhoenl]Mr Enrico
The points I am making are
#1) Once all references to the recordset are gone the active connection also is closed.
#2) ACTION clause does not create detached local. In the example you gave, the active connection was not closed "not because the ACTION codeb... |
Close ADO-connection | Enrico and Rao
I tested the oRs:CLose() followed up with oRs := nil and releasing the object did not close the .ldb for me .. however if I inserted oRs:ActiveConnection:Close() .. the .ldb went away.
My example was just a simple case of opening a table .. reading data and writing back a date value to the table and oR... |
Close ADO-connection | Enrico and Rao
[quote:a71an459]
I tested the oRs:CLose() followed up with oRs := nil and releasing the object did not close the .ldb for me .. however if I inserted oRs:ActiveConnection:Close() .. the .ldb went away.
[/quote:a71an459]
I need to update this post and let you both know that oRs := nil DOES release the o... |
Close ADO-connection | Rick,
[quote="Rick Lipkin":1b90t1fw]I need to update this post and let you both know that oRs := nil DOES release the object as well as the connection .. the .ldb does in fact close when you nil out the recordset object!
I went back and looked at my example .. and I had an additional call to a verification table afte... |
Close ADO-connection | [quote="Rick Lipkin":2hg1npg5]Enrico and Rao
[quote:2hg1npg5]
I tested the oRs:CLose() followed up with oRs := nil and releasing the object did not close the .ldb for me .. however if I inserted oRs:ActiveConnection:Close() .. the .ldb went away.
[/quote:2hg1npg5]
I need to update this post and let you both know that... |
Close ADO-connection | Mr Rick
I again advise you to reconsider your practice of opening every recordset with connection string.
When you specify ConnString in the RecSet's open method, each time ADO opens a separate connection. Even though you release the connection when you close the recordset, ther fact is that you keep as many indepen... |
Close ADO-connection | Rao
YES .. I have come around to your way of thinking and prior advice along those lines .. I worked a good bit yesterday trying to retro-fit my existing code and I came up with this simple solution ..
My existing code looks like this
[code=fw:rb36ad5c]<div class="fw" id="{CB}" style="font-family: monospace;"><br />x... |
Close ADO-connection | Rick,
Ideally, if your app looses a connection, the app should save the recordset locally, then update the database when a connection is re-established. ADO has built-in capabilities to save and restore recordsets.
Persisting Data
[url:3ykmrtal]http://msdn.microsoft.com/en-us/library/windows/desktop/ms675... |
Close ADO-connection | Mr James
I shall soon post an example of how to do it. (We can do with xHarbour but not yet with Harbour). We shall also discuss about disconnected recordsets in that posting.
But Mr Ricks (and many others') problem is what happens if the connection with the server is broken while a user is browsing a recordset? How ... |
Close ADO-connection | James
I am not too concerned about data as I buffer all my fields with variables and I create my recordset with the local cache option .. I am not really 'detached' but not working from the database or the table ( as I understand it ) .. from my experience, if the workstation crashes it is not (as) catastrophic to the... |
Close ADO-connection | Mr Rick
Glad you could switch to single connection object instead of single connection string so fast.
[quote:1vk165t8]I must admit, I am a bit concerned about maintaining a single ( application ) connection due to the possibility the workstation could temporally lose its network connection and the app would not be a... |
Close Activated Dialog by oWnd:oTimer | Dear All,
I need to close all activated dialog by autooff() *alike screen saver*. I can use this below function for automatic log off (popup login screen) the program.
[url:jzmg94mb]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=21595&start=0&hilit=getInputState[/url:jzmg94mb]
I need to return... |
Close Activated Dialog by oWnd:oTimer | Dutch
[quote:3361eo7m]I need to return to main windows (close all sub dialog), If user does not use for specific time.[/quote:3361eo7m]
You can use a logical var for each dialog ( lOpen := .T. or .F. )
Maybe a solution You are looking for
I have still a question to
How can I set the vars lOpen{1], lOpen{2] or lOpen... |
Close Activated Dialog by oWnd:oTimer | Dear Uwe,
I got the solution as your recommendation, it works fine now. The lOpen will be .F. in the Main procedure (Home) after return from sub-dialog.
Thanks for an idea.
Dutch |
Close Activated Dialog by oWnd:oTimer | [code=fw:307k94z8]<div class="fw" id="{CB}" style="font-family: monospace;">AEval<span style="color: #000000;">(</span> GetAllWin<span style="color: #000000;">(</span><span style="color: #000000;">)</span>, <span style="color: #000000;">{</span> |o| <span style="color: #00C800;">If</span><span style="c... |
Close Activated Dialog by oWnd:oTimer | Dear Mr.Rao,
I will test and feedback to you.
[quote="nageswaragunupudi":24pyajdc][code=fw:24pyajdc]<div class="fw" id="{CB}" style="font-family: monospace;">AEval<span style="color: #000000;">(</span> GetAllWin<span style="color: #000000;">(</span><span style="color: #000000;">)</span>, <span style="col... |
Close Applcation At Midnight | I want to do database maintenance after midnight. Is there a way to close all harbour applications still running at midnight? What would the source code look like?
Thanks
Fulton Loebel |
Close Applcation At Midnight | May you can use TIMER? |
Close Applcation At Midnight | I use :
DEFINE TIMER oOut INTERVAL 59*60000 OF oWnd ;
ACTION iif( LEFT(Time(),2)=="00" , ( set(_SET_ERRORLOG ,"Autoclose.log") , tracelog( DTOC(Date()) + " , Programma closed , user " + UPPER(NetName(.T.)) ) , oWnd:END() ) , )
Frank |
Close DBF Table opened by Crystal Reports XI via ADS 8.1 | Hi all,
I am evaluating Crystal Reports XI working with FWH and ADS 8.1
Things are working fine but something is missing...
This is how it works:
I execute my app from client machine that creates a .dbf table with all the
information that i need to put on the report previously created in Crystal
Reports XI. Then ... |
Close DBF Table opened by Crystal Reports XI via ADS 8.1 | Hi,
I compile this sample but CREATEOBJECT is missing. Where I can find it?. Thank you!!!.
Regards, |
Close DBF Table opened by Crystal Reports XI via ADS 8.1 | I solved it, I have to link a lib |
Close all dialogs | Is there any way to close all open dialogs (without knowing which ones are open) ?
Or is there a way to get a list of all open dialogs ? |
Close all dialogs | To close all open dialogs:
[code=fw:2rkbmuqt]<div class="fw" id="{CB}" style="font-family: monospace;">AEval<span style="color: #000000;">(</span> GetAllWin<span style="color: #000000;">(</span><span style="color: #000000;">)</span>, <span style="color: #000000;">{</span> |o| <span style="color: #00C8... |
Close all dialogs | Excellent. thank you. |
Close oWnd from code inside HTML | Hi,
How can I close oWnd from the HTML code that's provided by cMyURL?
[code:1ju95wjo]
DEFINE WINDOW oWnd
oActiveX:=TActiveX():New( oWnd, "Shell.Explorer" )
oWnd:oClient:=oActiveX
oActiveX:Do( "Navigate2", cMyURL )
ACTIVATE WINDOW oWnd
[/code:1ju95wjo]
Thanks
Patrick |
Close oWnd from code inside HTML | Try
oActiveX:Do( "Close" )
EMG |
Close program for other windows user | My program will only allow one user to use it locally. I open a one DBF file locally in exclusive mode. This I do not wish to change.
Here is the scenario...
User A runs my program in their Windows Login.
Then User A walks away from their computer.
After xx time, the computer will go to the Windows Login screen (cont... |
Close program for other windows user | Jeff,
I have build a solution for this problem. It's quite a big solution, to big to put the code in here but also to difficult because this code can be found in several parts of my code. But I'll try to describe what I do.
I have a file, containing all the controls of the different users.
Then I have a timer which c... |
Close program for other windows user | Driessen,
Thank you... this gives me an idea of how to solve it <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Close program for other windows user | Dear Jeff,
I found the class *Tinativo()* for Log Off (alike screen server by Timer), then by specific time in setup I will auto Log Out (Quit) The program if the user do not touch mouse or keyboard after specific time.
- User A - leave the counter for 5 minutes
- automatic Log-Off (Activate Login Screen)
- after... |
Close the sistem | Good afternoon to all my dear colleagues: D
I'm going through a situation where my system is simply closed form 'not advised' and causing much inconvenience to my customers. I have observed that it generates a file called 'hb_out.log'. In this aquivo find the timeline happened to the time of error, is always 'burst' in... |
Close the sistem | i suggest you delete the index file and recreate it
Regards. |
Close the sistem | You can put the expression you create the index? |
Close the sistem | not solve, I'm also having the same problem, first thought was the database class, then the harbour, I particionei my dbf parameters created in the harbour dbf minimized, but once a week is the same problem and all this then I switched to harbour in xHarbour did not have that problem. all say the harbour is better and ... |
Close the sistem | sorry arthur enjoy your post, but I have the same difficulty
this is what most corrupts the index, is also the most used
oTxt1:SetText("Arquivo de Clientes")
USE arqcli NEW EXCLUSIVE
IF( lPack, hb_dbPack(), )
nRegCdx := RecCount() / 100
oMetCdx:SetTotal( RecCount() )
oTxt2... |
Close the sistem | I had a similar problem some time ago. At that time, I was using xHarbour.
I changed to Harbour and the problem disappeared. |
Close the sistem | mine was just the opposite, but I'm reviewing the entire structure of dbf, inclusion, change ... hope FIND the problem. |
Close the sistem | Try creating indexes so the first time
[code=fw:zuxh2hzu]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oTxt1:<span style="color: #000000;">SetText</span><span style="color: #000000;">(</span><span style="color: #ff0000;">"Arquivo de Clientes"</span><span style="color: #000000;">)</span><br />... |
Close the sistem | I'll try and then I report you, use FWH 907 / 1312 + harbour 3.0 / 3.2 and two'm in trouble |
Close the sistem | I have the same problem, but only on a few customers, most of them do not.
It seems that is related to equipment.
I don't know what to do. |
Close the sistem | Erro irrecuper vel 9201: hb_cdxPageKeyLeafBalance: index corrupted.
Erro irrecuper vel 9201: hb_cdxPageSeekKey: wrong parent key.
I have the same problem, already used XHB, switched to HB and was otimo for 5 days and after this period continues with the same problem, after deleting the CDX and create problem sometimes... |
Close the sistem | Marcio Tullio,
The problem is in your dbf that is corrupted. You must do this: rename your DBF like yourdbf_old.dbf and create a new one (maybe using DBU or another of your preference) and create the structure manually. After this, import all data from the old dbf. In your app, recreate all CDX files.
Let us know yo... |
Close the sistem | Kleyber Hello, I've done it and not resolved, I created all dbf in harbour and spends a few hours, sometimes minutes, corrupts the cdx.
I added this function in application start.
If! WIN_OSNETREGOK () // Need ADM rights
If! WIN_OSNETREGOK (.t.,. T.) // First .t. is to adjust XP / ... W98, the second adjusts the vi... |
Close the sistem | From my notes:
-------------------
4/27/2005 7:08 AM
Windows' Oppontunistic Locking
Is well described at:
<!-- m --><a class="postlink" href="http://www.dataaccess.com/whitepapers/opportunlockingreadcaching.html">http://www.dataaccess.com/whitepapers/o ... ching.html</a><!-- m -->
-----------------
It also appears t... |
Close the sistem | Hi James, thanks for answering.
in my case, I dont have computers with w98, machines are core i3 4GB, 3GB 2duo core, but are already two days without problems after the changes.
I'm monitoring and getting everything in order will give the opinion. |
Close the sistem | My final thoughts despois two weeks without problems.
Acresentei this function.
If! WIN_OSNETREGOK () // Need ADM rights
If! WIN_OSNETREGOK (.t.,. T.) // First .t. is to adjust XP / ... W98, the second adjusts the view.
MsgInfo ('Registration not set windows!')
EndIf
EndIf
removed from database cla... |
Closing Circles | Hi,
Here you have the example that we have programmed this week with our mod. This week we have tested with Apache Windows to try ADO
Authentication Screen
ADO connection!
MS SQL database
Browser (all code without using any pluggin)
Pagination
Register editing
Error control in editing
...
Using our MVC (Model / View... |
Closing Circles | Hola Carles
Estoy probando como trabajar con mod_harbour y MS SQL y no tengo claro como manejar el tema de paginación, sobre todo con consultas de muchos registros, ¿Podrias compartir el ejemplo que mencionas?, el link que alli indicas ya no esta disponible.
Muchas gracias!!
Saludos desde Perú
Martín Ch. |
Closing Circles | Martin, I think you always have to check which mechanism you use on a case-by-case basis.
What do you have on the frontend? bootstrap table?
We did some test when starting with mod harbour 2 years ago.
Please give more details.
Best regards,
Otto
[url:33vv4m8b]http://forums.fivetechsupport.com/viewtopic... |
Closing Circles | Hola Otto
Gracias por el comentario, efectivamente dentro de los detalles que debo adicionar es que estoy trabajando con mod-harbour V2 y con tablas bootstrap tal y como mencionas.
El extracto de los datos es atraves de store procedure sql que luego son tratados desde el aplicativo mismo como recordset, pero el tema m... |
Closing Circles | Martin,
Have you already tried with the different settings here?
Is the data access with AJAX
Best regards,
Otto
[code=fw:3fq6ea4u]<div class="fw" id="{CB}" style="font-family: monospace;"><table <span style="color: #00C800;">class</span>=<span style="color: #ff0000;">"table table-image"</span><br /><span styl... |
Closing Circles | Estimado Otto
Muchas gracias por tu respuesta, no me queda muy claro lo que mencionas, tendras un ejemplo algo mas completo que me ayude a comprender lo que me recomiendas?
Saludos y gracias de antemano.
Martín |
Closing Circles | Hello Martin,
I myself only work with DBF.
But theoretically, it doesn't matter how the data is accessed.
It's difficult for me to answer here, as I have no idea how well you know web programming.
I'll post a simple example.
The logline() function in data.prg logs all accesses.
If you change in your bootstrap tab... |
Closing Excel without saving data | Hi,
In an application i'm writing, I open an excel-file, select and copy data to the clipboard, and want to close the excel again.
It's working nice, but the problem is that excel ask:
- Do want to save the changes?
- Do you want to leave the data in the clipboard?
Is it possible to close it without those messages?
... |
Closing Excel without saving data | This may help:
[url:16rjlpt9]http://www.exceltip.com/files-workbook-and-worksheets-in-vba/delete-sheets-without-confirmation-prompts-using-vba-in-microsoft-excel.html[/url:16rjlpt9] |
Closing Excel without saving data | [url:p7y2gxkm]https://msdn.microsoft.com/en-us/library/bb177478(v=office.12).aspx[/url:p7y2gxkm] |
Closing Excel without saving data | Thank you Antonio.
It's working now with
[code=fw:2xt8iptl]<div class="fw" id="{CB}" style="font-family: monospace;">oExcel:<span style="color: #000000;">Displayalerts</span><span style="color: #000000;">(</span>.f.<span style="color: #000000;">)</span></div>[/code:2xt8iptl] |
Closing Window (MDI-Child) with Escape | Hi,with wbrowse, a MDI-Child window will close, if you press "ESC", but a xbrowse-window won't. Is there a possibility to close a xbrowse-window also with "ESC"? |
Closing Window (MDI-Child) with Escape | Gilbert, oBrw:bKeyChar = { | nKey | If( nKey == VK_ESCAPE, oWnd:End(), nKey ) } |
Closing Window (MDI-Child) with Escape | Antonio,thanks, works fine! <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
Closing Windows neatly | I have a MDI application that opens different databases, say CLIENTS, SUPPLIERS and MANUFACTURERS.
I open each as a MDICHILD. (I use resources, so I have a borderless dialog the same size of the MDICHILD) (as taught to be my Antonio Linares and fwh\samples\TestMdi4.prg )
1. I want to prevent the user from opening the... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.