topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
dialog creation .. | James,
[color=#FF0000:1ee7sn6n]oBtn1:bMMoved [/color:1ee7sn6n]:= {| nRow, nCol | MsgAlert( ALLTRIM( STR(nRow)), ALLTRIM( STR(nCol)) ) }
will show nRow and nCol from [color=#FF0000:1ee7sn6n]inside the Button[/color:1ee7sn6n].
That is the reason, I used :
[color=#FF0000:1ee7sn6n]oDlg:bMMoved [/color:1ee7sn6n]:= {| nRo... |
dialog creation .. | Uwe,
I don't think he needs the row and col when using bMMoved. He just needs to popup something when the cursor is over the button. Something like this:
oBtn1:bMMoved := { || msgInfo() }
Regards,
James |
dialog creation .. | James,
I got it working with Buttons.
I will create a nice Sample for it with different Options.
The Popup is shown related to Button-position.
The Button-temperature is show on Popup-title
Optional autoclose or staying on Screen with Buttonactions.
1. Button / Temperature :
[img:3a47dzv6]http://www.pflegepl... |
dialog dbcombo looping | I am using a dialog box with 2 dbcombos as a trip calculator.
The user chooses an origin and drop point and that is where I want some text or perhaps a MsgAlert() to display a calculated
km value - within the dialog to calc as many times as needed without having to start the dialog again.
I' ve tried variations of ON ... |
dialog dbcombo looping | Bruce,
If you haven't already solved this, here are some suggestions.
I would use the CHANGE clause of Dbcombo to do the calculation and then display it on the dialog using a SAY control.
I would also removed the "Calculate" button and change the "Exit" button to "Close." Close is standard Windows convention for a d... |
dialog dbcombo looping | James,
Appreciate your comments on my threads circa Jan 5/13.
Any input helps this work in progress.
I use the "traps for invalid data" because an empty selection always seems to come along with a combobox, which I don't want.
Bruce S. |
dialog dbcombo looping | Bruce,
[quote:1wa9tdc8]I use the "traps for invalid data" because an empty selection always seems to come along with a combobox, which I don't want.[/quote:1wa9tdc8]
I would just display zero when there is a blank combo (or both combos are blank). Users can easily figure this out.
Using a trap with a popup msgbox yo... |
dialog error | when I compile it the procedure let me "cannot create dialog" but I NOt understand what is wrong !!!!!!!
the code
[code:3hmap95g]
#include "FiveWin.ch"
function main()
Local oDlg,oFld
DEFINE DIALOG oDlg RESOURCE "AGENDA_EDIT"
REDEFINE FOLDER ID 500 OF oDlg ;
... |
dialog error | >when I compile it the procedure let me "cannot create dialog" but I NOt >understand what is wrong !!!!!!!
>thanks in advance
Hi,
try changing dialog resource names to be more different (not to have so much matching characters). Seems like some resource ID generation bug (or effect)... There was a discussion abou... |
dialog error | Silvio,
You are using a TImage, TBtnBmp and TBitmap in your resource and you have not redefined them in your PRG |
dialog error | Antonio,
On my program I redefine all fields ( TImage, TBtnBmp and TBitmap ), but it not show the dialog!!!!
I had had problem when I insert date control 32 bit
if yo want can erase all TImage, TBtnBmp and TBitmap control
IT NOT show the dialog
try it please :
[code:3dszubij]#include "FiveWin.ch"
#Includ... |
dialog error | Silvio,
Please call INITCOMMONCONTROLS() before DEFINE DIALOG ... |
dialog error | Application
===========
Path and name: C:\work\errori\fsdi2006\prg\testgar.Exe (32 bits)
Size: 438,272 bytes
Time from start: 0 hours 0 mins 0 secs
Error occurred at: 01/18/07, 00:45:02
Error description: Error BASE/1004 Class: 'NIL' has no exported method: ADIALOGS
Args:
I tried to compile with... |
dialog error | when I erase folder control ....
it run ok |
dialog error | Silvio,
I see oFld variable defined as local at the start of the function but you didn´t store the folder object in it <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: -->
DEFINE FOLDER [u:39qnto95]oFld[/u:39qnto95] ID .... OF ......
I think that´s ... |
dialog error | I tried and now run ok
there is an error on dialog AGENDA_EDIT_D
when I erase all control on it the dialog and folder run ok
the dialog AGENDA_edit_d have :
[code:8bqdr3wt]
AGENDA_EDIT_D DIALOG 29, 69, 312, 122
STYLE WS_CHILD | WS_CLIPSIBLINGS | WS_CLIPCHILDREN
FONT 8, "MS Sans Serif"
{
CONTROL "", 1... |
dialog into outlook2003 | Dear Antonio,
I wanted created a simply dialog with a header on the right part of the window as you can see on this picture
How I can make it ?
I dont understand how is called the right part of this ownd
[img:3u1zkgpc]http://img339.imageshack.us/img339/1461/out2003miosb7.jpg[/img:3u1zkgpc]
can you ... |
dialog into outlook2003 | Hallo, from Germany
I have the same problem.
regards
Uwe |
dialog into outlook2003 | Here you have a working sample. On page 2 a dialog is shown on the right side. See the lines with a marker (// <-----).
[code:1js66be2]// FWH Class TOutLook2003
#include "FiveWin.ch"
#include "Splitter.ch"
static lExit := .F.
STATIC aCtrl // <-----
//-------------------------------------... |
dialog into outlook2003 | STEPHAN,
I wanted a dialog as my picture and not another dialog ( it is not mdi)
perhaps you not understand me |
dialog into outlook2003 | Stephan,
I wanted make an header with gradient from splitter to end of ownd
and then down a type of panel ( dialog) where I can insert a browse
I not wanted a "flying dialog"
I hope you understand me !! |
dialog into outlook2003 | look this :
[img:31k1zgpq]http://img293.imageshack.us/img293/8231/outlookxbrowsert4.png[/img:31k1zgpq]
[code:31k1zgpq]
#include "FiveWin.ch"
#include "Splitter.ch"
#include "xbrowse.ch"
static lExit := .F.
STATIC aCtrl // <-----
//---------------------------------... |
dialog into outlook2003 | Silvio,
the "flying dialog" was just a sample, how to control the right side. <!-- s:wink: --><img src="{SMILIES_PATH}/icon_wink.gif" alt=":wink:" title="Wink" /><!-- s:wink: -->
You can try to use the TPages class to put your controls on. On every change of the outlook menu open the according page.
DEFINE OUTLO... |
dialog into outlook2003 | Hi SilvioI am also need of exactly what have needed. Could you do it.If so, can you please guide me as to how to accomplish it.Thanks it- Ramesh Babu P |
dialog into outlook2003 | Ramesh,i not founded a solution for my problems.I saw there is a problem when i changed option .. on right part of with the procedure must to show different dialog , when i show buttons the procedure not erase the first dialog.i not want mobile dialog but static dialog into right part of window |
dialog into outlook2003 | Silvio,Use:DEFINE DIALOG oDlg STYLE ... to set the style of dialog that you want (fixed, mobile, border, no border, caption, no caption, etc.) |
dialog into outlook2003 | Please review FWH\samples\TestDlg7.prg and TestDlg8.prg to learn how to use the STYLE clause with dialogs. |
dialog maximize and minimize events | How can I detect when a window/dialog was maximized?
This event does not seem to trigger an "on resize" event. It would be nice to know if the user left the dialog maximized, then I could re-display it in the future maximized. |
dialog maximize and minimize events | From the following sample you will see that ON RESIZE event is trigged on maximize:
[code:2k7pnh1t]#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd
DEFINE WINDOW oWnd
ACTIVATE WINDOW oWnd;
ON RESIZE TONE( 440, 1 )
RETURN NIL[/code:2k7pnh1t]
EMG |
dialog maximize and minimize events | How can I tell if the dialog was MAXIMIZED or simply resized by dragging the corner of the dialog? |
dialog maximize and minimize events | This is a sample:
[code:1af7ng2t]#include "Fivewin.ch"
FUNCTION MAIN()
LOCAL oWnd
DEFINE WINDOW oWnd
ACTIVATE WINDOW oWnd;
ON RESIZE SHOWRESIZETYPE( nSizeType )
RETURN NIL
#define SIZE_INIT NIL
#define SIZE_RESTORED 0
#define SIZE_MINIMIZED 1
#define SIZE_... |
dialog maximize and minimize events | Thanks - I believe that is exactly what I was looking for. |
dialog no pasa al frente | Hola a todos,
TEngo un dialog "padre" NOWAIT que contiene un listbox y algunos botones desde los cuales se llaman a otros dialogs "hijo" distintos (todos NOWAIT) y en algunos de estos hay un richedit y otros botones.
Todo funciona bién, al llamar a uno, dos o tres dialogs "hijo", cuando clickeo sobre cada uno de los "h... |
dialog no pasa al frente | Buen día,
Comento que solucioné el tema gracias a mi amigo William Morales que me orientó.
Lo que faltaba era el "of oWnd" en la definición de los diálogos. Con solo esto se solucionó. En la ayuda no figura que se pueda usar "OF" en la definición de diálogos y por eso, el que no sabe es como el que no vé.
Gracias Wi... |
dialog opening difference in the monitor between 32/64 bit | Good morning,
I compile fivewin programmes in both 32bit and 64bit versions with MinGW 8.5 - fivewin release 22.12 and use 2 monitors
I have noticed that in the 32bit version if I open a dialogue from the second monitor this is opened in the second monitor
whereas if I open a dialogue from the second monitor in the 64... |
dialog opening difference in the monitor between 32/64 bit | Dear Santo,
We are checking it
many thanks for the feedback |
dialog opening difference in the monitor between 32/64 bit | This program is working the same way with both 32-bit and 64-bit
[code=fw:3eloijho]<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: #0... |
dialog opening difference in the monitor between 32/64 bit | Rao ,
Test in 32-bit always
The main window is opened in the primary monitor.
Clicking "Open" button opens a dialog in Always in the primary monitor.
Maurizio |
dialog opening difference in the monitor between 32/64 bit | [quote:2u7i6a2g]Clicking "Open" button opens a dialog in Always in the primary monitor.
[/quote:2u7i6a2g]
If you connected two monitors and configured in extended mode, then the dialog will open in the second monitor. |
dialog resizable | I wish have a dialog resizable but without "X" close button
the user must clode the dialog from button
[img:1xn6ps7h]https://i.postimg.cc/ncH8TgzS/gg.jpg[/img:1xn6ps7h]
How I must make ? |
dialog resizable | Silvio,
it is possible.
What do You want to show inside the dialog ( resized )
[img:2e6lk7et]http://www.pflegeplus.com/IMAGES/Dlgresize1.jpg[/img:2e6lk7et]
resized <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: -->
( only image, text centered )
[im... |
dialog resizable | thank wich is the command ?
it's possible also on Window ? |
dialog resizable | Silvio,
a function is needed because it is to special
It is a extended / modified solution from a Antonio-sample.
Working with dialog or windows works the same.
The dialog just needed to be defined as window with no other changes
[img:3ij26z70]http://www.pflegeplus.com/IMAGES/Wndresize1.jpg[/img:3ij26... |
dialog resizable | Uwe,
on Window I tried with
DEFINE WINDOW ::oWnd BRUSH obrush STYLE WS_POPUP
and the user must click on a button to exit from ::oWnd
but I cannot show the caption and menu pulldown ( no good)
on DIALOG it is different because I need to have
DEFINE DIALOG oDlg TITLE aTitle[nMode] SIZE 1120,650 ;
PIXEL... |
dialog resizable | Silvio,
I remember a function < DisableX >
( tested and works )
[img:2vi1ncv1]http://www.pflegeplus.com/IMAGES/DisableX.jpg[/img:2vi1ncv1]
[code=fw:2vi1ncv1]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#define</span> MF_BYPOSITION <span style="c... |
dialog resizable | here not work perhaps I wrong something
do you use a particular set of the dialog ? |
dialog resizable | this run Perfectly
procedure DisableX2(ODLG)
local hMenu
hMenu := GetSystemMenu(oDlg:hWnd,.f.)
RemoveMenu( hMenu, 6, MF_BYPOSITION)
return |
dialog setsize method | Antonio
Is there any plan for dialog setsize method ?
It is very dfficult to draw dialogs from resources and make them available to different type of pocket pcs as we can not resize them at init time or at least i have not found how to do it. In Fwh i use odlg:setsize()
Even the client sample from Carles will not s... |
dialog setsize method | Richard,
Can you try the example TestSip ?
[code:1fg8hy51]MoveWindow( oDlg:hWnd, 28, 10, 220, 180 )[/code:1fg8hy51] |
dialog setsize method | Sample
[code:3d1ym20v]#include "Fwce.ch"
#define SM_CXSCREEN 0
#define SM_CYSCREEN 1
*--------------
FUNCTION Main()
*--------------
LOCAL oDlg
DEFINE DIALOG oDlg FROM 2,2 TO 13, 30
@ 1, 1 BUTTON "Maximize" SIZE 100, 20 ACTION Maximize( oDlg )
@ 3, 1 BUTTON "Exit " SIZE ... |
dialog setsize method | [quote="Carles":3bpmg14b]Sample
[code:3bpmg14b]#include "Fwce.ch"
#define SM_CXSCREEN 0
#define SM_CYSCREEN 1
*--------------
FUNCTION Main()
*--------------
LOCAL oDlg
DEFINE DIALOG oDlg FROM 2,2 TO 13, 30
@ 1, 1 BUTTON "Maximize" SIZE 100, 20 ACTION Maximize( oDlg )
@ 3, ... |
dialog style ws_child | I have this source :
[code:215vtf7u]oBrush := TBrush():New("NULL",,,)
oDlg := TDialog():New()
oWnd:CoorsUpdate()
aDlgCoor := DlgCoors(oWnd)
oDlg:nTop := aDlgCoor[4]
oDlg:nLeft := aDlgCoor[5	... |
dialog style ws_child | Try:
oDlg:nStyle:= nor( WS_CHILD )
James |
dialog style ws_pop and ximage | Please, create image at ON INIT clause dialog and try |
dialog style ws_pop and ximage | here not run this
[code=fw:2cuqu3so]<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;">"Constant.ch"</span><br /><span style="co... |
dialog with CANCEL button | hi to all
I know MsgRun() or MsgMeter() function, but this functions have not CANCEL button to stop codeblock inside.
is there any function or example with dialog that run any function and with CANCEL button to stop that function?
thanks. |
dialog with CANCEL button | Well, you can use a non-modal dialog with a Cancel button, but the hard part is how is the codeblock going to determine when the button is pressed?
Perhaps you can use the oDialog:cargo property to hold a flag which defaults to .T. and when the button is pressed, change the flag to .F. and then the codeblock would see... |
dialog with the same size | how I can make a dialog with the same size into all pc and resolutions
I saw my dialogs are changed if I have small or Highter resolution
How I can to make it - the system must control the size of screen before and then create the dialog and resize all controls into
I use only @x,y source code no resources |
dialog with the same size | I am also interested.
Best regards,
Otto |
dialog with the same size | Buen dia, haber si esto ayuda, saludos...gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=32466&p=190747&hilit=layout#p190747">viewtopic.php?f=3&t=32466&p... |
dialog with the same size | What do you mean by "same size" ?
Hope you mean same proportion relative to the size of the screen size.
If so, it should not be difficult. Base your co-ordinate calculations on screenwidth() and screenheight() |
dialog with the same size | [quote="joseluisysturiz":316hghvo]Buen dia, haber si esto ayuda, saludos...gracias... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=3&t=32466&p=190747&hilit=layout#p1... |
dialog with the same size | I wish something of
[code=fw:2yxqyxvt]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">DEFINE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color: #ff0000;">"TEST"</span><br /><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: ... |
dialog with the same size | I found a class of Charles Kwon (CLASS TDlgResize)
It run only with dialog made with resources
I think it can be modify to use with dialog No resource
Who can help to converte it ? |
dialog with the same size | Hello Silvio,
Do you mean by “dialog with the same size“ a responsive design of dialogs and windows aimed at allowing our programs to be viewed in response to the size of the device one is viewing.
If yes I help contributing some Euros.
Best regards,
Otto |
dialog with tree and other dialog | [img:w50ocziy]https://help.ivanti.com/iv/help/it_IT/isec/94/Topics/Screenshots/ExecutableControl.png[/img:w50ocziy]
How I can make a dialog with a tree at left, one splitter and dialogs at right
when I select an item must open the dialog on the space right
as a configuration of a app |
dialog with tree and other dialog | Dear Silvio,
Fully coded or using resources ? |
dialog with tree and other dialog | i wish make on source code
can you make a little sample test? |
dialog with tree and other dialog | Dear Antonio,
I think this would be a nice task tor webview.
I am working on a DMS with similar layout.
Best regards,
Otto
[img:1c3nsx6p]https://mybergland.com/fwforum/treeviewtinymc.jpg[/img:1c3nsx6p] |
dialog with tree and other dialog | [quote="Otto":w9i3q9vg]Dear Antonio,
I think this would be a nice task tor webview.
I am working on a DMS with similar layout.
Best regards,
Otto
[img:w9i3q9vg]https://mybergland.com/fwforum/treeviewtinymc.jpg[/img:w9i3q9vg][/quote:w9i3q9vg]
I need on fwh and windows not on internet explorer , |
dialog with tree and other dialog | I made a test but not run
Testree5.prg run on Windows but I need to use a dialog
[code=fw:30y9ichz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Using a TreeView with checkboxes and checking their status</span><br /><br /><span style="color: #00D7D7;">#include</span> <spa... |
dialog with tree and other dialog | Dear Silvio,
It seems as testtre2.prg is a better example to start with as a template
[img:jfyk4j39]https://github.com/FiveTechSoft/screenshots/blob/master/silvio_template.gif?raw=true[/img:jfyk4j39] |
dialog with tree and other dialog | Antonio,
it is on Window I think |
dialog...help...RESOLVIDO | ola amigos, Gostaria de saber como faço para que meu dialog fechar somente quando clicar em um button, ou seja se clico no Window o Dialog fica atras. como evitar isso? que na verdade como deves saber o Dialog não fecha mas fica atras. |
dialog...help...RESOLVIDO | Puedes mostrar un PRG de ejemplo con lo que deseas hacer ? gracias |
dialog:move( ntopnleftnwidthnheight) | hi,
define dialog odlg
ntop:=myrestorentop()
nleft:=myrestorenleft()
nbottom:=myrestorenleft()
nright:=myrestorenright()
activate dialog odlg ;
on init (odlg:move(ntop,nleft,nright-nleft,nbottom-ntop));
valid (mysave( odlg:ntop,odlg:nleft,odlg:nbottom,odlg:nright),.t.)
The dialg position moves... |
dialog:move( ntopnleftnwidthnheight) | Shuming,
Try doing this:
odlg:Move( nTop, nLeft, nRight - nLeft + 1, nBottom - nTop + 1 ) |
dialog:move( ntopnleftnwidthnheight) | Still can not move to the proper postion .
odlg:ntop:=240
odlg:nleft:=2
odlg:nbottom:=678
odlg:nright:=548
@1,2 BUTTON "aaa" OF odlg ACTION msginfo(cvaltochar(odlg:ntop)+","+cvaltochar(odlg:nleft)+","+cvaltochar(odlg:nbottom)+","+cvaltochar(odlg:nright))
// result : 191,-1,665,555 ,not 240,2,678,548
shuming Wang |
dialog:move( ntopnleftnwidthnheight) | Shuming,
dialogs use "units" not pixels, so if you want to set the exact position move them from the ON INIT clause of the dialog |
dialog:move( ntopnleftnwidthnheight) | on init odlg:move() can't move to the proper postion.
odlg:Move( nTop, nLeft, nRight - nLeft + 1, nBottom - nTop + 1 )
Each time dialog moves more top .
Shuming Wang |
dialog:move( ntopnleftnwidthnheight) | Have you tried ?
odlg:Move( nTop - 1, nLeft, nRight - nLeft + 1, nBottom - nTop + 1 ) |
dialog:move( ntopnleftnwidthnheight) | still move and move.
Shuming Wang |
dialog:move( ntopnleftnwidthnheight) | Shuming,
Just to the top or to the left too ? |
dialog:move( ntopnleftnwidthnheight) | In my case, I use GetRect() method for save a pre-postions. |
dialog:move( ntopnleftnwidthnheight) | Thank Antonio and CharlesKwon!
GetWndRect(odlg:hwnd) can be used to save the postion, while saving odlg:ntop,odlg:nleft,.. no use.
ACTIVATE DIALOG oDlg
on INIT (odlg:move(ntop1,nleft1,nright1-nleft1+1,nbottom1-ntop1+1),.t.)
VALID (arect:=GetWndRect(odlg:hwnd),;
oserver:query("insert into browseset (id,cval... |
dialogo o ventana pantalla completa | Buenos dias para todos
Queria saber como puedo iniciar un dialogo o window en modo pantalla completa?
Saludos |
dialogo o ventana pantalla completa | ACTIVATE WINDOW oWnd MAXIMIZED ? |
dialogo o ventana pantalla completa | Gracias Cristobal por responder
Pero no es lo que necesito... si no que la ventana de aplicación... se ubique por encima de todas las aplicaciones de windows y que en modo pantalla completa...
Algo similar a lo que hace youtube cuando colocas un video en pantalla completa.
De antemano gracias |
dialogo o ventana pantalla completa | [quote="leandro":3iecikdw]Gracias Cristobal por responder
Pero no es lo que necesito... si no que la ventana de aplicación... se ubique por encima de todas las aplicaciones de windows y que en modo pantalla completa...
Algo similar a lo que hace youtube cuando colocas un video en pantalla completa.
De antemano grac... |
dialogo o ventana pantalla completa | Leandro,
algo assim:
function Main()
local oDlg, oIco, cTest := "Hello world! "
DEFINE ICON oIco FILE "..\icons\fivewin.ico"
DEFINE DIALOG oDlg TITLE "I am a DialogBox" COLOR "W+/B" ;
ICON oIco
@ 1, 3 GET cTest
@ 3, 5 BUTTON "&Ok" SIZE 40, 12 ;
ACTION MsgInfo( "Any action here!" ) DE... |
dialogo o ventana pantalla completa | Yo tengo algo asi :
[code=fw:2m2nx3vz]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />oTB := TaskBar<span style="color: #000000;">(</span><span style="color: #000000;">)</span> <<- Esta es una clase<br />oTB:<span style="color: #000000;">HideShowTaskBar</span><span style="color: #0... |
dialogo o ventana pantalla completa | Leandro:
Buscando en el baúl de los recuerdos encontré esto, aunque es para un dialogo
tal vez te sirva para una ventana.
[code=fw:2f40fmu1]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</span> oDlg <span style="color:... |
dialogo o ventana pantalla completa | Leandro:
Algo más simple <!-- s:oops: --><img src="{SMILIES_PATH}/icon_redface.gif" alt=":oops:" title="Embarassed" /><!-- s:oops: -->
[code=fw:2ul4k4oc]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #0000ff;">ACTIVATE</span> <span style="color: #0000ff;">DIALOG</s... |
dialogo o ventana pantalla completa | Gracias a Armando consegui esto, espero te ayude...saludos... <!-- s:shock: --><img src="{SMILIES_PATH}/icon_eek.gif" alt=":shock:" title="Shocked" /><!-- s:shock: -->
<!-- l --><a class="postlink-local" href="http://forums.fivetechsupport.com/viewtopic.php?f=6&t=24061&p=129634&hilit=SetWindowPos&sid=843b1321ba72b79b... |
dialogo o ventana pantalla completa | Todo es aún más sencillo.
En los ejemplos touch de fwh se usan ventanas a pantalla completa. |
dialogo o ventana pantalla completa | Muchas Gracias a todos por responder
Pruebo y comento |
dialogo o ventana pantalla completa | +1
DEFINE DIALOG oDlg STYLE nOr(WS_POPUP, WS_VISIBLE)
ACTIVATE DIALOG oDlg CENTERED ON INIT ShowWindow(oDlg:hWnd, 3) |
dialogo o ventana pantalla completa | hmpaquito Muchas Gracias
Algo así es lo que estoy tratando de hacer.... voy a probar por ese lado y comento. |
dialogo por sobre todo el resto de ventana...? | Hola.
Necesito que un dialogo este por sobre todas las ventanas, cual sería la clausula a usar?
gracias. |
dialogo por sobre todo el resto de ventana...? | Try this:
[code=fw:3lqpvq0j]<div class="fw" id="{CB}" style="font-family: monospace;">SETWINDOWPOS<span style="color: #000000;">(</span> oDlg:<span style="color: #000000;">hWnd</span>, <span style="color: #000000;">-1</span>, <span style="color: #000000;">0</span>, <span style="color: #000000;">0</span>, <span sty... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.