Search found 12008 matches: problema

Return to advanced search

Un problema con el puerto Comm

Buenos días, os cuento porque no encuentro explicación y varios ojos ven mas que dos. Tengo dos dispositivos que envían en determinados eventos una cadena de texto fija en la que figura la hora los minutos los segundos y las milésimas por el puerto serie, ambas envían exactamente lo mismo. Diferenci...
by groiss
Wed Apr 03, 2024 8:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Un problema con el puerto Comm
Replies: 1
Views: 328

Error Usando LoadLib32 o LoadLib - Retorno Puntero

... de los sistemas con FWH 24_02 - Xhar 1.3.1 build 20240324 - Bcc770 (32) He encontrado errores usando las DLL que funcionan en otra versión. El problema es que al cargar las DLL el handler retorna un Puntero , esto provoca que al llamar a las funciones internas de las DLL estas arrojen error. ...
by GUSPRE
Mon Apr 01, 2024 3:38 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Error Usando LoadLib32 o LoadLib - Retorno Puntero
Replies: 3
Views: 689

Re: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna

... que no esta habilitada para EDIT_GET_LISTBOX, el bEditWhen Este es un trozo del programa donde esta el XBROWSE,, en el EDIT_GET, funciona sin problema, habilita y desabilita segun opcion, pero el el EDIT_GET_LISTBOX, no hace nada, deja todo habilitado y asi como esta ni siquiera me envia el ...
by elmoiquique
Thu Mar 28, 2024 9:01 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBROWSE, con Get, Combobox y CheckBox, en una misma Columna
Replies: 10
Views: 2637

Re: Problema super raro (SOLUCIONADO)

Mr. Rao and friends I apologize, after several nightmare nights, I have finally solved the problem, the problem was in the last line of this code. [code] oRsWrk := FW_OpenRecordSet(oApp:oCon,"SELECT " +; "*," +; "RUB_DES," +; "CON_DES " +; "FROM " +;...
by Armando
Thu Mar 28, 2024 1:09 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Error en Listbox.

Solucionado!!!
era un problema con el FONT.

Gracias
by José Camilo
Mon Mar 25, 2024 5:27 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Error en Listbox.
Replies: 1
Views: 311

Re: Problema super raro

I get this error Error description: (DOS Error -2147352567) WINOLE/1007 [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community]Undeclared variable: oRsWrk (0x80004005): Microsoft OLE DB Provider for ODBC Drivers Args: [ 1] = C SELECT * INTO oRsWrk FROM oRsDet oRsWrk and oRsDet are RecordSets. You should ...
by nageswaragunupudi
Sun Mar 24, 2024 10:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

First please let me know if you built my sample program as it is (without any changes) and tested it? Did it work or not?
by nageswaragunupudi
Sun Mar 24, 2024 10:15 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Mr. Rao: First of all, thank you very much for your support. Whit this code       oApp:oCon:Execute( "SELECT * INTO oRsWrk FROM oRsDet" )  I get this error Error description: (DOS Error -2147352567) WINOLE/1007 [MySQL][ODBC 5.1 Driver][mysqld-5.1.53-community]Undeclared variable: o...
by Armando
Sun Mar 24, 2024 6:10 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Ok. This can be done in different ways. Let us now try the 1st method. FWH provides a cloud server for our testing. Let us use this server for our tests. Creating temporary table with data from the permanent table: oCn:Execute( "SELECT * INTO [TBL_TEMP] FROM [TBL_PERM]" ) Copying b...
by nageswaragunupudi
Sun Mar 24, 2024 12:53 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Mr. Rao:

Yes, I want to copy the records from a non-temporary table and pass them to a temporary table to modify them
and then return them to the non-temporary table

There are 5 records in the non-temporary table and only 2 are passed to the temporary table

Best regards
by Armando
Sun Mar 24, 2024 1:31 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Do you want to copy all records from one table to another table and display them in XBrowse?
by nageswaragunupudi
Sat Mar 23, 2024 10:36 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Nothing to worry. You are not alone.
We are always here to support you in ever way.
At times we may take some time to respond.
Pls wait for my next posting
by nageswaragunupudi
Sat Mar 23, 2024 10:32 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Mr. Rao & Friends: Thanks to your advice, the first problem is solved, but now the problem is when retaking the recorded records and displaying them in an xBrowse, it only shows 2 of 5 records This is my code       IF lCrealo         DO WHILE ! oRsDet:EOF()            oRsWrk:AddNew(&...
by Armando
Sat Mar 23, 2024 10:23 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Re: Problema super raro

Code: Select all  Expand view
TRY
   oRsWrk:UpDate()
CATCH
   ? "Error"
   FW_ShowAdoError( oCn )
END
//   oRsWrk:ReQuery()
 


No need to use ReQuery() after oRs:Update().
by nageswaragunupudi
Sat Mar 23, 2024 8:02 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132

Problema super raro (SOLUCIONADO)

... foro, les cuento: En una aplicación, hay un PRG que me tiene vuelto loco, me explico, con el siguiente código agrego un registro a la tabla, el problema es que todo funciona al 100% pero solo agrega dos registros, si agrego un tercer registro no lo graba :oops: , tengo otros PRGs con la misma ...
by Armando
Sat Mar 23, 2024 6:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Problema super raro (SOLUCIONADO)
Replies: 10
Views: 2132
PreviousNext

Return to advanced search