topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
design.prg from FW samples | [quote="Marc Venken":25s9xox5]Thanks.. The ruler works..
The class : I have to explore...[/quote:25s9xox5]
you can use also a tbitmap class and insert that two data
if you see genteport.prg you can show a obmp white and on it the rulers |
designer.prg | Dear Antonio,
what is the program designer.prg from the samples for.
I can't compile the program. Is it Harbour only.
Thanks in advance
Otto
Generating C source output to 'designer.c'...
Done.
Lines 215, Functions/Procedures 10, pCodes 2200
C:\fwh\samples\designer.prg(150) Warning W0001 Ambiguous reference: 'OWND... |
designer.prg | [code=fw:fe7xm0ys]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveWin.ch"</span><br /><br /><span style="color: #00C800;">STATIC</span> oWnd<br /><br /><span style="color: #00C800;">function</span> Main<span style="color: #... |
designer.prg | Otto,
designer.prg is a test about designing your app at runtime and then generating its source code
Please right click on it to start editing it at runtime |
desplazamiento browse hernán | Lo probé pero no era el problema, lo que me ocurre cuando uso las flechas de desplazamiento es que cuando llega al tope o al final de las celdas en vez de seguir desplazando las celdas sólo va cambiando la primera fila ó última, si me posicionó sobre la barra de desplazamiento un poco mas arriba que las flechas funci... |
desplazamiento por gets del dialogo:Up() y :Down() o por TAB | Hola:
Me gustaria asignar dos botones, Up y Down, para que al pulsar sobre ellos se desplacen por los gets del dialogo, del mismo modo que oListbox:GoUp() y oListBox:GoDown(), pero estos metodos no estan definidos. También me valdía que surtiera el mismo efecto que pulsar la tecla TAB. Muchas gracias.
Un saludo,
Pab... |
desplazamiento por gets del dialogo:Up() y :Down() o por TAB | Pablo,
Puesto que esos botones al pulsarlos tomarían el foco, entonces hay que usar el dato oJump:
[code:qsortdxn]
n = 1 // nº de orden del primer GET
... BUTTON oBtn1 ... ACTION If( n > 1, oBtn1:oJump := oDlg:aControls[ n-- ], ) VALID .t.
.&#... |
desplazar en Xbrowse | Estimados Amigos, necesito su ayuda, tengo una ventana de datos que se carga con una consulta de un archivo MySql, La ventana muestra cinco líneas de datos, en un momento, pero si hay mas líneas de información, el usuario debe hacer movimientos con las flechas cursoras o con el mousse, el desplazamiento necesario para ... |
desplazar en Xbrowse | kpidata:
La información que proporcionas es escasa, asumo que algún
otro usuario agrega más líneas y esas son la que no se ven.
Si es el caso, te recomiendo las siguientes dos líneas de código:
oRs:Requery()
oBrw:Refresh()
Espero sirvan de algo
Saludos |
desplazar en Xbrowse | Mi idea seria poner un Timer para que cada 2 segundos
salta de renglón
Así le entendí. |
desplazar en Xbrowse | Amigos, el tema es que genero un browse con servicios de taller a realizar, estos datos los digita una persona en una oficina y en el taller deben ir viendo esta informacion,
el tema es que en la pantalla solo se visualizan 5 lineas de los datos a procesar, para ver mas... el tecnico debe ir al computador y mover el m... |
desplazar en Xbrowse | kpidata:
Entonces, creo, es una combinación de la respuesta de Javier (Saludos Javier) y la mía
Hacer un timer que cada n segundos haga el ReQuery() y el Refresh()
Saludos |
desplazar en Xbrowse | Estimados, trato de entender lo que me dicen, pero me pierdo, mi conocimiento de Xbrowse es limitado, en pocas palabras, tengo estas 3 dudas en particular.
a) Debo dejar el foco al ingresar a la consulta.
b) Ya en la primera linea... como hago para que baje solo a la segunda.
c) ya en el final, como hago para que suba... |
desplazar en Xbrowse | Kpidata
Utilizando un Timer así te podes mover
[code=fw:2lqx7fp8]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">GoDown</span><span style="color: #000000;">(</span>nLine<span style="color: #000000;">)</span> <span style="color: #B900B9;">//Abajo</span><br />oB... |
desplazar en Xbrowse | Esto es con DBF pero es casi identico a Mysql
[code=fw:qufmy232]<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="color: #ff0000;">"xbrowse.ch"</s... |
desplazar en Xbrowse | Estimados... amigos... fueron de mucha ayuda... el ultimo comentario me ayudo al final de resolver el problema... quedo super bien |
despliegue en listbox con columna angosta | Hola a todos:
tengo un listbox en un xbrowse, quisiera saber si se puede mostrar el listbox ampliado a pesar de que la columna asignada este reducida para ello?
es decir que el listboxpueda abarcar otras columnas
de antemano gracias |
destroy bitmaps | I wish erase bitmap from dialog
I made
@nrow,ncol bitmap obtntemp RESOURCE cardmap SIZE 80,120 OF oDlg NOBORDER
and put on odlg bitmap but I not Know How many the user draw on dialog
I tried with end() / destroy() with no success !!
any idea ? |
destroy bitmaps | Silvio,
to delete the paited images,
You need to repaint the brush of the dialog.
best regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
destroy bitmaps | I tried also with a small function I can call from another function
function clrscr()
for n=1 to len(oDlg21:aControls)
oCtrl = oDlg21:aControls[ n ]
IF oCtrl:ClassName() == "TBITMAP"
oDlg21:aControls[ n ]:end()
endif
next
//oDlg21:refresh()
return nil
it run for... |
destroy bitmaps | Silvio,
why not calling a Gdifunction, BEFORE painting the new images to clear the area ?
[b:2c5xikj6]Fills a defined area with a color[/b:2c5xikj6]
[color=#0000FF:2c5xikj6]FUNCTION DRAWRECTANGLE(ownd)
local hdc:= oWnd:getdc()
local oGraphics := Graphics():New( ownd:hDC )
local oPen := Pen():New( 255, 0, 0, 255 , 1... |
destroy bitmaps | see on mail pls |
destroy a xbrowse | for the reservations program I show the list of services in an xbrowse, if I change my reservation and it doesn't have the services I must not show the xbrowse
I tried with
IF oBrw != NIL
oBrw:Destroy() //end()
Endif
but nothing happens the oBrw is allw... |
destroy a xbrowse | Silvio,
just use
[size=150:2uhk4bl2]oBrw:Move( 0, 0 )[/size:2uhk4bl2]
that will not harm any data
regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
destroy a xbrowse | [quote="ukoenig":2mwlg1fs]Silvio,
just use
[size=150:2mwlg1fs]oBrw:Move( 0, 0 )[/size:2mwlg1fs]
that will not harm any data
regards
Uwe <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->[/quote:2mwlg1fs]
Uwe,
I explain YOU
I have the browse on a Vtaskbar as you ca... |
destroy a xbrowse | Silvio,
Maybe you can consider to Hide the xbrowse in stead of destroy it. If the data has no services, you could hide the colums ?
static function ReArrangeCols( oBrw, aCols )
AEval( oBrw:aCols, { |o| o:lHide := .f. } )
oBrw:ReArrangeCols( aCols )
AEval( oBrw:aCols, { |o| o:lHide := .t. }, Len( aCols ) + ... |
destroy a xbrowse | Not Run, I erase all
I insert services on a box on msgbar |
destroy a xbrowse | I am not sure if I understood what you want correctly.
If you want to hide and unhide xbrowse, you can use:
Hide
[code=fw:3pv88omp]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oBrw:<span style="color: #000000;">Disable</span><span style="color: #000000;">(</span><span style="color: #000000;">&#... |
detalle con filexls OBJNEWCLS... | Que tal Amigos, tengo la filexls compilandola con mis demas .prg's , solo que me manda que no ecuentra las sig. funciones OBJNEWCLS,OBJADDMET,OBJSETUSERDATA. ¿Que necesito hacer?
de antemano , gracias
atte
Miguel |
detalle con filexls OBJNEWCLS... | Miguel,
Parece que no estas usando el objects.ch correcto de FWH.
Esas funciones son de 16 bits y no se usan en 32 bits. FWH objects.ch usa las correctas de Harbour (hbclass.ch) |
detalle con filexls OBJNEWCLS... | [quote="Antonio Linares":23eh7ob4]Miguel,
Parece que no estas usando el objects.ch correcto de FWH.
Esas funciones son de 16 bits y no se usan en 32 bits. FWH objects.ch usa las correctas de Harbour (hbclass.ch)[/quote:23eh7ob4]
Como puedo reemplazar estas funciones en 32 Bits ? |
detect a program inactivity situation | [url:1o4zxzbs]http://forums.fivetechsupport.com/viewtopic.php?f=6&t=34810&start=0&hilit=PARPADEO[/url:1o4zxzbs]
Regards. |
detect a program inactivity situation | thanks the first link is good the class run ok |
detect a program inactivity situation | Silvio,
Yes, I agree it works without problems <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> .
I'm working on a autoclose of the message
on a second mousemove after zhe message-display and
a image-solution instead of a alert,
or do You want to keep it like it work... |
detect a program inactivity situation | I want to create a courtesy screen when the user does not move the mouse or press a key, perhaps with advertisements or images chosen by the user. |
detect a program inactivity situation | Silvio,
It seems some changes are needed.
I noticed a [color=#0000FF:1drxgqrj]missing end() [/color:1drxgqrj] of the timer.
That means once started, the message will continue running on all different dialogs.
As well we need a syntax like : [color=#0000FF:1drxgqrj]oRun := TINATIVO():new( 5, "LOGOFF()", .T. )[/color:1... |
detect a program inactivity situation | tomorrow I see it , if you have some suggestion you're wellcome
this night i must resolve another problems |
detect a program inactivity situation | Mira se ayuda:
[url:1jnw7qlb]http://fivewin.com.br/index.php?/topic/23973-fechar-o-programa-ap%C3%B3s-30-min-sem-uso/[/url:1jnw7qlb]
Regards. |
detect a program inactivity situation | how to call a function when the operator does not press any key and does not move the mouse, after n minutes I would like the procedure to make an image appear, when the operator moves the mouse or a key the image must disappear |
detect default browser and retrieve a cookie [SOLVED] | Hello,
I would like to make two questions please.
1) How can I detect the default Internet browser on the PC?.
2) How can I read a cookie?.
Thank you in advance. |
detect default browser and retrieve a cookie [SOLVED] | Jose Luis,
[url:2aqbrblc]http://support.microsoft.com/kb/299853[/url:2aqbrblc]
[quote:2aqbrblc]De manera predeterminada, Windows XP utiliza una configuración global en la clave del registro HKeyLocalMachine (HKLM) para establecer una inicial, el correo electrónico predeterminado y el cliente de explorador... |
detect default browser and retrieve a cookie [SOLVED] | [url:1j95r7jh]http://stackoverflow.com/questions/7123536/programmatically-read-internet-explorer-cookies[/url:1j95r7jh] |
detect default browser and retrieve a cookie [SOLVED] | Antonio,
Many thanks!.
I don´t know C. Can you please indicate me how can I call this C function from Fivewin?:
[code=fw:dsxxmk8q]<div class="fw" id="{CB}" style="font-family: monospace;">BOOL InternetGetCookie<span style="color: #000000;">(</span><br /> _In_ LPCTSTR lpszUrl,<br /> _In_... |
detect default browser and retrieve a cookie [SOLVED] | Please copy this code at the bottom of your main PRG:
[code=fw:2pbc025q]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <hbapi.h... |
detect default browser and retrieve a cookie [SOLVED] | Antonio,
Many thanks, but I get this errors:
Borland C++ 5.82 for Win32 Copyright (c) 1993, 2005 Borland
antonio.c:
Warning W8065 antonio.prg 50: Call to function 'InternetGetCookie' with no prototype in function HB_FUN_INTERNETGETCOOKIE
Warning W8065 antonio.prg 54: Call to function 'InternetGetCookie' with no proto... |
detect default browser and retrieve a cookie [SOLVED] | Jose Luis,
This header file is missing:
#include <wininet.h>
and you also have to link wininet.lib |
detect default browser and retrieve a cookie [SOLVED] | Antonio,
Thanks, this is my code:
[code=fw:21c8o9c2]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#include</span> <windows.h><br /><span style="color: #00D7D7;">#include</span> <wininet.h><br /><span style="col... |
detect default browser and retrieve a cookie [SOLVED] | Jose Luis,
Yes, you are right. My mistake. I did not test the code, just wrote it here directly on my post.
This would be the right version:
[code=fw:1u66vz4e]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#pragma</span> BEGINDUMP<br /><br /><span style="color: #00D7D7;">#inc... |
detect default browser and retrieve a cookie [SOLVED] | Thank you Antonio.
It´s working now fine. |
detect is os 32 or os 64 bit | help !
how to detect if Opereting System is 32 or 64 bit.
Thanks |
detect is os 32 or os 64 bit | MsgInfo( IsWin64() ) |
detect using Wine | Hi,
Is there a function to detect if the app is running using Wine under Linux or Mac?.
I can´t use windowsversions or registry as Wine emulates Windows XP.
I think this code, but is not very optimal:
[code=fw:2zaec3gm]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function<... |
detectar Drive | Colegas,
Necesito determinar si la unidad "A:", "H:" etc, existe?
Alguna función o acceso al registro de windows. |
detectar Drive | Muy facil Juan:
IF File ("H:\.") // notese el punto "." al final
MsgInfo("La unidad H existe
ENDIF
el punto "." es un archivo del sistema operativo que indica "directorio actual" no se exactamente como funciona, pero en todas las carpeta existe el famoso "." y los dos puntos ".." que hacen referencia al directorio... |
detectar ejecución Wine | Hola,
¿Hay alguna forma de detectar si una aplicación está siendo ejecutada en Linux o Mac bajo Wine?.
No vale obtener la versión de windows y el registro ya que emula el de Windows XP.
Se me ha ocurrido una chapucilla:
[code=fw:1unjxqvr]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: ... |
detectar navegador y leer una cookie [solucionado] | Hola compañeros,
Me gustaría por favor haceros dos preguntas.
1) ¿Cómo puedo detectar el navegador por defecto para Internet?.
2) ¿Cómo puedo leer una cookie?.
Muchas gracias de antemano. |
detectar navegador y leer una cookie [solucionado] | <!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?p=162514#p162514">viewtopic.php?p=162514#p162514</a><!-- l --> |
detectar perdida del foco de un get | Buenos días,
si tenemos un get dentro un dialogo, si el foco está en el get y uno pincha con el mouse el dialogo, o mueve el dialogo o pincha el título del dialog, el foco continua en el get, como se prodría detectar ese hecho, desde el objeto get, ya que en oGet:bLostFocus no se detecta ese hecho
saludos
Marcelo |
detectar perdida del foco de un get | Puedes detectar el click izquierdo en el dialogo con oDlg:bLClicked y cuando lo mueve con oDlg:bMoved
Esto no te servirá para cuando hace click en el titulo, pero a lo mejor te da una idea.
Saludos |
detectar perdida del foco de un get | Gracias por tu respuesta,
como lo comentas, se podría saber cuando se tiene el foco en el dialogo, pero la idea de hacerlo desde el get es para simplificar la creación de un control, puedes ver un poco en este link
[url:5pothrcx]http://forums.fivetechsupport.com/viewtopic.php?f=3&t=28237[/url:5pothrc... |
detectar perdida del foco de un get | Marcelo,
Podrias capturar el ratón (que todos sus eventos lleguen a él) y asi saber donde esta el cursor, donde se hace click, etc
Otra opción seria usando el mensaje WM_NCHITTEST usado en varias clases de FWH:
[code=fw:3o7avzf0]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">... |
detectar si el Sistema Operativo es de 32 o 64 bits | Hola:
¿Hay alguna forma de saberlo?.
Muchas gracias, <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
detectar si el Sistema Operativo es de 32 o 64 bits | ???
[code=fw:ln55gk5c]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">IF</span> ISWINXP<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> ? <span style="color: #000000;">[</span><span style="color: #000000;">32</span><... |
detectar si el Sistema Operativo es de 32 o 64 bits | [url:2n8mxn4b]http://stackoverflow.com/questions/601089/detect-whether-current-windows-version-is-32-bit-or-64-bit[/url:2n8mxn4b] |
detectar si el Sistema Operativo es de 32 o 64 bits | Maestro Antonio:
Muchas gracias por la info,
¿Cómo detecto si existe el proceso IsWow64Process?.
Muchas gracias, <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
detectar si el Sistema Operativo es de 32 o 64 bits | Aqui tienes el código adaptado y funcionando. Ojo no lo he probado en Windows 64, solo en Windows 7 32.
[url:f1f7bym4]http://msdn.microsoft.com/en-us/library/ms684139(VS.85).aspx[/url:f1f7bym4]
[code=fw:f1f7bym4]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;"... |
detectar si el Sistema Operativo es de 32 o 64 bits | Hola:
Al final hice:
function IsOS64Bits()
LOCAL Win64 := GetENV("ProgramFiles(x86)")
LOCAL Result := .F.
IF !Empty(Win64)
Result := .T.
ELSE
Result := .F.
ENDIF
RETURN( Result )
Un saludo <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!... |
detectar si el Sistema Operativo es de 32 o 64 bits | Puedes simplificarla asi <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
[code=fw:1o2s8f2e]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> IsOS64Bits<span style="color: #000000;">(</span><span style="color: #000000... |
detectar si el Sistema Operativo es de 32 o 64 bits | o mas facil, Clic alterno a MIPC/Propiedades.. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> <!-- s:) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":)" title="Smil... |
detectar si el Sistema Operativo es de 32 o 64 bits | Antonio:
Muchas gracias.
César:
Lo que busco es detectarlo desde el código, de modo que la solución del maestro es la adecuada.
<!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D --> |
developer tools (F12) in WebView? | Hello friends,
How can I enable and open the developer tools (F12) in WebView?
Best regards,
Otto |
developer tools (F12) in WebView? | Dear Otto, try
[code=fw:fvk80997]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oWebView := TWebView<span style="color: #000000;">(</span><span style="color: #000000;">)</span>:<span style="color: #00C800;">New</span><span style="color: #000000;">(</span> <span style="color: #000000;">1</sp... |
developer tools (F12) in WebView? | Dear Cristobal,
thank you.
Best regards,
Otto |
devolución recibos SEPA | Hola compañeros:
Por favor, ¿alguien puede compartir la función para leer las devoluciones de recibos SEPA en el formato XML?.
Muchas gracias. |
dialog and button | Why I must in Dialog use FROM 0,0 to 400,500 PIXEL where in "last button" I have row 200 /to see last button/
my source
static function EditWplaty( oLBX2, lAppend )
local oDLG2
local lSave := .f.
local NR_REK := RecNo()
local oFont
local nr_ord:=indexord()
// DEFAULT lAppend := .f.
if lAppend
... |
dialog and button | <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=8465&highlight=dialog+window+pixel">http://fivetechsoft.com/forums/viewtopi ... ndow+pixel</a><!-- m --> |
dialog and button | if I have to divide any rows and cols by 2.05 in say, get and button ?
@ 10/2.05, k1/2,05 SAY "&NR:" OF oDlg PIXEL
@ 10/2.05, k2/2.05 GET cNR picture '99999' OF oDlg PIXEL //WHEN .f.
regards
kajot |
dialog box con modalità nowait | ho una window (oWnd in modalità MDI) che tramite menù richiama una procedura con una dialog, la stessa dialog si trova in una DLL quindi la richiamo con:
DEFINE DIALOG oDLG RESOURCE "STCLIE1" OF oWnd FONT oFont
GET
GET
etc
e la attivo con
ACTIVATE DIALOG oDlg NOWAIT;
CENTERED
quando apro la procedura la dialog ... |
dialog box con modalità nowait | Tieni presente che una DIALOG non modale non blocca l'esecuzione la quale continua invece allegramente ad eseguire ciò che si trova appresso all'ACTIVATE DIALOG senza attendere la chiusura della stessa.
EMG |
dialog creation | Dear Antonio,Can I create two dialog into a main window oWnd ?the dialog must have not the border and captionand the second dialog must be create down the firstas two rectangulesCan I create it and How ? |
dialog creation | Silvio,You have to ACTIVATE them as NOWAIT (non modal) and use the STYLE clause to specify the desired style when DEFINE them |
dialog creation | Sorry Antonio,Perhaps I explain You badI Knw How to create two dialog NOwait or WS stylesMy problem is anotherTwo dialog are as two line of ListboxI want add a dialog from user sample:oDlg1oDlg2the use want add a dialog between odlg1 and odlg2How I can make it? |
dialog creation | Falconi,[quote:afcjmrla]My problem is another
Two dialog are as two line of Listbox
I want add a dialog from user
sample:
oDlg1
oDlg2
the use want add a dialog between odlg1 and odlg2 [/quote:afcjmrla]I don't understand. Are you saying you want a user to design a dialog and then automatically have it placed it... |
dialog creation | look to private email pls |
dialog creation .. | <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: --> <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
Changes the Info... |
dialog creation .. | maybe it's what you need
DEFINE DIALOG oDlgb FROM 0, 0 TO 180, 500 TRANSPARENT [u:1nbpfj4x]STYLE NOR( WS_VISIBLE)[/u:1nbpfj4x] PIXEL
saluti
Stefano |
dialog creation .. | please I mean something of it
[img:15i2c8q4]http://img62.imageshack.us/img62/4991/restaurantd.jpg[/img:15i2c8q4]
when I click on a table the procedure show a dialog ( with other info) and the it must be hide when I click on another table or another point of dialog
it is possible with fwh ... |
dialog creation .. | I understand, was a mistake of mine ( Action from inside the Bar ).
Your Question :
[color=#0000FF:3eor6rno]is is it possible, to create a dialog ( with no border )[/color:3eor6rno] [color=#FF0000:3eor6rno]at the end of Buttonbar[/color:3eor6rno] <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title... |
dialog creation .. | under the buttonbar or under the ribbonbar it is the same
but I must click on a btnbmp and it open the dialog
if I click on white box or on tree for sample it must be hide
it must be showed only if I click on table( btnbmp) |
dialog creation .. | I tried to create a dialog as ribbonbar use when create a popup dialog when lStretch see PopupGroup() ( trbgroup)
but the n I not know how close it |
dialog creation .. | Dialog with Buttons
Message on Mainwindow
Message changes on Buttonclick inside the Dialog
Dialog-click on Blank-area closes the Message.
[img:34omairr]http://www.pflegeplus.com/pictures/info2.jpg[/img:34omairr]
Works the same : a Message from a Dialog shown inside a Ribbonbar :
[img:34omairr]http... |
dialog creation .. | it is possible create a dialog ( with no border ) at the end of Buttonbar When I click a btnbmp ?
I hace on a dialog some btnbmp as tables of a restaurant
when I click each button I wish show a dialog at the end the button bar of wndmain to show other information
when I clich into dialog and not click on btnbmp ... |
dialog creation .. | Have you thought of using a tooltip? It would automatically appear, then disappear automatically also. Perhaps it wouldn't be displayed long enough?
Regards,
James |
dialog creation .. | James,
I wish a tooltip but on tooltip I cannot insert a xbrowse
I need something of this
[img:3l89pfkn]http://www.ilmuwebsite.com/wp-content/uploads/2010/07/normals_tooltip.png[/img:3l89pfkn]
I want showed this tooltip from btn bmp |
dialog creation .. | As I told, with BtnBmp it is not possible.
I don't know why my working Solutions and Proposals are ignored ?
A Dialog-tooltip :
visible, as long there is a Focus on the Temperature-area ( only Info ),
or can be forced to stay on Screen ( must be closed with a included Button )
Mouseclick on a Temperature, performs a ... |
dialog creation .. | [quote="ukoenig":dvq39j21]As I told, with BtnBmp it is not possible.
I don't know why my working Solutions and Proposals are ignored ?
Best Regards
Uwe <!-- s:lol: --><img src="{SMILIES_PATH}/icon_lol.gif" alt=":lol:" title="Laughing" /><!-- s:lol: -->[/quote:dvq39j21]
on espanòl
No voy a discutir por su respuesta, p... |
dialog creation .. | on web I found this :
<!-- m --><a class="postlink" href="http://www.devcomponents.com/dotnetbar/SuperTooltips.aspx">http://www.devcomponents.com/dotnetbar/ ... ltips.aspx</a><!-- m -->
please go to see it
tolltip with image and controls
With fwh why it no possible ? |
dialog creation .. | I think it can be done, but you will have to write your own new control class to be able to do it. And you can't subclass from FW's tooltip because it isn't a separate class--it is static functions within another class. So you would have to start from scratch.
The easier solution is to just use a dialog.
Regards,
Jam... |
dialog creation .. | James you're right
but I 'm sure I'm not able to make class
but I tried to make a class but I saw otooltip on Windows class is not a classdata but only a variable static !!
for the dialog how I can make it ? |
dialog creation .. | >but I tried to make a class but I saw oTooltip on Windows class is not a classdata but only a variable static !!
I think Antonio told me it was done this way for speed.
>for the dialog how I can make it ?
The easiest way is to just use the ACTION clause of the button define. If you are already using that for somet... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.