topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Camera Control needed for Tablet | OK but I haven't had Borland installed here for many years so I can't really help. |
Camera Control needed for Tablet | Tim,
This version works fine with MSVC. This is a work in progress.
You have to link MS strmiids.lib
[code=fw:1flygou0]<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;">fun... |
Camera Control needed for Tablet | I appreciate if you can test it on your tablet.
It does nothing yet. We are just converting code, step by step. |
Camera Control needed for Tablet | I am going to code it for MSVC so you can help me to test it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Camera Control needed for Tablet | This version should report the camera name:
[code=fw:1xa9s71f]<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>... |
Camera Control needed for Tablet | More
You will get two warnings with verbose info that you can safely ignore
[code=fw:16co49b4]<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 sty... |
Camera Control needed for Tablet | Tried building that with MSVC and get at least 102 errors ... |
Camera Control needed for Tablet | This version shows the camara window <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:fgmm2z0l]<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... |
Camera Control needed for Tablet | Tim,
Please copy my PRG to FWH\samples\dshow.prg and do buildh32.bat dshow
Thats how I am testing it here |
Camera Control needed for Tablet | [img:2q43y6tt]https://bitbucket.org/fivetech/screenshots/downloads/dshow.JPG[/img:2q43y6tt] |
Camera Control needed for Tablet | Are these still Borland builds ? I still cannot get it to compile with MSVC 2015
Tim |
Camera Control needed for Tablet | I am using MSVC 2015 Community Edition
do samples\buildh32.bat dshow |
Camera Control needed for Tablet | going to bed <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Camera Control needed for Tablet | I'm getting an error at line 5, and the a has an ' over it. |
Camera Control needed for Tablet | I cleaned up the space around that line, and now get the following build error following your instructions:
[code=fw:14oc34cs]<div class="fw" id="{CB}" style="font-family: monospace;"><br />Lines <span style="color: #000000;">4861</span>, Functions/Procedures <span style="color: #000000;">1</span><br />Generating C so... |
Camera Control needed for Tablet | Tim,
Please use this dshow.prg:
[url:2k9yqo89]https://bitbucket.org/fivetech/fivewin-contributions/downloads/dshow.prg[/url:2k9yqo89] |
Camera Control needed for Tablet | Antonio,
I am able to get this to compile and run using VS 2015, but I needed to do/change a couple things:
1) Explicitly set to compile as CPP code instead of C.
2) Changed MessageBox() calls to MessageBoxA() to get around a unicode/casting error. |
Camera Control needed for Tablet | Robb,
Yes, it has to be compiled in C++ mode
FWH\samples\buildh32.bat does it automatically |
Camera Control needed for Tablet | > 2) Changed MessageBox() calls to MessageBoxA() to get around a unicode/casting error
that may be as you are using unicode at compiling time.
buildh32.bat works fine and does not use unicode |
Camera Control needed for Tablet | One other thing I forgot is I had to add "strmiids" to my list of libs to resolve a bunch of unresolved externals. I don't see that lib referenced in buildh32.bat so I'm not sure why I see the missing externals and you don't.
I am able to get it to run both as 32 and 64 bit. |
Camera Control needed for Tablet | Robb,
I mentioned here that strmiids.lib has to be linked:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=193422#p193422">viewtopic.php?p=193422#p193422</a><!-- l -->
many thanks for your feedback |
Camera Control needed for Tablet | This version turns the ActiveMovie Window as a child window of our app:
dshow.prg
[code=fw:3taqji07]<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<spa... |
Camera Control needed for Tablet | Now we turn it into a control <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:fsj9olem]<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=... |
Camera Control needed for Tablet | OK ... so I finally got it to build and work. There are a couple of warnings but we can do that later.
I see we are first accessing the webcam. Ultimately, what I need is to have it open in snapshot mode. My clients will be saving photos of parts and vehicles that they will be looking at within the program. |
Camera Control needed for Tablet | Then we make it a true FWH control <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
Click over the camera display!
[code=fw:39pl3i0j]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin... |
Camera Control needed for Tablet | Antonio, on a device with 2 or more cameras do you know how to select which camera to use? |
Camera Control needed for Tablet | Never mind on camera selection, it is a simple as changing the device number. So my next question is how to enumerate all available cameras. |
Camera Control needed for Tablet | Now you can click on it to stop it and record again, alternatively:
dshow.prg
[code=fw:1x8i1w2e]<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: #00D7D7;">#define</span> GWL_STYLE <sp... |
Camera Control needed for Tablet | Once again too many errors to compile this latest version. It seems a "select all" and copy of the code from the forum is adding some foreign characters. The downloaded .prg worked fine.
Tim |
Camera Control needed for Tablet | Robb,
This code seem to do what you want:
[code=fw:13ls9nkm]<div class="fw" id="{CB}" style="font-family: monospace;"> <span style="color: #B900B9;">// If the user has included the "/list" command line</span><br /> <span style="color: #B900B9;">// argument, just list available devices, then ... |
Camera Control needed for Tablet | Tim,
Please download dshow.prg again:
[url:qs5pty17]https://bitbucket.org/fivetech/fivewin-contributions/downloads/dshow.prg[/url:qs5pty17] |
Camera Control needed for Tablet | This version allows to take as many photos as wanted <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
dshow.prg
[code=fw:2j9zuf43]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"... |
Camera Control needed for Tablet | We don't need to stop the camera to take the photo, so we can simply do:
oCamera:bLClicked = { || TakePhoto( oCamera ) } |
Camera Control needed for Tablet | File updated:
[url:b02c660a]https://bitbucket.org/fivetech/fivewin-contributions/downloads/dshow.prg[/url:b02c660a] |
Camera Control needed for Tablet | Removed warnings and EXE included:
[url:1f5gihfi]https://bitbucket.org/fivetech/fivewin-contributions/downloads/dshow.zip[/url:1f5gihfi] |
Camera Control needed for Tablet | OK ... that is running and building fine here ( from the .prg included in the .zip file ).
Tim |
Camera Control needed for Tablet | On my Microsoft Surface Pro 3 with Windows 10 dshow.exe gets error.
"Could not render preview video stream"
dshow.exe was in the last .zip file you linked to. |
Camera Control needed for Tablet | My Microsoft Surface 3 with the current Win 10 works fine with dShow.exe |
Camera Control needed for Tablet | Tim, Gale,
Are you using different Windows builds ? |
Camera Control needed for Tablet | I am using Microsoft Windows 10 Pro
Version 10.0.10586 Build 10586
x64-based PC
I will try running it on our Panasonic Touphpad with Windows 10 Pro x86 version |
Camera Control needed for Tablet | Antonio,
On my Surface 3 ( not the pro model ), I just did a complete fresh re-install so it is the actual Anniversary release. I did it yesterday. It shows as Home: 14393.82
On my desktop, it is also working. This is an Insider Fast machine, build 14095.rs_prelease.160811-1739. |
Camera Control needed for Tablet | Works ok on Panasonic ToughPad
Windows 10 Pro 64bit
Same windows build as the one on my Surface Pro 3.
Dshow defaults to camera 2 that faces user. |
Camera Control needed for Tablet | Gale,
[quote="Gale FORd":igb3zoqn]On my Microsoft Surface Pro 3 with Windows 10 dshow.exe gets error.
"Could not render preview video stream"
dshow.exe was in the last .zip file you linked to.[/quote:igb3zoqn]
After the error, is the app working fine ? |
Camera Control needed for Tablet | It shows a black square box inside the dialog. If I click on black square it creates another black square beside it.
It also creates a 352kb photo.bmp but the image seems to be empty. |
Camera Control needed for Tablet | Gale,
Could you run this utility on your surface to see if it helps ?
[url:37ho8yd9]http://error-toolkit.com/error.php?t=638[/url:37ho8yd9] |
Camera Control needed for Tablet | Antonio,
Looks like we have a start for a FWH camera control. You used a SaveToBMP( ) but actually we would benefit by saving pictures to an alternative file, ie. JPG.
Tim |
Camera Control needed for Tablet | Tim,
A first version
tcamera.prg
[code=fw:29ls6iz5]<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: #00D7D7;">#define</span> GWL_STYLE <span style="color: #000000;">-16</span><br /><... |
Camera Control needed for Tablet | Methods Play and Stop:
[code=fw:2nr671bv]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">CLASS</span> TCamera <span style="color: #0000ff;">FROM</span> TControl<br /><br /> CLASSDATA lRegistered AS LOGICAL<br /><br /> <span style="color: #00C800;">DATA</s... |
Camera Control needed for Tablet | Antonio:
I tried to compile tcamera.prg using FW 16.06 and BCC7 and I got the following errors:
[code=fw:3dakw6d0]<div class="fw" id="{CB}" style="font-family: monospace;">Error E2342 TCAMERA.prg <span style="color: #000000;">239</span>: <span style="color: #000000;">Type</span> mismatch in parameter <span style="colo... |
Camera Control needed for Tablet | Gustavo,
It only works with Microsoft Visual Studio Community 2015 |
Camera Control needed for Tablet | Dear Antonio
I found this <!-- m --><a class="postlink" href="http://www.rohitab.com/discuss/topic/34389-directshow-webcam-capture-class-c/">http://www.rohitab.com/discuss/topic/34 ... e-class-c/</a><!-- m -->
perhaps it can be usefull to use it for borland |
Camera Control needed for Tablet | Can you make a version to compile with harbour bcc7 for win10pro ?
or a version with a dll or lib we can use it
i have a tablet and i need it thanks |
Camera Control needed for Tablet | Silvio,
The application requires files only available with the Microsoft Visual Studio Community edition. It will not work with the Pelles compiler ( xHarbour xBuilder ), or Borland. The resources are not available in those programs.
The program was developed using VSC 2015 but works fine with VSC 2017 also.
Tim |
Camera Control needed for Tablet | [quote="Antonio Linares":17ekvfq8]First steps using Borland (some changes are required for MSVC)
[code=fw:17ekvfq8]<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<... |
Camera Control needed for Tablet | Can we call Dll functions for Intel Cameras ( directshow) ?
<!-- m --><a class="postlink" href="https://www.codeproject.com/Articles/330177/Yet-another-Web-Camera-control">https://www.codeproject.com/Articles/33 ... ra-control</a><!-- m -->
<!-- m --><a class="postlink" href="https://msdn.microsoft.com/en-us/library... |
Campanita | Una pregunta tonta. ¿que significa el puntito negro sobre la campanita del foro?
Gracias |
Campanita | Antolin,
Eso significa que tu has posteado algo al hilo en cuestion.
Atte.,
Lautaro Moreira
Osorno
Chile |
Campo DATE vacio | Hola amigos:
Como puedo hacer para que un campo de tipo DATE vacio a través de DATEPICKER no me muestre la fecha de hoy ?, ahora cuando el campo DATE en la dbf esta vacio en el diálogo me muestra la fecha de hoy y yo necesito que se muestre vacio.
Saludos
xHarbour
FWH810
PellesC |
Campo DATE vacio | Armando...
verifica este post
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?t=3181">viewtopic.php?t=3181</a><!-- l --> |
Campo DATE vacio | Daniel:
Muchas gracias por la respuesta, antes de preguntar busque en el foro pero no hallé el post <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
Voy a hacer mis pruebas y te comentaré el resultado.
Saludos |
Campo DATE vacio | Daniel y amigos del foro:
Estoy utilizando el TDTpicke.Prg modificado y puesto aquí en el foro sin embargo el control me sigue mostrando la fecha de hoy, lo hice así:
1.- Estoy compilando el TDTPicke.Prg como un programa más de mi aplicación
2.- Estoy agregando la siguiente línea de código al PRG donde necesito el ca... |
Campo DATE vacio | Armando...
Al parecer no es posible mostrar vacio el control SysDateTimePick32, siempre mostrara una fecha, pero podrias usar desde recurso SHOW NONE = YES, eso añade un checkbox al control que hara posible no asignar fecha y el campo quede en blanco, siempre y cuando el checkbox este desmarcado. |
Campo DATE vacio | Daniel:
Lamentablemente no he podido avanzar, con la propiedad SHOWNONE = YES
me tira un error "El sistema ha detectado un problema y debe cerrarse" y no
se crea el archivo LOG para ver por donde ir.
Sería fabuloso encontrar la forma de que la clase original nos permitiera mostrar campos
de fecha vacios.
Saludos |
Campo DATE vacio | Armando.
No es un problema de la clase, SysDateTimePick32 es un control propio de window y al paracer no esta en sus caracteristicas mostrar vacio el campo
que version de fwh estas usando? |
Campo DATE vacio | Daniel:
Entiendo, te comento que el dialogo donde estoy usando esta clase es un dialogo para
ABC de empleados y los campos son Fecha de Ingreso (Siempre debe tener algun valor),
Fecha del último incremento de salario (No siempre tiene valor) y la fecha de baja (tambien
no siempre debe tener valor).
Tal vez la solució... |
Campo DATE vacio | Armando
voy a tratar de hacer un ejemplo para tu version |
Campo DATE vacio | Armando...
para la version que usas ya esta disponible un ejemplo que prueba de forma efectiva el uso correcto del control desde recurso
mira el ejemplo: datetime.prg |
Campo DATE vacio | Daniel:
Muchas gracias por tu interés, peroooo <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
He compilado el ejemplo que me mencionas y no tira error pero en la ejecución me tira
el famoso error "El programa ha encontrado un error y debe cerrarse". <!-... |
Campo DATE vacio | Armando...
prueba con este ejecutable... esta construido con la version 810
[url:3sapacds]http://www.sitasoft.net/fivewin/samples/datetime.zip[/url:3sapacds] |
Campo DATE vacio | Daniel:
Tu ejemplo funciona de 100.
En mi caso el .RC lo convertí a .RES pues mi aplicación usa ese tipo de archivo, será por eso que me tira el error ?.
Podrías enviarme tu BAT de compilación para probar si es por ahi el problema ?
Saludos |
Campo DATE vacio | Armando
uso el default que viene con fwh en la carpeta de samples |
Campo DATE vacio | Daniel:
Bingo <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smile" /><!-- s:) --> al parecer el problema era porque tengo modificada la clase TGET y por ahí venia el error, he compilado sin esta clase y todo funciona muy bien.
Muy agradecido por tu tiempo e interés.
Saludos |
Campo DATE vacio | Armando...
menos mal que diste con el problema, estoy a la orden |
Campo Date | Hola antonio
En un campo DATE se requiere que cuando el cursor llegue e este despliegue un dialogo en donde pinta el mes y el dia resaltado en forma grafica, como lo puedo hacer en FiveWin.
Esto con el animo de evitar cometer errores de digitacion
De antemano Gracias por tus enseñanzas
Cordialmente
Jairo Barbosa |
Campo Date | Aqui hay algo que creo puede servir
<!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=8117&highlight=dtpicker">http://fivetechsoft.com/forums/viewtopi ... t=dtpicker</a><!-- m -->
Saludos |
Campo Date | [quote="leandro":3t5684ah]Aqui hay algo que creo puede servir
<!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=8117&highlight=dtpicker">http://fivetechsoft.com/forums/viewtopi ... t=dtpicker</a><!-- m -->
Saludos[/quote:3t5684ah]
Leandro
Un saludo Cordial
Quiero agradecerte la exp... |
Campo MEMO | Hola a todos:
Estoy utilizando por primera vez los campos MEMO y tengo el siguiente problema:
Mientras no se grabe nada en el campo todo va bien pero cuando introduzco un dato en el campo MEMO este en vez de incrementarse lo que se introduce se incrementa a 8Gb, si 8Gb, y no se como se puede corregir ya que creo que ... |
Campo MEMO | hola,
creo que esto no es normal, me gustaría saber como creas la tabla DEPCUEPR.DBF, si utilizas el mítico DBU.EXE de clipper, o algún otro utilitario, o bien, si lo creas por código en tu aplicación, coloca el trozo de programa en donde lo haces, así tendremos un poco mas claro el panorama para poder ayudarte.
salu... |
Campo MEMO | Hola de nuevo.
He creado el archivo desde codigo y en vez de crearme un archivo dbt me crea uno ftp y con las primeras puebas funciona aparentemente bien, me podeis comentar:
- Hay alguna diferencia.
- Es mejor el DBT
- Si es asi como se puede crear el DBT en vez del FTP desde codigo
Por otra parte se puede separar... |
Campo MEMO | Carlos
hasta donde recuerdo DBT son campos memo originarios del RDD NTX de clipper
y FTP son los campos memo para el RDD CDX
los FTP son mucho mas pequeños que los DBT
de todas formas 8GB en un DBT es una barbaridad a menos que la base de datos tenga una cantidad enorme de registros |
Campo MEMO | [quote="colthop":1k94h5db]
- Hay alguna diferencia.
- Es mejor el DBT
- Si es asi como se puede crear el DBT en vez del FTP desde codigo
[/quote:1k94h5db]
Es mejor FPT, DBT es el historico formato de Clipper/dbase, FPT es introducido por FoxPro (FPT = Fox Pro Text) junto con los CDX. DBT tenia originalmente un tamaño d... |
Campo MEMO | Hola de nuevo:
Primero dar lasgracias por vuestras respuestas y segundo una pregunta mas:
- Tiene algun limite de caracteres ya que he introducido un texto y no me ha entrado.
Un saludo
Carlos |
Campo MEMO | Hola de nuevo:
Primero dar lasgracias por vuestras respuestas y segundo una pregunta mas:
- Tiene algun limite de caracteres ya que he introducido un texto y no me ha entrado.
Un saludo
Carlos |
Campo MEMO | Hola de nuevo:
rimero dar lasgracias por vuestras respuestas y segundo una pregunta mas:
- Tiene algun limite de caracteres ya que he introducido un texto y no me ha entrado.
Un saludo
Carlos |
Campo MEMO | Hola de nuevo:
Primero dar las gracias por vuestras respuestas y segundo una pregunta mas:
- Tiene algun limite de caracteres ya que he introducido un texto y no me ha entrado.
Un saludo
Carlos |
Campo MEMO | Hola de nuevo:
Primero dar las gracias por vuestras respuestas y segundo una pregunta mas:
- Tiene algun limite de caracteres ya que he introducido un texto y no me ha entrado.
Un saludo
Carlos |
Campo MEMO | en Clipper tenía el mismo límite que las strings, aproximadamente 64 Kb, pero en Harbour creo que el límite es mucho más alto, del órden de los GB, no creo que lo estés superando si lo que estas guardando sea texto. ¿Podrías poner algo de código para intentar encontrar el fallo?
Estoy adivinando que estás guardando los... |
Campo MEMO | Hola Carlos:
Adjunto te envio el codigo, pasa en dos apartados diferentes y que se necesita el mismo texto son:
Asi cargo los memos en las variables:
zCampoMe001 = CampoMe001
va002 = campome001
Asi lo solicito:
@ 95*ProporV, 35*ProPorH GET gDlg001 VAR zCampoMe001 MEMO OF oDlgwVen PIXEL COLOR escri02, fondo02 FONT o... |
Campo MEMO | Me confundes un poco...
zCampoMe001 = CampoMe001
va002 = campome001
@ 95*ProporV, 35*ProPorH GET gDlg001 VAR zCampoMe001 MEMO OF oDlgwVen PIXEL COLOR escri02, fondo02 FONT oFont SIZE 640*ProPorH, 1050*ProPorV NOBORDER
@ 10*ProporV, 35*ProPorH GET vDlg151 VAR va002 MEMO OF oDlgwBro PIXEL COLOR escri02, fondo02 FONT oF... |
Campo MEMO | Hola Carlos:
lo que dije es que hay dos sitios pordende se solicita un campo memo y he puesto las dos. Las tres primeras lineas de los apartados es una y las otras tres otra.
zCampoMe001 = CampoMe001
@ 95*ProporV, 35*ProPorH GET gDlg001 VAR zCampoMe001 MEMO OF oDlgwVen PIXEL COLOR escri02, fondo02 FONT oFont SIZE 640... |
Campo MEMO | Hola.
Cuidado con los campos memo. Si los utilizas para escribir, modificar o borrar su contenido... VAS A PERDER DATOS.
Campos memo=PROBLEMAS.
Trata de utilizar ficheros de texto (si te es posible) no te tendras problemas.
O Utilizar tablas con un campo caracter del maxímo tamaño que te permita el RDD y luego inte... |
Campo MEMO | Hola jMelgar:
Como se utilizarian archivos de textoy como puedosaber el maximode caracteres que permite el RRD.
Un saludo
arlos |
Campo MEMO | Hola Carlos
Yo tambien uso los famoso campos memo, ahora utilizo .CDX y el archivo de los campos memo son .FPT
Lo trabajo asi :
// para editarlo
mNotas := FItems->NOTAS // cargo la variable a partir de un campo MEMO de mi tabla
..............
..............
DEFINE DIALOG oDlg NAME "ITEM1" TITLE cArticulo
... |
Campo MEMO | Gracias Luis, seguro que me sirve todo lo que me has puesto, que es lo que estaba buscando.
Un saludo
Carlos |
Campo MEMO | Hola, de nuevo.
No se el tamaño máximo de los memos con CDX, ya que como te digo, los memo se corrompen MUY FACILMENTE y si la informacion que vas a guardar es importante (mas si se trata de la de un cliente) puedes tener problemas serios. Yo me libré por los pelos de dichos problemas. Suerte!, es lo unico que puedo d... |
Campo MEMO | [quote="colthop":1zyx8uf5]
En cualquiera de las dos, el texto se queda en:
"4.13. Subvenciones, donaciones y legados
Las subvenciones, donaciones y legados "
[/quote:1zyx8uf5]
Es como si el campo fuese un char y no un memo... no?
Podrias rechequear la estructura? o pásame por privado algo del código que yo pueda prob... |
Campo MEMO | Hola Carlos:
Si puedo pasarte algo del codigopor privado pero no se tu privado el mio es <!-- e --><a href="mailto:carlos@colthop.es">carlos@colthop.es</a><!-- e -->.
No obstante pongo aqui lo principal :
Asi se crea la ventana donde esta alojado:
[code=fw:2v1tib61]<div class="fw" id="{CB}" style="font-family: mono... |
Campo Memo | Hola a todos
Tengo un campo memo en MySQL, y pues la verdad este campo memo guarda un archive de texto nitido con la misma estructura pero como puedo hacer para leer este campo memo y guardarlo con la misma estructura, lo que sucede es que al guardarlo en disco se corrompe la estructura.
Atentamente
Julio Ponce |
Campo Memo en Mysql -- Ayuda | Por favor necesito ayuda, requiero imprimir un campo memo de mysql el tipo de campo es [b:2xv2r3ae]longtext,[/b:2xv2r3ae]
este es el codigo que estouy manejando, en esot momentos estoy grabano y modificando bien usando TRichEdit(), el problema es como imprimo.
cText := oDatos:Fields("documen"):Value
cText... |
Campo Memo en Mysql -- Ayuda | Prueba asi:
[code=fw:xmtlbtzc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> nLines := MlCount<span style="color: #000000;">(</span>cText<span style="color: #000000;">)</span><br /> <span style="color: #00C800;">FOR</span> nFor := <span style="color: #000000;">1</span> <span st... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.