topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
listbox 10X6 | how i can create a listbox 6 column and only ten lines as an small timetable? |
listbox 10X6 | You may use a DBF with 10 records or an array with 10 items.EMG |
listbox 10X6 | A sample with bmp-resources [code:37xkjnbc]
// as a sample :
// a Color-Selection-browser
// The Array
PRIVATE aBRCOLOR2[12][2]
aBRCOLOR2[1] := { "1", "Black" }
aBRCOLOR2[2] := { "2", "White" }
aBRCOLOR2[3] := { "3", "Blue" }
aBRCOL... |
listbox 10X6 | Thanks Emg and ukoenig |
listbox 10X6 | Sorry , but I must make somethig as it [img:2lai3m94]http://img174.imageshack.us/img174/4197/tabletimedt6.png[/img:2lai3m94]Can I create it with xharbour and fwh ? |
listbox 10X6 | Yes, using a browse.EMG |
listbox 2nd line | Inserting the 2nd line into a listbox cause a double repaint of the line
- also in FWH . How can I to avoid this behavior.
Thanks in advance
Otto |
listbox 2nd line | Disturbing is that the listbox is opened without a scrollbar and after you insert the 2nd line the scrollbar is added.
On the PPC this makes an unstable impression to the user.
Best regards,
Otto |
listbox 2nd line | Otto,
Could you please provide a small and self contained PRG to reproduce it ? thanks |
listbox 2nd line | Hello Antonio,
attached the source code to test.
Please use the customer.dbf from the samples and delete all records.
Then add 2 records with the test program . You will see that the second
record forces the browser to insert the vertical scrollbar and repaints the
listbox. On a slow device and if you have many co... |
listbox 2nd line | Otto,
If you want the scrollbar to be shown since the beginning maybe you could have a dummy record added, like "items" or "please select" so you never have only one record.
Its a workaround for it, as a scrollbar does not allow to manage only one item. It has no sense. It is a Windows listbox control (with WS_VSCROL... |
listbox 2nd line | Hello Antonio,
Thank you for your answer.
But this workaround does not work well.
If I add only one record the flickering is there with the first I insert with the program.
If I start with 2 dummies on a pocket PC the screen is half full only with the dummies or does the new handy you are working on has such a big sc... |
listbox 2nd line | Otto,
Don't use WS_VSCROLL in the listbox. Paint the up and down as bitmaps, beside the listbox, and use them to oListBox:Select() the previous or next item (oListBox:GetSel()) <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
listbox con Select | Buenos dias con todos :
Una consulta, tengo un Listbox de una base de datos ordenados por ejemplo asi : INDEX : GRUPO + NOMBRE
y este por ejemplo lo activo con el SELECT GRUPO FOR "OFICINA"
Esto me permite listar solo el GRUPO de "OFICINA" y ordenado por NOMBRE:
Bueno la pregunta...:
yo ya tengo un posibl... |
listbox con Select | Lubin,
> SEEK "OFICINA"+ XNOMBRE
Deberías usar:
SEEK XGRUPO + XNOMBRE |
listbox con Select | Gracias Antonio por la respuesta, pero si la variable XGRUPO o campo indexado es de siete caracteres de igual manera funciona usandolo con XGRUPO o con "OFICINA", yo lo probe con variables y constantes y el resultado es el mismo problema. quizas falte algo mas al momento de reubicar el puntero del registro ??
[qu... |
listbox con scroll | Hola gente, necesito que en el listbox cuando edito una celda haga scroll, se puede? |
listbox con scroll | No entiendo. ¿Como asi? ¿Puedes explicarlo mejor o publicar un pequeño ejemplo de lo que realmente quieres hacer? Tu pregunta no tiene mucho sentido desde mi punto de vista.
Gracias.
Regards, saludos. |
listbox con scroll | As far as I remember, you need to create a [b:1nktwf0y]text field[/b:1nktwf0y] (see examples on the Internet) and specify the scrollbar property |
listbox con scroll | hi,
have a look into c:\fwh64\source\classes\datarow.prg
[code=fw:ohk5pd2p]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> <span style="color: #00C800;">Edit</span><span style="color: #000000;">(</span>...<span style="color: #000000;">)</span> <span style="... |
listbox con scroll | Tengo este listbox:
<!-- m --><a class="postlink" href="https://drive.google.com/file/d/1hV2oWaY9nOj2OJ_5TgRL7wnLya-MVe6t/view?usp=sharing">https://drive.google.com/file/d/1hV2oWa ... sp=sharing</a><!-- m -->
en la celda que se está editando, se puede que haga scroll sin agrandar el diálogo? |
listbox en ventana windows con split | Compañeros, buenas:
Hasta ahora, mis tablas de clientes, artículos, proveedores, facturas emitidas.... etc... siempre las presentaba mediante un listbox en una ventana DIALOGS con unos buttons debajo y listo!! con una resolución 800x600 y esto ocupaba prácticamente toda la pantalla.
Ahora me encuentro que con la evol... |
listbox en ventana windows con split | Hay varios ejemplos de SPLITTER, pero creo que el codigo de Fivedit0.prg te puede venir muy bien |
listbox en ventana windows con split | Lorenzo, yo lo utilizo de la siguiente manera, si te sirve te paso un trozo del codigo para que te des cuenta, todo lo que es mostrar de la manera que decis es no utilizando recursos .rc sino a traves del @ 0,0 t con paneles en su defectos sabiendo la resolucion de la pantalla.
[code=fw:w2jzw258]<div class="fw" id="{C... |
listbox header display | Antonio,
Redefine listbox (browse) has a bug in displaying headers with national chars (accented characters),
The bug comes from wbrowse.prg wbrwline function
Actual line 2286
if nRowPos == 0 .and. IsAppThemed()
DrawHeader( hWnd, hDC, nTop - 1, nLeft, nBottom, nRight, AnsiToOem( aValues[ n ] ) )
... |
listbox header display | Richard,
thanks! <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
listbox horizontal scrollbar | How to disable horizontal scrollbar on listbox?
Thanks in advance
Otto |
listbox horizontal scrollbar | Otto,
Have you tried with:
oLbx:oHScroll:SetRange( 0, 0 ) |
listbox not indexed | [img:2a1im4ao]http://img2.imageshack.us/img2/6394/clienti.png[/img:2a1im4ao]
why the records are not indexed ?
I made :
[code=fw:2a1im4ao]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">STATIC</span> <span style="color: #00C800;">FUNCTION</span> <span style="c... |
listbox recno() display | Hello,
I am trying to implement a recno() indicator for the listbox code below.
By moving the row selection up or down it would display the related .dbf recno() in the dialog.
I gather some sort of bSkip mechanism is required.
I do not know the proper coding / syntax to accomplish the task.
@ 1, 1 LISTBOX oLbx... |
listbox recno() display | Try using ON CHANGE clause.
EMG |
listbox recno() display | Enrico,
Thanks for your reply.
I need a little bit more.
So I try :
local nRecno
local bSkip
use TMD alias TM
//database oTm not using database statement, just the alias
@ 1, 1 LISTBOX oLbx ;
FIELDS TM->Shp_dte, TM->org, TM->DrpA, TM->DrpB ,;
TM->DrpC, TM->DrpD, TM->Drvr, TM->Notes ;
HEADERS "Ship Date", ... |
listbox recno() display | Bruce,
try this
[code=fw:2u47z2ch]<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: #00C800;">FUNCTION</span> MAIN<br /><span style="color: #00C800;">local</span> oDlg<br /><span style="... |
listbox recno() display | Bruce,
if you want to show the record number in a column then follow Marco's advice. If you want to show the record number in a GET while moving the record pointer then use something like
... GET oGet Var cVar
...
ON CHANGE ( cVar := LTRIM( STR( RECNO() ) ), oGet:Refresh() )
EMG |
listbox recno() display | [quote="MarcoBoschi":kjar6yun]If You substitute STR(recno(),4) With recno() You do not see record number but empty column
Do not ask me WHY![/quote:kjar6yun]
Because TWBrowse takes data numbers as bitmaps handles. That's how it displays bitmaps inside its cells.
EMG |
listbox recno() display | Marco / Enrico ,
Thanks for your tips/advice. I got it working.
One final question.
Within the dialog I'm using for this listbox, I have - Search, OK, and Cancel buttons.
When returning from the search function(), I have to click on the data portion of the listbox to get its "focus" back
to a highlighted ... |
listbox recno() display | As simple as oBrw:SetFocus(). <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
EMG |
listbox to xbrowse | Hi,
Since i convering my programs from an (older) FWH32 to FWH64, I also want to change from listbox to xbrowse.
I Have a little question about changing the configuration, online.
Now I was using
[code=fw:39ki830i]<div class="fw" id="{CB}" style="font-family: monospace;">sGetlist<span style="color: #000000;">[</... |
listbox to xbrowse | Hi,
I change by program, and use addcol()
This is working file when I do this before the browse is displayed, but when I do it while it is shown, I get this error after refreshing the browse.
[code=fw:1ggnk6gi]<div class="fw" id="{CB}" style="font-family: monospace;">Application<br />===========<br /> Pat... |
listbox to xbrowse | Maybe this sample help you
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=31625&p=184485&hilit=addcol#p184485">viewtopic.php?f=6&t=31625&p=184485&hilit=addcol#p184485</a><!-- l --> |
listbox to xbrowse | Hi,
the addcol() is working fine for creating by browse, but i want to add some columns while displaying the browse.
Then I get this error. |
listbox to xbrowse | Hi,
I found the problem!
I have to do a setado() again, after adding the column, and after adding that extra field in my recordset <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
listbox to xbrowse | Ok, great
He would only comment that after of an insert or add column, should make a call oBrw:Refresh (.T.) |
listbox y campo lógico | 1) En un Listbox con varios campos quiero que se vea un campo lógico, pero sale en blanco.- ¿Hay que emplear algun comando de conversión?
2) En el caso de que quisiera sustituir el valor .t. por un bitmap y el .f. por otro, sería posible sin convertirlo en 1/2?
Gracias y un saludo para todos
Manuel |
listbox y campo lógico | .......
.......
REDEFINE LISTBOX oLbx :
FIELDS If(Base->campo_log, "1","2") ;
HEADERS "Estado" ;
.......
.......
Salu2
Willi Quintana |
listbox y campo lógico | UPS,,, aqui va con bmp`s
oBmpOn := LoadBitMap(GetResources(),"Chk1")
oBmpOff := LoadBitMap(GetResources(),"Chk0")
...
...
REDEFINE LISTBOX oLbx;
FIELDS If(Base->campo_logo, oBmpOn,oBmpOff) ;
HEADRES "Estado" ;
...
...
Salu2
Willi Quintana |
listbox y campo lógico | Gracias Willi por tu respuesta. La primera opción funcionó, pero no la segunda con los bitmaps:
local oBmpSi := LOADBitmap( GetResources(), "\fw23\bitmaps\level1.bmp" )
local oBmpNo := LoadBitmap( GetResources(), "\fw23\bitmaps\level2.bmp" )
.....
@ 1,1 LISTBOX oLbx FIELDS IF (visitas->PENDIENTE, ;
... |
listbox y campo lógico | Amigo.
Los BMP`s los debes tener en tu DLL o en tu RC, no en ficheros...
local oBmpOff := LoadBitMap(GetResources(),"Chk0")
local oBmpOn := LoadBitMap(GetResources(),"Chk1")
Chk0 y Chk1 son BMP`s que deben estar dentro del recurso xxxx.rc o xxxx.dll segun uses..
Salu2
Willi <!-- s:lol: --><img src="{SMILIES_PAT... |
listbox y campo lógico | Para cargar BMP`s desde ficheros seria : (aunque no lo uso)
local oBmpSi := LoadBmp("\fw23\bitmaps\level1.bmp" )
local oBmpNo := LoadBmp("\fw23\bitmaps\level2.bmp" )
.....
@ 1,1 LISTBOX oLbx ;
FIELDS IF (visitas->PENDIENTE, oBmpSi , oBmpNo ),;
...
Salu2
Willi <!-- s:D --><img src="{SMI... |
listbox y campo lógico | Willi, ahora, gracias a tí, si funciona, aunque he tenido que sustituir LoadBmp por ReadBitmap y ha quedado así:
local oBmpSi := ReadBitmap( 0, "\fw23\bitmaps\level1.bmp" )
local oBmpNo := ReadBitmap(0 "\fw23\bitmaps\level2.bmp" )
.....
@ 1,1 LISTBOX oLbx ;
FIELDS IF (visitas->PENDIENTE, o... |
listbox y los item que selecciono | hola.
Tengo un listbox (no xbrowse) y necesito saber cuales son los item que seleccione (esta activo el multiselect)
gracias. |
listbox y los item que selecciono | [code=fw:e4j0gbj3]<div class="fw" id="{CB}" style="font-family: monospace;">oLbx:<span style="color: #000000;">aSelections</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span></div>[/code:e4j0gbj3] |
little blug in xBrowse method report() | Hello,
In method report(), it does not show on the preview Windows the title of the report, it says Fivewin Report instead.
[img:3u9bp40p]http://i43.tinypic.com/2nupsgk.png[/img:3u9bp40p]
This is a simple:
[code=fw:3u9bp40p]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color... |
little blug in xBrowse method report() | Please, include the fix ein FW 13.05.
Thank you very very much. |
little blug in xBrowse method report() | This is the fix:
[code=fw:3sig5xov]<div class="fw" id="{CB}" style="font-family: monospace;"> <br /><br /><span style="color: #00C800;">METHOD</span> Report<span style="color: #000000;">(</span> cTitle, lPreview, lModal, bSetUp, aGroupBy, cPDF <span style="color: #000000;">)</span> <span style="color: #00C800... |
little blug in xBrowse method report() | Included in FWH 13.05m thanks <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
little bug in rpreview.prg | I spend some time to find out why my pdf file never should have been created even when I could see the file open by Acrobat Reader. <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
I found out that in source\classes\rpreview.prg, line 1789
[color=#FF4000:315vxvls]return ::oDe... |
little bug in rpreview.prg | Sorry, but your question doesn't make sense. Are you using HARUPDF? Can you show a small practical example for testing?
Lo siento, pero tu pregunta no tiene sentido. ¿Está utilizando HARUPDF? ¿Puedes mostrar un pequeño ejemplo práctico para probar?
what version of Fivewin?
¿Qué versión de Fivewin?
Regards, saludos. |
little bug in rpreview.prg | look this,
[url:1wk6yhyo]http://fivetechsupport.com/forums/viewtopic.php?f=6&t=20328&start=15[/url:1wk6yhyo]
[url:1wk6yhyo]http://forums.fivetechsoft.com/viewtopic.php?f=16&t=37438&p=223831&hilit=lUseI2PDF#p223831[/url:1wk6yhyo]
Regards, saludos. |
little bug in rpreview.prg | Sorry, Karina.
Your answer doesn't make sense. <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
I did not post a question.
I described a logical error in the FW Modul source\classes\rpreview.prg.
Look at the lines 1789 and 1883 in the prg file and you will understa... |
little bug in rpreview.prg | [quote="Detlef":8wpl5lhg]Sorry, Karina.
Your answer doesn't make sense. <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
I did not post a question.
I described a logical error in the FW Modul source\classes\rpreview.prg.
Look at the lines 1789 and 1883 in the prg f... |
little bug in rpreview.prg | Dear karinha.
I did already explain the solution in my first post.
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
little bug in rpreview.prg | [quote="Detlef":2z5e2v4e]I spend some time to find out why my pdf file never should have been created even when I could see the file open by Acrobat Reader. <!-- s;-) --><img src="{SMILIES_PATH}/icon_wink.gif" alt=";-)" title="Wink" /><!-- s;-) -->
I found out that in source\classes\rpreview.prg, line 1789
[color=#FF4... |
live Installation von mod harbour auf einem neuen Server | [color=#FF0000:2pskqrpr]live Installation von mod harbour auf einem neuen Server [/color:2pskqrpr]
[url:2pskqrpr]https://www.youtube.com/watch?v=spvv43j-Zmo&feature=youtu.be[/url:2pskqrpr] |
live Installation von mod harbour auf einem neuen Server | [color=#FF0000:1tjj3e8s]live Installation von mod harbour auf einem neuen Server [/color:1tjj3e8s]
[url:1tjj3e8s]https://www.youtube.com/watch?v=spvv43j-Zmo&feature=youtu.be[/url:1tjj3e8s] |
live Installation von mod harbour auf einem neuen Server | Download link install program: [url:1y5ifcse]https://mybergland.com/fwforum/install_xampp_and_modharbour.exe[/url:1y5ifcse] |
llamada al teclado virtual | amigos del foro, alguien sabe como hacer que cuando un objeto TGET obtenga el foco salte el teclado virtual del pocket automaticamente? existe alguna funcion? las otras aplicaciones del pocket lo hacen.. |
llamada al teclado virtual | Luis,
Las funciones son ShowKeyboard() y HideKeyboard(). Busca en estos foros por esos nombres y verás todo lo que se ha comentado al respecto. |
llamada de programa externo se minimiza | Buenos dias..
algo casi simple.. como el TDOSprn No tiene un Preview simple... que me muestre mi reporte en matricial... me dije.. "CREARE un archivo texto de la impresion... y luego llamo a un progrma ejemplo .. ENOTAS miArchivo.txt y me lo abre en solo modalidad lectura... "
Todo funciona bien perooo....... |
llamada de programa externo se minimiza | Lubin,
Localiza el handle de esa nueva ventana con FindWindow() y llama a SetForeGroundWindow( hWnd ) |
llamada de programa externo se minimiza | Gracias Antonio
le dare una revisada..
[quote="Antonio Linares":r5z68wpg]Lubin,
Localiza el handle de esa nueva ventana con FindWindow() y llama a SetForeGroundWindow( hWnd )[/quote:r5z68wpg] |
llamar a una función de Harbour desde C | Hola,
Me gustaría desde un código C llamar a una función mía de Harbour y pasarle una cadena de texto.
Es decir, lo contrario a esto:
[code=fw:3fcbpb00]<div class="fw" id="{CB}" style="font-family: monospace;"><br />procedure main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br... |
llamar a una función de Harbour desde C | Hola
pienso que esta seria la forma mas rapida...
cambia tu funcion de C en harbour a otra funcion y luego llamas a esta otra con tu funcion de Harbour ( como una especie de wrapper )
ejemplo
[code=fw:3rqhng8n]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</sp... |
llamar a una función de Harbour desde C | Hola Daniel,
Creo que me expliqué mal.
To tengo una función en Harbour, por ejemplo:
[code=fw:2acu08m2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> lucas<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /><span sty... |
llamar a una función de Harbour desde C | Lucas
el api de harbour nos permite hacer lo que quieres de una forma muy simple
[code=fw:2r7el8e4]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"fivewin.ch"</span><br />procedure main<span style="color: #000000;">(... |
llamar a una función de Harbour desde C | Muchas gracias Daniel. |
llamar a una función de Harbour desde C | Hola de nuevo Daniel,
¿Y desde una función pura de C?.
Por ejemplo:
[code=fw:1t56vzjy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <Windows.h><br /><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><br /><span style="color: #00D7D7;">#define</span>... |
llamar a una función de Harbour desde C | Tienes que usar la misma secuencia que te ha indicado Daniel:
[code=fw:yaxvp5vv]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <hbapi.h><br /><span style="color: #00D7D7;">#include</span> <hbapiitm.h><br /><br /><span style="color: #00C800;">static</span> void P... |
llamar a una función de Harbour desde C | Antonio,
Muchas gracias, pero es que desde el Código C puro tengo que enviar un texto a una función en Harbour.
Si llamo desde el código C a otra función intermedia en C no me sirve, porque en el código primario en C puro y duro es donde tengo que enviar el texto. |
llamar a una función de Harbour desde C | Lucas...
es exactamente igual...
[quote="lucasdebeltran":2vp822hb]Además, salta error de function with no prototype.[/quote:2vp822hb]
te falta el archivo de cabecera [b:2vp822hb]hbapiitm.h[/b:2vp822hb] (esta en el ejemplo que te puse)
como te recuerda Antonio, hay que seguir la misma secuencia...
voy a ser un poco... |
llamar a una función de Harbour desde C | Gracias a ambos, va perfecto.
Una cosa, ¿tenéis pensado hacer seminarios de FWH como hacía el pájaro de René Flores?.
Un saludo |
llamar a una función de Harbour desde C | Estamos abiertos a cualquier propuesta que sea interesante.
No hay problema en hacer seminarios si se reunen un cierto numero de usuarios de FWH interesados |
llamar aun codeblock en PRG desde codigo C ? | Alguien tendra un ejemplo de como llamar aun codeblock en PRG desde codigo C ..
Creo que alguna vez Antonio puso un ejemplo pero no lo encuentro..
Desde ya muchas Gracias. |
llamar aun codeblock en PRG desde codigo C ? | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=96883#p96883">viewtopic.php?p=96883#p96883</a><!-- l --> |
llamar funciones de DLL | Buenas Tardes,
necesito acceder a una DLL, pero no funcionan las llamadas a las funciones ni la importacion del la LIB con implib.exe de Borland, con un inspector de DLL, las funciones se muestran con esta estructura:
Function Name Address Relative Address Ordinal Filename Full Path Type
IZKEM::CardNumber 83 (0x5... |
llamar funciones de DLL | Marcelo,
Tienes que usar OLE:
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=226365#p226365">viewtopic.php?p=226365#p226365</a><!-- l --> |
llamar funciones de DLL | Antonio,
gracias por responder, eso significa que de alguna manera debo registrar la DLL para que la utilice con OLE ??
gracias por la ayuda
saludos cordiales
Marcelo Vía
P.D. Antonio, recuerdo que tu hiciste algun inspector de objetos COM, creo que te permitia visualizar los componentes y sus propiedades, me pued... |
llamar funciones de DLL | Holas,
he logrado la comunicacion con OLE, estoy utilizando el OLE/COM Object Viewer para ver los internals del componente,
pero no logro identificar los objetos intermedios para acceder a las funcionalidades del componente, como puedo identificar la estructura para acceder a estas funcionalidades, tengo esta informac... |
llamar funciones de DLL | Marcelo,
Preuba esta excelent utilidad desarrollada con FWH <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[url:27rzwwmw]https://github.com/FiveTechSoft/FWH_tools/blob/master/olebrowser.zip[/url:27rzwwmw]
Todo el código fuente incluido |
llamar funciones de DLL | Antonio,
muchas gracias, justamente eso estaba buscando
muchas gracias
saludos
Marcelo Vía |
llamar funciones de DLL | Antonio,
una ultima consulta, como puedo recuperar los datos de una función como esta:
VARIANT_BOOL GetAllUserInfo(LONG dwMachineNumber, LONG* dwEnrollNumber, BSTR* Name, BSTR* Password, LONG* Privilege, VARIANT_BOOL* Enabled)
supongo que los parametros con "*" son por referencia, pero no logro recuperar nada, lo h... |
llamar funciones de DLL | Devuelve un valor lógico ? |
llamar funciones de DLL | Antonio,
este es el reporte de la herramienta en PDF
[url:1iuwxgmy]https://app.box.com/s/q9h87m93jevxjoec83rbazia9edzq63h[/url:1iuwxgmy]
muchas gracias
Marcelo Vía |
llamar funciones de DLL | Antonio,
si el retorno esta Ok, devuelve un valor logico, pero no logro obtener los parametros por referencia, que se puede hacer, ya que todas las funciones tienen esta estructura
gracias por la ayuda
saludos
Marcelo Vía
P.D. con la herramienta que desarrollaste (muy buena por cierto) tengo estas descripciones de... |
llamar funciones de DLL | Marcelo,
Por favor imprime toda la información que te da la herramienta y ponla aquí, gracias |
llamar funciones de DLL | zkemkeeper.ZKEM.1
STDCALL dispatch FUNC void QueryInterface( [in] PTR, [out] PTR )
STDCALL dispatch FUNC unsigned long AddRef()
STDCALL dispatch FUNC unsigned long Release()
STDCALL dispatch FUNC void GetTypeInfoCount( [out] PTR )
STDCALL dispatch FUNC void GetTypeInfo( [in] unsigned int, [in] unsigned long, [out] PTR... |
llamar funciones de DLL | Marcelo,
De todas esas, has conseguido que te funcione alguna ? <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Cuales ? |
llamar funciones de DLL | Parece que nuestra utilidad no muestra la lista de eventos |
llamar funciones de DLL | Antonio,
he conseguido que funcionen las funcionres
SetCommPassword( [in] int )
Connect_Net( [in] BSTR, [in] int )
que es el proceso de conexión
Luego para conseguir la información se utiliza esta función
GetAllUserInfo( [in] int, [out] PTR, [out] PTR, [out] PTR, [out] PTR, [out] PTR )
Que interesantemente cicl... |
llamar funciones de DLL | Marcelo,
Para hacer la llamada:
oZk:GetAllUserInfo( 1, @dwEnrollNumber, @Name, @Password, @Privilege, @Enabled )
como declaras dwEnrollNumber en tu PRG ? |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.