topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
xBRowser drag & drop question | Hello NageswaraRao,
If the xBrowser is starting on the first page than it inserts and highlights one line before where you drop.
If you are on the second or higher page it works perfectly.
Maybe you have some more ideas to solve this.
Thank you for your help.
Regards,
Otto |
xBRowser drag & drop question | It has to be like that only. Suppose you dreg 5th item and drop on 10th item. Now 5th item will become 9th item. So the cursor has to move up to 9th row. |
xBRowser drag & drop question | NageswaraRao, thank you very much.
Best regards,
Otto |
xBRowser drag & drop question | Otto,
can you create a small test of it and insert the sample on fwnips website? |
xBRowser drag & drop question | Good evening,How can you know if the user is dropping in the same windows it was dragged from? In my program you can open several mdichild windows. I don't want the user to drag to a different window.Thank you very much.Alvaro |
xBRowser drag & drop question | I found it.Passing the number oWnd:hWnd with uDropInfo information. Thank you,Alvaro |
xBRowser drag & drop question | With the recent xbrowse ( FWH 8.05 ) the following lines[code:lq1zijkw]
oBrw:lButtonDown( nRow, nCol, nFlags )
oBrw:lButtonUp( nRow, nCol, nFlags )
[/code:lq1zijkw]
can be replaced with
[code:lq1zijkw]
oBrw:SetPos( nRow, nCol, .t. ) // .t. fo... |
xBRowser drag & drop question | UsingoBrw:SetPos( nRow, nCol, .t. )does not set the browse in the position where you drop.However it works with this 2 lines, am I missing something?oBrw:lButtonDown( nRow, nCol, nFlags )oBrw:lButtonUp( nRow, nCol, nFlags )Thank youAlvaro |
xBackUpLite de xHarbour a Harbour con Browse de FW | Amigos:
He visto esta utilidad que esta muy,muy bien.
Seria posible que alguien la tenga ya para Harbour y con el
Browse de FW o el de Hernan es lo mismo.
Si es asi le agradezco me la envien.
Gracias y saludos
Ruben Fernandez. |
xBackUpLite de xHarbour a Harbour con Browse de FW | hacer el cambio de xharbour a harbour no es muy dificil, ya que las variantes son que se utilizan ciertas extencions del lenguaje para dar un poco mas de velocidad a los procesos.
ahora, que se use twbrowse no es que sea dificil, pero por que no continuar usando tsbrowse?
en su momento, cuando se incio el trabajo de... |
xBackUpLite de xHarbour a Harbour con Browse de FW | Gracias Carlos.
Saludos.
Ruben Fernandez |
xBackupLite | Por favor si alguien pudiera ayudarme
Estoy tratando de compilar xBackuLite y no lo consigo
imagen de proyecto
<!-- m --><a class="postlink" href="https://1drv.ms/u/s!AgM94kAKnz9CkVTHXK_l2lYzns9A">https://1drv.ms/u/s!AgM94kAKnz9CkVTHXK_l2lYzns9A</a><!-- m -->
consola de depuracion
<!-- m --><a class="postlink" href=... |
xBackupLite | Juan:
Preguntonta, y para que necesitas xBackupLite?
Saludos |
xBackupLite | Armando
[quote:32td3e1d]Preguntonta, y para que necesitas xBackupLite?
[/quote:32td3e1d]
Estoy utilizando esta aplicacion para hacer respaldo y restuaracion de archivos pero lo tengo como un exe adicional que ocupa mas o menos 1160 kb
La intencion es ver si lo puedo incorporar como un prg mas a mis aplicaciones
Sal... |
xBackupLite | No falta incorporar la TsBrowse() del maestro Manuel Mercado?
[url:1msu7v3w]http://www.pctoledo.com.br/forum/viewtopic.php?f=2&t=16893&start=0&hilit=blite[/url:1msu7v3w]
Saludos. |
xBackupLite | Puede usar el pBackup, mui bueno.
[url:3gf22gec]http://www.pctoledo.com.br/forum/viewtopic.php?f=2&t=8731&hilit=backup+fivewin&start=15#p114846[/url:3gf22gec]
Saludos. |
xBackupLite | Karinha
Gracias por responder
Probé el pBackup y se ma hace muy bueno
Quise respaldar los archivos de una carpeta con unas subcarpetas pero no encontré la manera de que esas subcarpetas no las incluyera en el respaldo
Saludos |
xBackupLite | Intenta asi:
[code=fw:2qoscxko]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> #IFDEF __XHARBOUR__<br /><br /> <span style="color: #B900B9;">// if xHarbour</span><br /> aFiles := DirectoryRecurse<span style="color: #000000;">(</span> cSourceZip +... |
xBackupLite | Karinha
[quote:37jkdrap]#IFDEF __XHARBOUR__
// if xHarbour
aFiles := DirectoryRecurse( cSourceZip + "\*.*",, .F. )
#ELSE
// if harbour
aFiles := DirectoryRecurse( cSourceZip + "*",, .F. )
#ENDIF[/quote:37jkdrap]
Disculpa mi ignorancia
Ya logré compilar xbackup con xharbour
Te comen... |
xBackupLite | [code=fw:20wse3pb]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">/*------------------------------------------------------------------------------*/</span><br /><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">Function</span> GetFilesToZip<span styl... |
xBackupLite | Karinha
Estas instrucciones estan en PROC9995.PRG
Yo tenia
aFiles := DirectoryRecurse( cSourceZip + "\*.*",, .T. )
Ya la cambie a
aFiles := DirectoryRecurse( cSourceZip + "\*.*",, .F. )
y me sigue respaldando la carpeta y sus subcarpetas
Ahora si pongo la instruccion como
aFiles := DirectoryRecurse( cSourceZip + ... |
xBackupLite | Juan,
? cSourceZip
Que muestra para usted?
Saludos. |
xBackupLite | Karinha
Para poder respaldar los archivos que necesito hice esta modificacion en PROC9995.PRG en Function GetFilesToZip( cSourceZip ) el IF rat...
[code=fw:rws8up4k]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">FOR</span> EACH aFile IN aFiles<br /> <br /> ... |
xBase command | I need to know if that class found in fivewin or not I am seeing it a lot in many windows programs :
It is like Combo box but small and filled with dots and works like as help for get/read entry . |
xBase command | Ehab,
You may place a small button with "..." as its caption, and assign it the action that you may want. |
xBase documentor | In the early 1990s there was a DOS program called Snap Ver. 5.02 that displayed program flow through graphics lines, symbols (vars) used, where they were read, written, control structures, etc. Is there a program that documents xBase/FiveWin programs ? |
xBase documentor | I've been looking for one too and came across [url=http://www.xs4all.nl/~rfsber/Robo/:nuirbdnr]RoboDoc[/url:nuirbdnr] but can't give you any feedback on it yet as I haven't started to play around with it. |
xBase documentor | You will find Snap here:
[url:gih0fq4s]http://www.the-oasis.net/ftpmaster.php3?content=ftputils.htm[/url:gih0fq4s]
It is near the end of the page.
Regards,
James |
xBase documentor | James:
Thank you for your help and link. However, what I'm looking is a software that performs the same functions as the old SNAP but can recognize the extra keywords and new language syntax used with FiveWin / xHarbour / Harbour. Any suggestions ? |
xBase documentor | Hunter,
It has been a long time since I used it, but Snap does have keyword files for lots of libraries. I suspect you can create a new one for FWH/Harbour.
Regards,
James |
xBase documentor | Hi James and all
I downloaded SNAP from the link given but it was a DOS/Windows(?) executable with no source so not much use for a Linux environment. I don't know if it was written in Clipper or some other language. I don't know if source was ever / is now available.
Maybe we could work on a (x)Harbour version of t... |
xBase documentor | Hello
I own the source for a program, to do this.
I used it during clipper-times.
It draws vertical lines between DO WHILE - ENDDO, IF - ENDIF and so on and does the needed spaces.
Is there a need to use it as a basic ?
If YES, I can put it in the Forum.
Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.g... |
xBase documentor | Hi Uwe
I can remember writing one back in the dBase III days (pre Clipper) which used the IBM extended character graphics to draw vertical lines with little horizontal bits at keywords such as IF ELSE ENDIF.
Good for finding bugs when one was starting out and running as an interpreter. Clipper arrived and the compil... |
xBase documentor | Guys:
Thank you all for your thoughts. That's the idea, a program that should do at least:
1. Draw vertical lines to show control / flow structures
2. Documents where we use our variables / fields per procedure / function / whole system.
3. Where our vars and fields are read and where their value changes
... |
xBase documentor | > 1. Draw vertical lines to show control / flow structures
I started thinking about how one might best do this in a nice structured, flexible way. If I was to write it my primary focus would be Linux and postscript printing but it wouldn't be too hard to do a Windows version.
Just thinking about what one might wish ... |
xBase documentor | Hello Doug,
I don’t know which editor you use for programming.
I use UEStudio and MultiEdit and have nearly all the features you mention:
formatted source I get with MultiEdit (Reindent function and Evolve: Align MemVar ) and the rest is included in UEStudio.
Best regards,
Otto |
xBase documentor | I use as editor Multi-Edit Ver. 9.10.04. Does UEStudio prints source code with vertical lines, cross references variables & fields ? Thank you. |
xBase now unstable slow error Status_Lock_Not_Granted | (sorry for my English)
Good afternoon, First of all I would like to thank for all the help provided to the less expert members. By suggestion of Antonio Linares straight to explain my situation, clarifying that I have read Microsoft forums and others related to the subject.
I have a Software developed with FiveWin + ... |
xBase now unstable slow error Status_Lock_Not_Granted | José
Windows 10 pro ( ver 1803 and 1809 ) does not install SMB 1.0 by default .. You can however turn SMB1.0 back on manually ..
Control Panel
Programs and Features
Turn Windows Features On or Off
Scroll down and check Smb 1.0 ... the machine will ask to reboot .. your file sharing should be back to normal.
[img:... |
xBase now unstable slow error Status_Lock_Not_Granted | Thank you Rick, very interesting.
Best regards,
Otto |
xBase now unstable slow error Status_Lock_Not_Granted | José,
I think you're using a recent version of Fivewin.
I suggest you try with a previous version, (17.04 or earlier), to check whether the problem is in Fivewin. |
xBase now unstable slow error Status_Lock_Not_Granted | The problem happens since Windows 8 onwards. |
xBase now unstable slow error Status_Lock_Not_Granted | Rick, Diego y Moisés. Thanks for your answers!
I wonder if Windows in upcoming updates will erase the changes we made or delete support to SMB1 disconnecting the machines from the server.Any experience with windows updates or any suggestion?
Regards |
xBase now unstable slow error Status_Lock_Not_Granted | Have you already tried ADS(Advantage Database Server) ? Its also work with DBFCDX format and demands almost zero modification to use. |
xBase now unstable slow error Status_Lock_Not_Granted | José,
If smb 1.0 does not work, either you install ADS server (ADS local driver does not solve the issue), or you use ADORDD, to use access files instead of .dbf but mantaning CLIPPER commands.
Hope it helps. |
xBase now unstable slow error Status_Lock_Not_Granted | Hello,
I found following in my notes:
[quote:17q8v4lp]Notizen
Abfragen per Directory() sind wieder so schnell - auf alle Rechner im Netzwerk verteilen
HKLM\SYSTEM\CurrentControllSet\Services\LanmanWorkstation\Parameters
Neu hinzufügen als DWORD:
DirectoryCacheLifetime = 0
FileInfoCacheLifetime = 0
FileNotFoundCache... |
xBase now unstable slow error Status_Lock_Not_Granted | Otto,
I tested in the past such changes with no luck. |
xBase now unstable slow error Status_Lock_Not_Granted | Thanks Otto. We have done this. and we think it helps a little, but it does not solve the problem.
José, Chile |
xBase now unstable slow error Status_Lock_Not_Granted | We have made the change to SMB1, and I believe speed has increased a little bit and the errors seem to be less. This is a conversation between a "frozen" machine (Windows machine where the software stays frozen for a couple of minutes and then return to normal) and the Linux server running Debian 9. One packet each.
W... |
xBase now unstable slow error Status_Lock_Not_Granted | Friends, hello
One more question, did going back to SMB1 really work? because we (with Windows 7 and 10 workstations and with Linux Debian 9 serviudor) have noticed some improvement but we have not been able to really solve it.
José, Chile |
xBase now unstable slow error Status_Lock_Not_Granted | Friends, and as a temporary solution, dividing the company into groups, and putting users on Windows Server computers (we have 2012) with the ddbb xBase on the same computer, would it no longer require the SMB service? And if so, is it an option, someone has done that? In my case I have always tried to control the lock... |
xBase now unstable slow error Status_Lock_Not_Granted | hi,
did you still have Problem with DBF Locking <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
i just can talk about Windows Client / Server.
M$ have a Reason (WannCry & Co) to close UDP Port 135-139 so it is not recommend to open it for SMB1.
---
until XP / Sr... |
xBase now unstable slow error Status_Lock_Not_Granted | not sure if harbour have Problem with it so i like to ask
[code=fw:150y8617]<div class="fw" id="{CB}" style="font-family: monospace;">USE \\<span style="color: #00C800;">Server</span>\ShareFolder\Test.DBF<br />COPY <span style="color: #00C800;">FOR</span> <span style="color: #0000ff;">Name</span>=<span style="color: #... |
xBase or Harbour project on Instagram ? | Dear friends,
Is there a xBase or the Harbour Project section on Instagram ?
thanks |
xBielSys trabajando con binarios. | Aunque últimamente no encuentro mucho tiempo para escribir en el blog, aquí os dejo un enlace a la última entrada por si queréis leer algo sobre harbour y manejo de datos binarios.
[url:7ry0gofw]http://bielsys.blogspot.com.es/2015/01/manejando-bits-con-harbour.html[/url:7ry0gofw] |
xBlite.prg con xBrowse | Señores, alguien tiene la xBlite.prg (xbackuplite) del master Carlos Vargas con xBrowse? Si es así, usted podría enviarme:
<!-- e --><a href="mailto:kapiabafwh@gmail.com">kapiabafwh@gmail.com</a><!-- e -->
Gracias, saludos. |
xBlite.prg con xBrowse | Hola,
Yo uso una versión modificada de ese código, la pongo a continuación
[code=fw:3rbgg8qh]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><span style="color: #00D7D7;">#include</span> <span style="co... |
xBlite.prg con xBrowse | Gracias José, me genera estos errores:
[code=fw:1v2w3c0g]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Error: <span style="color: #000000;">Unresolved</span> external <span style="color: #ff0000;">'_HB_FUN_OAPP'</span> referenced <span style="color: #0000ff;">from</span> C:\FWH1701\SAMPLES\XBL<br />... |
xBlite.prg con xBrowse | Hi,
oApp() is a function that return an object where I store all the configuration of my applications. And Ut_brwrowconfig is a function to customize the browses. You can delete the calls them without any problem.
Regards, |
xBlite.prg con xBrowse | José
En que librería estás estas funciones:
Error: Unresolved external '_HB_FUN_HB_SETDISKZIP' referenced from D:\SISTEMAS\ACRSOFT\OK\OBJ\ACR.OBJ
Error: Unresolved external '_HB_FUN_HB_ZIPFILE' referenced from D:\SISTEMAS\ACRSOFT\OK\OBJ\ACR.OBJ
Error: Unresolved external '_HB_FUN_HB_GETFILESINZIP' referenced from D:\... |
xBlite.prg con xBrowse | Adhemar:
[code=fw:221k66u0]<div class="fw" id="{CB}" style="font-family: monospace;"><br />echo %fwh%\lib\Fivehx.lib %fwh%\lib\FiveHC.lib %fwh%\lib\libmysql.lib + >> b32.bc<br />echo %hdirl%\rtl.lib + >> b32.bc<br />echo %hdirl%\vm.lib + >> b32.bc<br />echo %hdirl%\%GT%.lib + >> b32.bc<br />echo %hdirl%\lang.lib + >> ... |
xBlite.prg con xBrowse | Adhemar, mira este porfa:
[url:1ngltuvi]https://code.google.com/archive/p/fuentes-javier-lloris/downloads[/url:1ngltuvi]
Saludos. |
xBlite.prg con xBrowse | Haciendo pruebas con xHarbour para BCC7.2 y FWHX17.01:
[url:14q3mn6h]http://i.imgur.com/FNn6ReH.png[/url:14q3mn6h]
[img:14q3mn6h]http://i.imgur.com/FNn6ReH.png[/img:14q3mn6h]
Saludos. |
xBlite.prg con xBrowse | Download disponible con fuentes y executable:
[url:3jakxxsf]http://www.pctoledo.com.br/forum/viewtopic.php?f=2&t=8731&p=114846#p114846[/url:3jakxxsf]
Porfa, mantener el nombre del autor.
Regards, saludos. |
xBrouse with SQRDD+Firebir | friends who can help me, I'm using 11.4 and FWH xharbour1.21 sqlrdd + + firebird
I'm having the following problem:
ride browse through the code below, to receive the focus browse duplicates the first record, not showing the table data properly. I tried everything and nothing.
with more normal work with dbf sql sqrdd u... |
xBrouse with SQRDD+Firebir | HI:
I USE xHarbour 1.2x+SQLRDD+fwh .
Xbrowse Work fine in MYSQL or PostgeSQL.
try:
oDlg:oClient := oBrwBuscaItem
oBrwBuscaItem:Refresh()
--
Best Regards
-------------------
kokoo KAO |
xBrouse with SQRDD+Firebir | the problem is that when displaying the dialog in xbrowse it's an automatic refresh, doubling the first line of data to browse.
and how to use the posted dbusearea dbf to work well, but with the firebird me this problem occurs, and sometimes it shows more correct when you select the first line of xbrowse it's an autom... |
xBrouse with SQRDD+Firebir | Please try this simple code and let us know if this works. Please also post a screen shot.
[code=fw:1yuw9p7b]<div class="fw" id="{CB}" style="font-family: monospace;">XbrNumFormat<span style="color: #000000;">(</span> <span style="color: #ff0000;">"E"</span>, .t. <span style="color: #000000;">)</span><br /><br... |
xBrouse with SQRDD+Firebir | The problem that the first ride with the xbrowse dbusearea simple as below. ride all normal columns. need to do more then a select on the table,
and the alias is returned by the function which returns at a lower dbusearea data with select.
ie when I run this function, alas, while the parameters to sql instruncao, and ... |
xBrouse with SQRDD+Firebir | SOLVED!! |
xBrowse | Hallo alle zusammen,
Frage: Wer von Euch setzt auch xBrowse (FWH) ein.
Ich hab damit ein Problem bei dem ich nicht recht weiterkomme.
Ich habe MS-SQL Daten und möchte die im xBrowse in einem MDI Fenster anzeigen. Soweit so gut - funktioniert auch.
Wenn allerdings wegen eines Filters keine Daten gefunden werden, wird... |
xBrowse | Dear friends,
i' m using FWH 2.7 and get an error
[code:1cou85jb]Unresolved external '_HB_FUN_TXBROWSE'[/code:1cou85jb] when building an app with a TXBrowse.
Do i have to link an additional file to my app?
Regards,
Detlef |
xBrowse | Detlef,
Have you rebuilt the FWH PRG library yourself ?
If yes, then maybe you missed to include it |
xBrowse | Antonio,
i really forgot that i did rebuilt the FWH PRG library myself.<!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
Now it's working.
Sorry for troubling you.
Detlef |
xBrowse | Detlef,
You are welcome, glad to know you solved it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
xBrowse | tengo un xbrowse en una ventana y no se porque capturando el metodo
bkeydown me ejecuta el resultado 2 veces, es decir:
[code:1mnrqyl6]
...
...
::oBrowse:bKeydown:={|nkey|press_on_browse(nKey,self)}
...
...
function press_on_browse(... |
xBrowse | Mike,
En la Clase TXBrowse realiza esta modificación:
[code:1qogyjv1]
METHOD KeyDown( nKey, nFlags ) CLASS TXBrowse
if ::bKeyDown != nil
Eval( ::bKeyDown, nKey, nFlags )
return nil
endif
...
[/code:1qogyjv1] |
xBrowse | Mike,
Mejor, preferiblemente, elimina esas líneas:
[code:hhpx4gy4]
if ::bKeyDown != nil
Eval( ::bKeyDown, nKey, nFlags )
endif
[/code:hhpx4gy4] |
xBrowse | Funcionó correctamente, Gracias Antonio <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> |
xBrowse | Hola Amigos.
Estoy peleándome desde hace algún tiempo con el xBrowse
Tengo un ejemplo bastante sencillo de una entrada de datos común para hacer mantenimiento a un archivo de Presupuestos mensuales con total acumulado.
Para el ejemplo, tipeo en la cuenta cualquier dígito y en la rutina de “Co130ChCta” lleno el array “t... |
xBrowse | Jorge, cuando cambia el array tPre no cambia el contenido del xBrowse. El buffer de array de xBrowse es oBrw:aArrayData, tienes que hacer 1 de estas 2 cosas:
- Asigne el buffer del campo editado a oBrw:aArrayData
- Atualice el contenido de oBrw:aArrayData despues de edicion de las celdas
Puedes hacer:
[code:1vkgkqtf]... |
xBrowse | Hola Maurilio
Muchas gracias por tu ayuda. Tu Portuñol es igualito a mi Español.
Actualicé el oBrw:aArrayData antes de hacer los Refresh() y funciona perfecto cuando hago el seguimiento.
Pero todavía tengo el problema que después de entrar a la rutina Co130ChMen por el bEditValid, entra otra vez a esta misma rutina au... |
xBrowse | Hola Amigos.
nadie tiene un ejemplo sencillo de entrada de datos en xBrowse cambiando de casilla por programa?
Gracias
J. vargas |
xBrowse | Amigos:
Como hago para mostrar 3 campos por linea.
Tengo una BD de 9 campos y quiero mostrarlos de a 3 o sea
3 celdas de 3 campos (son de diferente tipo)
Muchas gracias.
Ruben Fernandez. |
xBrowse | Amigos:
El For ... Next
no me funciona
Debo cargar los campos sin saber el nombre de ellos, por eso
lo averiguo con Fieldname.
Muchas gracias.
oBrw := TXBrowse():New( oDlg )
oCol:=oBrw:AddCol()
oCol:cHeader:= "Mesa" +CRLF+"Apertura"+""
oCol:bStrData:= {|| DToC((basedato)->sesi)+CRLF+(basedato)->MESA_1+CRLF+(based... |
xBrowse | Today I tried for the first time the FWH own xBrowse.
A great piece of software.
Regards,
Otto |
xBrowse | Yes. I love xbrowse. Though I have a short wishlist |
xBrowse | All our browses changed into xbrowse since 2003 .
This our modifyed xbrowse:
[img:yxh56pi3]http://www.xtech.com.cn/down/xbrowse.jpg[/img:yxh56pi3]
[img:yxh56pi3]http://www.xtech.com.cn/down/xbrowse2.jpg[/img:yxh56pi3]
Shuming Wang |
xBrowse | Nice
Almost all my browses are also on xbrowse.
But I wish someone makses an improvement to provide grouped headers like in tsbrowse |
xBrowse | Necesito que me ayuden con esto con este ejemplo trabaja bien el xbrowse con AdoBase y MySql[code:28mcxlj4]
#include "FiveWin.ch"
#include "xBrowse.ch"
STATIC oWnd
//-------------------------------------------------------------------------------------
Function Main()
SET EPOCH TO 1920
SET DATE FORMA... |
xBrowse | pero exactamente en que es lo que quieres ayuda? |
xBrowse | Holael xbrowse o browseme muestra todos los campos de la base de datospero si yo quiero que solo me muestre 4 campos en el caso de utilizar xbrowse con DBF lo hago de la siguiente forma y trabaja bien[/code]oBrw:AddCol():bEditValue := { || fecasi } oBrw:AddCol():bEditValue := { || asiento } oBrw:AddCol():bEditValue := ... |
xBrowse | ya con adobase de Adolfo y xBrowse de Fivewin puedo visualizar en una base de datos MySql los campos que quiera Gracias de todas formas |
xBrowse | Hola Amigos:Estoy poniendo los xBrowse en vez de los ListBox y he creado este sencillo ejemplo: oBrw := TxBrowse():New( oDlgw ) oBrw:nHeaderLines := 1 oBrw:lAllowColSwapping :=.F. oBrw:nColSel := 1 oBrw:nRowHeight := 18 oBrw:nMarqueeStyle := MARQSTYLE_HIGHLROW oBrw:nCo... |
xBrowse | Puedes pintarlo en el dialogo con el tamaño y posicion que desees. Debes usar el Custom Control en el editor de recursos..RC[code:tqb8vmj7]
CONTROL "txBrowse", 701, "txBrowse", WS_TABSTOP|0x00300000, 193, 47, 345, 255[/code:tqb8vmj7]y usar oBrw:CreateFromResource(701), en lugar de CreateFromCode.De todas formas con nTo... |
xBrowse | Gracias Biel:ya he conseguido ponerlo donde quiero y con el tamaño que quiero con nTop, nLeft y con nRight y nBottom.Un saludo y gracias |
xBrowse | Hola a todos(as):
Alguien tiene un ejemplo de cómo partir trabajando con xBrowse?
Estoy comenzando un nuevo proyecto y me gustaría utilizarlo. Nunca lo he hecho.
Además todas las consultas van hacia MySQL.
Cómo se trabaja con un recordset en xBrowse y si éste soporta paginacion para que las consultas no sean tan pesada... |
xBrowse | David:
Mira este blog, ahí encontrarás mucho de lo que sembraste.
<!-- m --><a class="postlink" href="http://sqlcmd.blogspot.com/">http://sqlcmd.blogspot.com/</a><!-- m -->
Saludos |
xBrowse | [quote="Armando":323cgru8]David:
Mira este blog, ahí encontrarás mucho de lo que sembraste.
<!-- m --><a class="postlink" href="http://sqlcmd.blogspot.com/">http://sqlcmd.blogspot.com/</a><!-- m -->
Saludos[/quote:323cgru8]
Gracias Armando.
Que increíble, esa página ya la tenía en mis favoritos y no se me ocurrió..... |
xBrowse | Hola a todos,
Tengo un par de problemas con xBrowse.
El primero, cada vez que hago left-Click en un registro se me posiciona en la primera posición del browse.
Es muy dificil que no lo haga ?
La Segunda, existe un codeblock de Selección donde Doble-Left-Click y ENTER lo evaluaran ?
Muchas Gracias. |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.