-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathgtwvw.html
3705 lines (3503 loc) · 347 KB
/
gtwvw.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<meta charset="utf-8">
<meta name="referrer" content="origin">
<meta name="viewport" content="initial-scale=1">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests; block-all-mixed-content">
<meta name="generator" content="hbdoc">
<meta name="keywords" content="Harbour, Clipper, xBase, database, Free Software, GPL, compiler, cross-platform, 32-bit, 64-bit">
<title>Harbour Reference Guide · gtwvw lib</title>
<style>
/**
* Minified by jsDelivr using clean-css v4.2.1.
* Original file: /gh/PrismJS/[email protected]/themes/prism-okaidia.css
*
* Do NOT use SRI with dynamically generated files! More information: https://www.jsdelivr.com/using-sri-with-dynamic-files
*/
code[class*=language-],pre[class*=language-]{color:#f8f8f2;background:0 0;text-shadow:0 1px rgba(0,0,0,.3);font-family:Consolas,Monaco,'Andale Mono','Ubuntu Mono',monospace;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-break:normal;word-wrap:normal;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;-moz-hyphens:none;-ms-hyphens:none;hyphens:none}pre[class*=language-]{padding:1em;margin:.5em 0;overflow:auto;border-radius:.3em}:not(pre)>code[class*=language-],pre[class*=language-]{background:#272822}:not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.token.cdata,.token.comment,.token.doctype,.token.prolog{color:#708090}.token.punctuation{color:#f8f8f2}.namespace{opacity:.7}.token.constant,.token.deleted,.token.property,.token.symbol,.token.tag{color:#f92672}.token.boolean,.token.number{color:#ae81ff}.token.attr-name,.token.builtin,.token.char,.token.inserted,.token.selector,.token.string{color:#a6e22e}.language-css .token.string,.style .token.string,.token.entity,.token.operator,.token.url,.token.variable{color:#f8f8f2}.token.atrule,.token.attr-value,.token.class-name,.token.function{color:#e6db74}.token.keyword{color:#66d9ef}.token.important,.token.regex{color:#fd971f}.token.bold,.token.important{font-weight:700}.token.italic{font-style:italic}.token.entity{cursor:help}
/*# sourceMappingURL=/sm/40fbac8c090a0ea2949bef662c4dc8f61e9fdf4136e4615ec312d47b6c8d4578.map */
</style>
<link rel="stylesheet" href="hbdoc.css">
<body>
<header>
<svg viewBox="0 0 2260 2260" xmlns="http://www.w3.org/2000/svg">
<path d="m900 1908c137.17-53.265 443.4-77.006 600-52.437-27.114-474.75-34.113-758.18-7.68-1116.3 2.056-27.195 4.283-54.9 6.68-83.245-34.633 68.628-579.45 1206.4-599 1252z"/>
<path d="m1503 297c-123.84 327.12-161.3 844.46-213.46 1389.5-169.5-13.113-449.01 19.795-659.3 108.82 13.528-23.75 771.23-1330.1 872.77-1498.3z"/>
<path d="m1172 1270c-224.3-65.046-473.09 64.996-694 204 153.35-235.43 613.25-936.89 1011-1474-301.51 419.86-317.18 1087.9-317 1270z"/>
<path d="m620.8 2258.7c0.662-1.037 1.36-2.165 2.068-3.191 36.736-55.29 105.69-101.18 205.1-96.72 193.8 8.619 357.24 25.577 652.18 7.207-290.1-9.342-643.35-48.142-1069.1-124.55 105.83 77.98 193.83 195.4 209.76 217.25"/>
<path d="m2259.2 2007.9c-351.83 85.376-1111.3 54.312-2014.2-105.24 59.534 32.024 105.24 68.44 160.57 113.87 884.55 158.71 1465.7 153.54 1808.7 60.37 31.307-22.43 35.385-37.956 44.934-69.006"/>
<path d="m2250.8 1985.6c-316.53 76.867-976 46.6-1793.5-72.332-79.588-11.605-308.23-46.57-445.63-69.063-7.464-15.506-11.282-40.462-11.282-70.79 509.45 68.675 1799.6 275.42 2244 168.26 2.015 12.02 7.115 18.487 6.527 43.929"/>
</svg>
<div>
<div><a href="index.html">Harbour Reference Guide</a></div>
<div>
<nav class="menu">
<nav class="dropdown">
<span class="dropbtn" onclick="">gtwvw lib</span>
<nav class="dropdown-content">
<a href="harbour.html">Harbour core</a>
<hr>
<a href="clc53.html">Clipper 5.3</a>
<a href="clct3.html">Clipper Tools 3</a>
<hr>
<a href="gtwvw.html">gtwvw</a>
<a href="hbct.html">hbct</a>
<a href="hbcups.html">hbcups</a>
<a href="hbgd.html">hbgd</a>
<a href="hbgt.html">hbgt</a>
<a href="hbmisc.html">hbmisc</a>
<a href="hbnf.html">hbnf</a>
<a href="hbxpp.html">hbxpp</a>
<a href="hbziparc.html">hbziparc</a>
<a href="rddads.html">rddads</a>
</nav>
</nav>
<nav class="dropdown lang">
<span class="dropbtn lang">EN</span><nav class="dropdown-content lang">
<a href="gtwvw.html">EN</a>
<a href="pt-br/gtwvw.html">pt-BR</a>
</nav>
</nav>
</nav>
</div>
</div>
</header>
<aside>
<a href="#gtwvw" title="GTWVW"><code>GTWVW</code></a>
<a href="#wvw__makedlgtemplate" title="wvw__MakeDlgTemplate()"><code>wvw__MakeDlgTemplate()</code></a>
<a href="#wvw_addrows" title="wvw_AddRows()"><code>wvw_AddRows()</code></a>
<a href="#wvw_appendmenu" title="wvw_AppendMenu()"><code>wvw_AppendMenu()</code></a>
<a href="#wvw_cbaddstring" title="wvw_cbAddString()"><code>wvw_cbAddString()</code></a>
<a href="#wvw_cbcreate" title="wvw_cbCreate()"><code>wvw_cbCreate()</code></a>
<a href="#wvw_cbdestroy" title="wvw_cbDestroy()"><code>wvw_cbDestroy()</code></a>
<a href="#wvw_cbenable" title="wvw_cbEnable()"><code>wvw_cbEnable()</code></a>
<a href="#wvw_cbfindstring" title="wvw_cbFindString()"><code>wvw_cbFindString()</code></a>
<a href="#wvw_cbgetcurtext" title="wvw_cbGetCurText()"><code>wvw_cbGetCurText()</code></a>
<a href="#wvw_cbgetindex" title="wvw_cbGetIndex()"><code>wvw_cbGetIndex()</code></a>
<a href="#wvw_cbisdropped" title="wvw_cbIsDropped()"><code>wvw_cbIsDropped()</code></a>
<a href="#wvw_cbisfocused" title="wvw_cbIsFocused()"><code>wvw_cbIsFocused()</code></a>
<a href="#wvw_cbsetcodeblock" title="wvw_cbSetCodeblock()"><code>wvw_cbSetCodeblock()</code></a>
<a href="#wvw_cbsetcursel" title="wvw_cbSetCurSel()"><code>wvw_cbSetCurSel()</code></a>
<a href="#wvw_cbsetfont" title="wvw_cbSetFont()"><code>wvw_cbSetFont()</code></a>
<a href="#wvw_cbsetindex" title="wvw_cbSetIndex()"><code>wvw_cbSetIndex()</code></a>
<a href="#wvw_cxcreate" title="wvw_cxCreate()"><code>wvw_cxCreate()</code></a>
<a href="#wvw_cxdestroy" title="wvw_cxDestroy()"><code>wvw_cxDestroy()</code></a>
<a href="#wvw_cxenable" title="wvw_cxEnable()"><code>wvw_cxEnable()</code></a>
<a href="#wvw_cxgetcheck" title="wvw_cxGetCheck()"><code>wvw_cxGetCheck()</code></a>
<a href="#wvw_cxsetcheck" title="wvw_cxSetCheck()"><code>wvw_cxSetCheck()</code></a>
<a href="#wvw_cxsetcodeblock" title="wvw_cxSetCodeblock()"><code>wvw_cxSetCodeblock()</code></a>
<a href="#wvw_cxsetfocus" title="wvw_cxSetFocus()"><code>wvw_cxSetFocus()</code></a>
<a href="#wvw_centerwindow" title="wvw_CenterWindow()"><code>wvw_CenterWindow()</code></a>
<a href="#wvw_choosecolor" title="wvw_ChooseColor()"><code>wvw_ChooseColor()</code></a>
<a href="#wvw_choosefont" title="wvw_ChooseFont()"><code>wvw_ChooseFont()</code></a>
<a href="#wvw_clienttoscreen" title="wvw_ClientToScreen()"><code>wvw_ClientToScreen()</code></a>
<a href="#wvw_createdialogdynamic" title="wvw_CreateDialogDynamic()"><code>wvw_CreateDialogDynamic()</code></a>
<a href="#wvw_createdialogmodal" title="wvw_CreateDialogModal()"><code>wvw_CreateDialogModal()</code></a>
<a href="#wvw_createfont" title="wvw_CreateFont()"><code>wvw_CreateFont()</code></a>
<a href="#wvw_createmenu" title="wvw_CreateMenu()"><code>wvw_CreateMenu()</code></a>
<a href="#wvw_createpopupmenu" title="wvw_CreatePopupMenu()"><code>wvw_CreatePopupMenu()</code></a>
<a href="#wvw_deletemenu" title="wvw_DeleteMenu()"><code>wvw_DeleteMenu()</code></a>
<a href="#wvw_destroymenu" title="wvw_DestroyMenu()"><code>wvw_DestroyMenu()</code></a>
<a href="#wvw_dlgseticon" title="wvw_DlgSetIcon()"><code>wvw_DlgSetIcon()</code></a>
<a href="#wvw_drawboxget" title="wvw_DrawBoxGet()"><code>wvw_DrawBoxGet()</code></a>
<a href="#wvw_drawboxgroup" title="wvw_DrawBoxGroup()"><code>wvw_DrawBoxGroup()</code></a>
<a href="#wvw_drawboxraised" title="wvw_DrawBoxRaised()"><code>wvw_DrawBoxRaised()</code></a>
<a href="#wvw_drawboxrecessed" title="wvw_DrawBoxRecessed()"><code>wvw_DrawBoxRecessed()</code></a>
<a href="#wvw_drawbutton" title="wvw_DrawButton()"><code>wvw_DrawButton()</code></a>
<a href="#wvw_drawcolorrect" title="wvw_DrawColorRect()"><code>wvw_DrawColorRect()</code></a>
<a href="#wvw_drawellipse" title="wvw_DrawEllipse()"><code>wvw_DrawEllipse()</code></a>
<a href="#wvw_drawfocusrect" title="wvw_DrawFocusRect()"><code>wvw_DrawFocusRect()</code></a>
<a href="#wvw_drawgridhorz" title="wvw_DrawGridHorz()"><code>wvw_DrawGridHorz()</code></a>
<a href="#wvw_drawgridvert" title="wvw_DrawGridVert()"><code>wvw_DrawGridVert()</code></a>
<a href="#wvw_drawimage" title="wvw_DrawImage()"><code>wvw_DrawImage()</code></a>
<a href="#wvw_drawlabel" title="wvw_DrawLabel()"><code>wvw_DrawLabel()</code></a>
<a href="#wvw_drawlabelex" title="wvw_DrawLabelEx()"><code>wvw_DrawLabelEx()</code></a>
<a href="#wvw_drawlabelobj" title="wvw_DrawLabelObj()"><code>wvw_DrawLabelObj()</code></a>
<a href="#wvw_drawline" title="wvw_DrawLine()"><code>wvw_DrawLine()</code></a>
<a href="#wvw_drawlineex" title="wvw_DrawLineEx()"><code>wvw_DrawLineEx()</code></a>
<a href="#wvw_drawmenubar" title="wvw_DrawMenuBar()"><code>wvw_DrawMenuBar()</code></a>
<a href="#wvw_drawoutline" title="wvw_DrawOutline()"><code>wvw_DrawOutline()</code></a>
<a href="#wvw_drawoutlineex" title="wvw_DrawOutlineEx()"><code>wvw_DrawOutlineEx()</code></a>
<a href="#wvw_drawpicture" title="wvw_DrawPicture()"><code>wvw_DrawPicture()</code></a>
<a href="#wvw_drawprogressbar" title="wvw_DrawProgressBar()"><code>wvw_DrawProgressBar()</code></a>
<a href="#wvw_drawrectangle" title="wvw_DrawRectangle()"><code>wvw_DrawRectangle()</code></a>
<a href="#wvw_drawroundrect" title="wvw_DrawRoundRect()"><code>wvw_DrawRoundRect()</code></a>
<a href="#wvw_drawscrollbutton" title="wvw_DrawScrollButton()"><code>wvw_DrawScrollButton()</code></a>
<a href="#wvw_drawscrollthumbhorz" title="wvw_DrawScrollThumbHorz()"><code>wvw_DrawScrollThumbHorz()</code></a>
<a href="#wvw_drawscrollthumbvert" title="wvw_DrawScrollThumbVert()"><code>wvw_DrawScrollThumbVert()</code></a>
<a href="#wvw_drawshadedrect" title="wvw_DrawShadedRect()"><code>wvw_DrawShadedRect()</code></a>
<a href="#wvw_drawstatusbar" title="wvw_DrawStatusBar()"><code>wvw_DrawStatusBar()</code></a>
<a href="#wvw_drawtextbox" title="wvw_DrawTextBox()"><code>wvw_DrawTextBox()</code></a>
<a href="#wvw_drawtoolbuttonstate" title="wvw_DrawToolButtonState()"><code>wvw_DrawToolButtonState()</code></a>
<a href="#wvw_enablemaximize" title="wvw_EnableMaximize()"><code>wvw_EnableMaximize()</code></a>
<a href="#wvw_enablemenuitem" title="wvw_EnableMenuItem()"><code>wvw_EnableMenuItem()</code></a>
<a href="#wvw_enableshortcuts" title="wvw_EnableShortcuts()"><code>wvw_EnableShortcuts()</code></a>
<a href="#wvw_fillrectangle" title="wvw_FillRectangle()"><code>wvw_FillRectangle()</code></a>
<a href="#wvw_getclipboard" title="wvw_GetClipboard()"><code>wvw_GetClipboard()</code></a>
<a href="#wvw_getcursorpos" title="wvw_GetCursorPos()"><code>wvw_GetCursorPos()</code></a>
<a href="#wvw_getfontinfo" title="wvw_GetFontInfo()"><code>wvw_GetFontInfo()</code></a>
<a href="#wvw_getlastmenuevent" title="wvw_GetLastMenuEvent()"><code>wvw_GetLastMenuEvent()</code></a>
<a href="#wvw_getmenu" title="wvw_GetMenu()"><code>wvw_GetMenu()</code></a>
<a href="#wvw_getpaintrect" title="wvw_GetPaintRect()"><code>wvw_GetPaintRect()</code></a>
<a href="#wvw_getpalette" title="wvw_GetPalette()"><code>wvw_GetPalette()</code></a>
<a href="#wvw_getrgbcolor" title="wvw_GetRGBColor()"><code>wvw_GetRGBColor()</code></a>
<a href="#wvw_getrowcolfromxy" title="wvw_GetRowColFromXY()"><code>wvw_GetRowColFromXY()</code></a>
<a href="#wvw_getscreenheight" title="wvw_GetScreenHeight()"><code>wvw_GetScreenHeight()</code></a>
<a href="#wvw_getscreenwidth" title="wvw_GetScreenWidth()"><code>wvw_GetScreenWidth()</code></a>
<a href="#wvw_gettitle" title="wvw_GetTitle()"><code>wvw_GetTitle()</code></a>
<a href="#wvw_gettooltipbkcolor" title="wvw_GetToolTipBkColor()"><code>wvw_GetToolTipBkColor()</code></a>
<a href="#wvw_gettooltiptextcolor" title="wvw_GetToolTipTextColor()"><code>wvw_GetToolTipTextColor()</code></a>
<a href="#wvw_gettooltipwidth" title="wvw_GetToolTipWidth()"><code>wvw_GetToolTipWidth()</code></a>
<a href="#wvw_getwindowhandle" title="wvw_GetWindowHandle()"><code>wvw_GetWindowHandle()</code></a>
<a href="#wvw_getxyfromrowcol" title="wvw_GetXYFromRowCol()"><code>wvw_GetXYFromRowCol()</code></a>
<a href="#wvw_invalidaterect" title="wvw_InvalidateRect()"><code>wvw_InvalidateRect()</code></a>
<a href="#wvw_islbuttonpressed" title="wvw_IsLButtonPressed()"><code>wvw_IsLButtonPressed()</code></a>
<a href="#wvw_killtimer" title="wvw_KillTimer()"><code>wvw_KillTimer()</code></a>
<a href="#wvw_lbaddstring" title="wvw_lbAddString()"><code>wvw_lbAddString()</code></a>
<a href="#wvw_lbsetcursel" title="wvw_lbSetCurSel()"><code>wvw_lbSetCurSel()</code></a>
<a href="#wvw_lclosewindow" title="wvw_lCloseWindow()"><code>wvw_lCloseWindow()</code></a>
<a href="#wvw_loadfont" title="wvw_LoadFont()"><code>wvw_LoadFont()</code></a>
<a href="#wvw_loadpen" title="wvw_LoadPen()"><code>wvw_LoadPen()</code></a>
<a href="#wvw_loadpicture" title="wvw_LoadPicture()"><code>wvw_LoadPicture()</code></a>
<a href="#wvw_maximize" title="wvw_Maximize()"><code>wvw_Maximize()</code></a>
<a href="#wvw_maxmaxcol" title="wvw_MaxMaxCol()"><code>wvw_MaxMaxCol()</code></a>
<a href="#wvw_maxmaxrow" title="wvw_MaxMaxRow()"><code>wvw_MaxMaxRow()</code></a>
<a href="#wvw_messagebox" title="wvw_MessageBox()"><code>wvw_MessageBox()</code></a>
<a href="#wvw_minimize" title="wvw_Minimize()"><code>wvw_Minimize()</code></a>
<a href="#wvw_ncolofs" title="wvw_nColOfs()"><code>wvw_nColOfs()</code></a>
<a href="#wvw_nnumwindows" title="wvw_nNumWindows()"><code>wvw_nNumWindows()</code></a>
<a href="#wvw_nopenwindow" title="wvw_nOpenWindow()"><code>wvw_nOpenWindow()</code></a>
<a href="#wvw_nrowofs" title="wvw_nRowOfs()"><code>wvw_nRowOfs()</code></a>
<a href="#wvw_nsetcurwindow" title="wvw_nSetCurWindow()"><code>wvw_nSetCurWindow()</code></a>
<a href="#wvw_noclose" title="wvw_NoClose()"><code>wvw_NoClose()</code></a>
<a href="#wvw_nostartupsubwindow" title="wvw_NoStartupSubWindow()"><code>wvw_NoStartupSubWindow()</code></a>
<a href="#wvw_numbmcache" title="wvw_NumBMCache()"><code>wvw_NumBMCache()</code></a>
<a href="#wvw_pbcreate" title="wvw_pbCreate()"><code>wvw_pbCreate()</code></a>
<a href="#wvw_pbdestroy" title="wvw_pbDestroy()"><code>wvw_pbDestroy()</code></a>
<a href="#wvw_pbenable" title="wvw_pbEnable()"><code>wvw_pbEnable()</code></a>
<a href="#wvw_pbsetcodeblock" title="wvw_pbSetCodeblock()"><code>wvw_pbSetCodeblock()</code></a>
<a href="#wvw_pbsetfocus" title="wvw_pbSetFocus()"><code>wvw_pbSetFocus()</code></a>
<a href="#wvw_pbsetfont" title="wvw_pbSetFont()"><code>wvw_pbSetFont()</code></a>
<a href="#wvw_pbsetstyle" title="wvw_pbSetStyle()"><code>wvw_pbSetStyle()</code></a>
<a href="#wvw_pgcreate" title="wvw_pgCreate()"><code>wvw_pgCreate()</code></a>
<a href="#wvw_pgdestroy" title="wvw_pgDestroy()"><code>wvw_pgDestroy()</code></a>
<a href="#wvw_pggetpos" title="wvw_pgGetPos()"><code>wvw_pgGetPos()</code></a>
<a href="#wvw_pgsetpos" title="wvw_pgSetPos()"><code>wvw_pgSetPos()</code></a>
<a href="#wvw_pastefromclipboard" title="wvw_PasteFromClipboard()"><code>wvw_PasteFromClipboard()</code></a>
<a href="#wvw_processmessages" title="wvw_ProcessMessages()"><code>wvw_ProcessMessages()</code></a>
<a href="#wvw_restore" title="wvw_Restore()"><code>wvw_Restore()</code></a>
<a href="#wvw_restscreen" title="wvw_RestScreen()"><code>wvw_RestScreen()</code></a>
<a href="#wvw_sbaddpart" title="wvw_sbAddPart()"><code>wvw_sbAddPart()</code></a>
<a href="#wvw_sbcreate" title="wvw_sbCreate()"><code>wvw_sbCreate()</code></a>
<a href="#wvw_sbdestroy" title="wvw_sbDestroy()"><code>wvw_sbDestroy()</code></a>
<a href="#wvw_sbgetparts" title="wvw_sbGetParts()"><code>wvw_sbGetParts()</code></a>
<a href="#wvw_sbgettext" title="wvw_sbGetText()"><code>wvw_sbGetText()</code></a>
<a href="#wvw_sbrefresh" title="wvw_sbRefresh()"><code>wvw_sbRefresh()</code></a>
<a href="#wvw_sbsettext" title="wvw_sbSetText()"><code>wvw_sbSetText()</code></a>
<a href="#wvw_savescreen" title="wvw_SaveScreen()"><code>wvw_SaveScreen()</code></a>
<a href="#wvw_setaltf4close" title="wvw_SetAltF4Close()"><code>wvw_SetAltF4Close()</code></a>
<a href="#wvw_setasnormal" title="wvw_SetAsNormal()"><code>wvw_SetAsNormal()</code></a>
<a href="#wvw_setbrush" title="wvw_SetBrush()"><code>wvw_SetBrush()</code></a>
<a href="#wvw_setclipboard" title="wvw_SetClipboard()"><code>wvw_SetClipboard()</code></a>
<a href="#wvw_setcodepage" title="wvw_SetCodepage()"><code>wvw_SetCodepage()</code></a>
<a href="#wvw_setdefcentrewindow" title="wvw_SetDefCentreWindow()"><code>wvw_SetDefCentreWindow()</code></a>
<a href="#wvw_setdefhcentrewindow" title="wvw_SetDefHCentreWindow()"><code>wvw_SetDefHCentreWindow()</code></a>
<a href="#wvw_setdeflinespacing" title="wvw_SetDefLineSpacing()"><code>wvw_SetDefLineSpacing()</code></a>
<a href="#wvw_setdeflspacecolor" title="wvw_SetDefLSpaceColor()"><code>wvw_SetDefLSpaceColor()</code></a>
<a href="#wvw_setdefvcentrewindow" title="wvw_SetDefVCentreWindow()"><code>wvw_SetDefVCentreWindow()</code></a>
<a href="#wvw_setfont" title="wvw_SetFont()"><code>wvw_SetFont()</code></a>
<a href="#wvw_seticon" title="wvw_SetIcon()"><code>wvw_SetIcon()</code></a>
<a href="#wvw_setlastmenuevent" title="wvw_SetLastMenuEvent()"><code>wvw_SetLastMenuEvent()</code></a>
<a href="#wvw_setlinespacing" title="wvw_SetLineSpacing()"><code>wvw_SetLineSpacing()</code></a>
<a href="#wvw_setlspacecolor" title="wvw_SetLSpaceColor()"><code>wvw_SetLSpaceColor()</code></a>
<a href="#wvw_setmaincoord" title="wvw_SetMainCoord()"><code>wvw_SetMainCoord()</code></a>
<a href="#wvw_setmaxbmcache" title="wvw_SetMaxBMCache()"><code>wvw_SetMaxBMCache()</code></a>
<a href="#wvw_setmenu" title="wvw_SetMenu()"><code>wvw_SetMenu()</code></a>
<a href="#wvw_setmenukeyevent" title="wvw_SetMenuKeyEvent()"><code>wvw_SetMenuKeyEvent()</code></a>
<a href="#wvw_setmousemove" title="wvw_SetMouseMove()"><code>wvw_SetMouseMove()</code></a>
<a href="#wvw_setmousepos" title="wvw_SetMousePos()"><code>wvw_SetMousePos()</code></a>
<a href="#wvw_setontop" title="wvw_SetOnTop()"><code>wvw_SetOnTop()</code></a>
<a href="#wvw_setpaintrefresh" title="wvw_SetPaintRefresh()"><code>wvw_SetPaintRefresh()</code></a>
<a href="#wvw_setpalette" title="wvw_SetPalette()"><code>wvw_SetPalette()</code></a>
<a href="#wvw_setpen" title="wvw_SetPen()"><code>wvw_SetPen()</code></a>
<a href="#wvw_setpointer" title="wvw_SetPointer()"><code>wvw_SetPointer()</code></a>
<a href="#wvw_setpopupmenu" title="wvw_SetPopupMenu()"><code>wvw_SetPopupMenu()</code></a>
<a href="#wvw_settimer" title="wvw_SetTimer()"><code>wvw_SetTimer()</code></a>
<a href="#wvw_settitle" title="wvw_SetTitle()"><code>wvw_SetTitle()</code></a>
<a href="#wvw_settooltip" title="wvw_SetToolTip()"><code>wvw_SetToolTip()</code></a>
<a href="#wvw_settooltipactive" title="wvw_SetToolTipActive()"><code>wvw_SetToolTipActive()</code></a>
<a href="#wvw_settooltipbkcolor" title="wvw_SetToolTipBkColor()"><code>wvw_SetToolTipBkColor()</code></a>
<a href="#wvw_settooltipmargin" title="wvw_SetToolTipMargin()"><code>wvw_SetToolTipMargin()</code></a>
<a href="#wvw_settooltiptext" title="wvw_SetToolTipText()"><code>wvw_SetToolTipText()</code></a>
<a href="#wvw_settooltiptextcolor" title="wvw_SetToolTipTextColor()"><code>wvw_SetToolTipTextColor()</code></a>
<a href="#wvw_settooltiptitle" title="wvw_SetToolTipTitle()"><code>wvw_SetToolTipTitle()</code></a>
<a href="#wvw_settooltipwidth" title="wvw_SetToolTipWidth()"><code>wvw_SetToolTipWidth()</code></a>
<a href="#wvw_setvertcaret" title="wvw_SetVertCaret()"><code>wvw_SetVertCaret()</code></a>
<a href="#wvw_setwindowcentre" title="wvw_SetWindowCentre()"><code>wvw_SetWindowCentre()</code></a>
<a href="#wvw_setwindowpos" title="wvw_SetWindowPos()"><code>wvw_SetWindowPos()</code></a>
<a href="#wvw_setwinstyle" title="wvw_SetWinStyle()"><code>wvw_SetWinStyle()</code></a>
<a href="#wvw_showwindow" title="wvw_ShowWindow()"><code>wvw_ShowWindow()</code></a>
<a href="#wvw_tbaddbutton" title="wvw_tbAddButton()"><code>wvw_tbAddButton()</code></a>
<a href="#wvw_tbbuttoncount" title="wvw_tbButtonCount()"><code>wvw_tbButtonCount()</code></a>
<a href="#wvw_tbcmd2index" title="wvw_tbCmd2Index()"><code>wvw_tbCmd2Index()</code></a>
<a href="#wvw_tbcreate" title="wvw_tbCreate()"><code>wvw_tbCreate()</code></a>
<a href="#wvw_tbdelbutton" title="wvw_tbDelButton()"><code>wvw_tbDelButton()</code></a>
<a href="#wvw_tbdestroy" title="wvw_tbDestroy()"><code>wvw_tbDestroy()</code></a>
<a href="#wvw_tbenablebutton" title="wvw_tbEnableButton()"><code>wvw_tbEnableButton()</code></a>
<a href="#wvw_tbindex2cmd" title="wvw_tbIndex2Cmd()"><code>wvw_tbIndex2Cmd()</code></a>
<a href="#wvw_trackpopupmenu" title="wvw_TrackPopupMenu()"><code>wvw_TrackPopupMenu()</code></a>
<a href="#wvw_unreachedbr" title="wvw_UnreachedBr()"><code>wvw_UnreachedBr()</code></a>
<a href="#wvw_updatewindow" title="wvw_UpdateWindow()"><code>wvw_UpdateWindow()</code></a>
<a href="#wvw_xbcreate" title="wvw_xbCreate()"><code>wvw_xbCreate()</code></a>
<a href="#wvw_xbdestroy" title="wvw_xbDestroy()"><code>wvw_xbDestroy()</code></a>
<a href="#wvw_xbenable" title="wvw_xbEnable()"><code>wvw_xbEnable()</code></a>
<a href="#wvw_xbinfo" title="wvw_xbInfo()"><code>wvw_xbInfo()</code></a>
<a href="#wvw_xbupdate" title="wvw_xbUpdate()"><code>wvw_xbUpdate()</code></a>
<a href="#wvw_xreposwindow" title="wvw_XReposWindow()"><code>wvw_XReposWindow()</code></a>
</aside>
<main>
<section>
<h4><a href="#wvw__makedlgtemplate" class="d-id" id="wvw__makedlgtemplate" title="∞"><code>wvw__MakeDlgTemplate()</code></a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw__MakeDlgTemplate">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw__MakeDlgTemplate">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw__MakeDlgTemplate( <aDlg>, <aItens1>, <aItens2>, <aItens3>, <aItens4>, <aItens5>,
<aItens6>, <aItens7>, <aItens8>, <aItens9>, <aItens10> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>aDlg</code> <code>aItens1</code> <code>aItens2</code> <code>aItens3</code> <code>aItens4</code> <code>aItens5</code> <code>aItens6</code> <code>aItens7</code> <code>aItens8</code> <code>aItens9</code> <code>aItens10</code></div>
<div class="d-d">Returns</div>
<div class="d-it">String with new template dialog.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a window dialog template.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_addrows" class="d-id" id="wvw_addrows" title="∞"><code>wvw_AddRows()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/gtwvwd.c#L6498" class="d-so" title="contrib/gtwvw/gtwvwd.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_AddRows">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_AddRows">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_AddRows( <nWinNum>, <nRows> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nRows</code> Number of lines to add or reduce (if <code>nRows</code> < 0).</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> otherwise.</div>
<div class="d-d">Description</div>
<div class="d-it">Adds or reduces lines from window. The new lines will be colored from column zero color, from prior line. There's no checking to determine if the window is bigger than desktop area (except if in MainCoord mode, because we need these boundaries to <code><a href="harbour.html#maxrow" title="harbour">MaxRow()</a></code> function).</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_appendmenu" class="d-id" id="wvw_appendmenu" title="∞"><code>wvw_AppendMenu()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwharb.prg#L182" class="d-so" title="contrib/gtwvw/wvwharb.prg">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_AppendMenu">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_AppendMenu">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_AppendMenu( <hMenu>, <nFlags>, <nMenuItemId>, <cCaption> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>hMenu</code> Identifies the menu to be changed. <code>nFlags</code> Specifies flags to control the appearance and behavior of the new menu item. This parameter can be a combination of values (all flags can be viewed in <code>winuser.ch</code> file). <code>nMenuItemId</code> Specifies either the identifier of the new menu item or, if the <code>uFlags</code> parameter is set to <code>MF_POPUP</code>, the handle to the drop-down menu or submenu. <code>cCaption</code> Specifies the string content of the new menu item or full path to a bitmap to the new menu item.</div>
<div class="d-d">Returns</div>
<div class="d-it">If successful, a value greater than zero. Otherwise zero.</div>
<div class="d-d">Description</div>
<div class="d-it">Adds a new menu item. Through this function we can specifies the content, appearance and behavior of each menu item.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbaddstring" class="d-id" id="wvw_cbaddstring" title="∞"><code>wvw_cbAddString()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1109" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbAddString">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbAddString">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbAddString( <nHandleDialog>, <nIDComboBox>, <cItem> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nHandleDialog</code> Dialog handle of window. <code>nIdComboBox</code> ID of Combobox. <code>cItem</code> Item to be included in Combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">None.</div>
<div class="d-d">Description</div>
<div class="d-it">Adds an item into Combobox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbcreate" class="d-id" id="wvw_cbcreate" title="∞"><code>wvw_cbCreate()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L285" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbCreate">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbCreate">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_cbCreate( <nWinNum>, <nTop>, <nLeft>, <nWidth>, <aText>, <bBlock>,
<nListLines>, <nReserved>, <nKbdType>, <aOffset> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it">
<div><code>nWinNum</code> Window number. Default is current window. <code>nTop</code>, <code>nLeft</code> Coordinates of combobox. <code>nWidth</code> Width of combobox. <code>aText</code> Array with all combobox elements. Default is empty. <code>bBlock</code> Code block, executed for the following events: <code>CBN_SELCHANGE</code>: <code>CBN_SETFOCUS</code>: <code>CBN_KILLFOCUS</code>: User change selection (not executed when made by program itself) When focus go to combobox When focus lost from combobox</div>
<div>This code block will be evaluated with the following arguments: <code>nWinNum</code> <code>nCBId</code> <code>nType</code> <code>nIndex</code> Actual windows number Combobox ID Event type (only the three types above are supported) Index on selected item (start from 0)</div>
<div><code>nListLines</code> Number of lines to list items (default is 3). will be automatically truncated if this parameter is greater than Len(aText). <code>nReserved</code> Reserved for future use. <code>nKbdType</code> Specifies the behavior of combobox. Can be one of the following values: 0: 1: Similar to standard windows convention (i.e., <span class="d-key">ENTER</span>/<span class="d-key">ESC</span> will kill focus from combobox) Similar to CA-Cl*pper (i.e., <span class="d-key">ENTER</span> shows all combobox's items, <span class="d-key">UP</span>/<span class="d-key">DOWN</span>/<span class="d-key">TAB</span>/<span class="d-key">SHIFT+TAB</span>/<span class="d-key">ESC</span> will kill focus from combobox)</div>
<div>Default is 0.</div>
<div><code>aOffset</code> Array with four elements containing offsets to corner pixels <code>{ x1, y1, x2, y2 }</code>, to adjust dimension of combobox. Default is <code>{ -2, -2, +2, +2 }</code>. The third element (y2) is actually ignored. Height of combobox is always 1 char height.</div>
</div>
<div class="d-d">Returns</div>
<div class="d-it">Handle of combobox, if successful. Zero if failed.</div>
<div class="d-d">Description</div>
<div class="d-it">Create a combobox in current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbdestroy" class="d-id" id="wvw_cbdestroy" title="∞"><code>wvw_cbDestroy()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L433" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbDestroy">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbDestroy">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbDestroy( <nWinNum>, <nCBId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of Combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">None.</div>
<div class="d-d">Description</div>
<div class="d-it">Delete a combobox in the current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbenable" class="d-id" id="wvw_cbenable" title="∞"><code>wvw_cbEnable()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L497" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbEnable">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbEnable">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbEnable( <nWinNum>, <nCBId>, <lEnable> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of Combobox. <code>lEnable</code> Enable (<code>.T.</code>) or disable (<code>.F.</code>) combobox button in current window. Default is <code>.T.</code></div>
<div class="d-d">Returns</div>
<div class="d-it">Return old configuration of combobox (<code>.T.</code> enable, <code>.F.</code> disable). If failed, return <code>.F.</code>.</div>
<div class="d-d">Description</div>
<div class="d-it">Enable/Disable access of combobox in current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbfindstring" class="d-id" id="wvw_cbfindstring" title="∞"><code>wvw_cbFindString()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L661" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbFindString">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbFindString">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbFindString( <nWinNum>, <nCBId>, <cString> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox. <code>cString</code> String to find.</div>
<div class="d-d">Returns</div>
<div class="d-it">Index of string, or -1 if failed (or cannot find).</div>
<div class="d-d">Description</div>
<div class="d-it">Find index of string in combobox in current window. This function is case insensitive.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbgetcurtext" class="d-id" id="wvw_cbgetcurtext" title="∞"><code>wvw_cbGetCurText()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L679" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbGetCurText">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbGetCurText">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbGetCurText( <nWinNum>, <nCBId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">String, if successful, or "" if failed.</div>
<div class="d-d">Description</div>
<div class="d-it">Get current selected string in combobox in current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbgetindex" class="d-id" id="wvw_cbgetindex" title="∞"><code>wvw_cbGetIndex()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L645" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbGetIndex">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbGetIndex">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbGetIndex( <nWinNum>, <nCBId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">Current position in combobox or -1 if failed.</div>
<div class="d-d">Description</div>
<div class="d-it">Get current selection in combobox (start from zero).</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbisdropped" class="d-id" id="wvw_cbisdropped" title="∞"><code>wvw_cbIsDropped()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L710" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbIsDropped">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbIsDropped">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbIsDropped( <nWinNum>, <nCBId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">Return <code>.T.</code> if listbox is being shown, otherwise <code>.F.</code>. Also return <code>.F.</code> if combobox ID is not valid.</div>
<div class="d-d">Description</div>
<div class="d-it">Get current dropped state of combobox in current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbisfocused" class="d-id" id="wvw_cbisfocused" title="∞"><code>wvw_cbIsFocused()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L482" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbIsFocused">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbIsFocused">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbIsFocused( <nWinNum>, <nCBId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if is focused, <code>.F.</code> otherwise.</div>
<div class="d-d">Description</div>
<div class="d-it">Get information if focus is on combobox in current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbsetcodeblock" class="d-id" id="wvw_cbsetcodeblock" title="∞"><code>wvw_cbSetCodeblock()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L519" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbSetCodeblock">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbSetCodeblock">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbSetCodeblock( <nWinNum>, <nCBId>, <bBlock> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox. <code>bBlock</code> New code block to assign to combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> otherwise.</div>
<div class="d-d">Description</div>
<div class="d-it">Assign a new code block to combobox on current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbsetcursel" class="d-id" id="wvw_cbsetcursel" title="∞"><code>wvw_cbSetCurSel()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1119" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbSetCurSel">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbSetCurSel">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbSetCurSel( <nHandleDialog>, <nIDCombobox>, <nIndex> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nHandleDialog</code> Handle of window dialog. <code>nIDCombobox</code> ID of combobox. <code>nIndex</code> Index of item (start from zero). If 1, remove current selection and clean edit control of combobox.</div>
<div class="d-d">Returns</div>
<div class="d-it">None.</div>
<div class="d-d">Description</div>
<div class="d-it">Select an item of combobox list.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbsetfont" class="d-id" id="wvw_cbsetfont" title="∞"><code>wvw_cbSetFont()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L555" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbSetFont">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbSetFont">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_cbSetFont( <nWinNum>, <cFontFace>, <nHeight>, <nWidth>, <nWeight>,
<nQuality>, <lItalic>, <lUnderline>, <lStrikeout> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>cFontName</code> Name of the font. <code>nHeight</code> Height of the font's character. <code>nWidth</code> Specifies average width of character in the font. <code>nWeight</code> Specifies the weight of the font in the range 0 through 1000 (see About Fonts section). <code>nQuality</code> Specifies the output quality. <code>lItalic</code> Specifies an italic font if set to TRUE. <code>lUnderline</code> Specifies an underlined font if set to TRUE. <code>lStrikeout</code> Specifies a strikeout font if set to TRUE.</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> otherwise.</div>
<div class="d-d">Description</div>
<div class="d-it">This will initialize font for all comboboxes on current window (including ones created later on).</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cbsetindex" class="d-id" id="wvw_cbsetindex" title="∞"><code>wvw_cbSetIndex()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/combobox.c#L622" class="d-so" title="contrib/gtwvw/combobox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cbSetIndex">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cbSetIndex">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cbSetIndex( <nWinNum>, <nCBId>, <nIndex> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCBId</code> ID of combobox. <code>nIndex</code> Item index on combobox (start from 0).</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> otherwise.</div>
<div class="d-d">Description</div>
<div class="d-it">Set current selection on combobox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxcreate" class="d-id" id="wvw_cxcreate" title="∞"><code>wvw_cxCreate()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L88" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxCreate">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxCreate">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_cxCreate( <nWinNum>, <nTop>, <nLeft>, <nBottom>, <nRight>, <cText>,
<cImage>/<nImage>, <bBlock>, <aOffset>, <nStretchBitmap>, <lMap3DColors> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it">
<div><code>nWinNum</code> Window number. Default is current window. <code>nTop, nLeft</code> Row/column of top/left corner. <code>nBottom, nRight</code> Row/column of bottom/right corner. <code>cText</code> Text of checkbox. Default is empty. <code>cImage</code>/<code>nImage</code> If numeric, represent an resource ID from a .RC file. If string, represent a bitmap file name (must be supplied with a full path). <code>bBlock</code> Code block to execute on every <code>BN_CLICK</code> event. This code block will be evaluated with these parameters: current window and checkbox id. If this parameter is omitted, the checkbox will not be created. <code>aOffSet</code> Array of four elements {x1,y1,x2,y2} with offsets to corner pixels to adjust dimension of checkbox. Default is {-2,-2,+2,+2}. <code>nStretchBitmap</code> A number between 0 and 1 (inclusive) as a factor to stretch the bitmap. Example: 1.0 0.5 0 Bitmap covers the whole button Bitmap covers 50% of button Bitmap is not stretch</div>
<div>Default is 1. <code>lMap3Dcolors</code> If image will have transparent effect (<code>.T.</code>) or not (<code>.F.</code>). This will work on 256 colored bitmaps only.</div>
</div>
<div class="d-d">Returns</div>
<div class="d-it">Returns checkbox handle, if successful. If failed, return zero.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a checkbox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxdestroy" class="d-id" id="wvw_cxdestroy" title="∞"><code>wvw_cxDestroy()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L128" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxDestroy">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxDestroy">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxDestroy( <nWinNum>, <nCXId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox.</div>
<div class="d-d">Returns</div>
<div class="d-it">None.</div>
<div class="d-d">Description</div>
<div class="d-it">Delete a checkbox on current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxenable" class="d-id" id="wvw_cxenable" title="∞"><code>wvw_cxEnable()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L179" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxEnable">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxEnable">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxEnable( <nWinNum>, <nCXId>, <lToggle> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox. <code>lToggle</code> If <code>.T.</code>, Enable, otherwise disable. Default is <code>.T.</code></div>
<div class="d-d">Returns</div>
<div class="d-it">Return previous state of the checkbox, if <code>lToggle</code> informed. Otherwise, returns current state of the checkbox (<code>.T.</code> = enable, <code>.F.</code> = disable).</div>
<div class="d-d">Description</div>
<div class="d-it">Enable/disable a checkbox on current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxgetcheck" class="d-id" id="wvw_cxgetcheck" title="∞"><code>wvw_cxGetCheck()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L255" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxGetCheck">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxGetCheck">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxGetCheck( <nWinNum>, <nCXId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox.</div>
<div class="d-d">Returns</div>
<div class="d-it">Returns one of the following values: 0 1 2 Not selected Selected Indeterminate</div>
<div class="d-d">Description</div>
<div class="d-it">Return current state of checkbox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxsetcheck" class="d-id" id="wvw_cxsetcheck" title="∞"><code>wvw_cxSetCheck()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L239" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxSetCheck">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxSetCheck">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxSetCheck( <nWinNum>, <nCXId>, <nCheckState> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox. <code>nCheckState</code> 0 1 2 Not selected Selected Indeterminate</div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Assign check-state of checkbox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxsetcodeblock" class="d-id" id="wvw_cxsetcodeblock" title="∞"><code>wvw_cxSetCodeblock()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L201" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxSetCodeblock">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxSetCodeblock">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxSetCodeblock( <nWinNum>, <nCXId>, <bBlock> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox. <code>bBlock</code> Code block</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> if failed.</div>
<div class="d-d">Description</div>
<div class="d-it">Assign a new code block to checkbox on current window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_cxsetfocus" class="d-id" id="wvw_cxsetfocus" title="∞"><code>wvw_cxSetFocus()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/checkbox.c#L165" class="d-so" title="contrib/gtwvw/checkbox.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_cxSetFocus">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_cxSetFocus">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_cxSetFocus( <nWinNum>, <nCXId> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nCXId</code> ID of checkbox.</div>
<div class="d-d">Returns</div>
<div class="d-it"><code>.T.</code> if successful, <code>.F.</code> if failed.</div>
<div class="d-d">Description</div>
<div class="d-it">Set the focus to checkbox.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_centerwindow" class="d-id" id="wvw_centerwindow" title="∞"><code>wvw_CenterWindow()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1573" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CenterWindow">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CenterWindow">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_CenterWindow( <nWinNum>, <lCenter>, <lPaint> )
See function wvw_SetWindowCentre().
</code></pre>
</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on all platforms</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_choosecolor" class="d-id" id="wvw_choosecolor" title="∞"><code>wvw_ChooseColor()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwharb.prg#L475" class="d-so" title="contrib/gtwvw/wvwharb.prg">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_ChooseColor">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_ChooseColor">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_ChooseColor( <nRGBInit>, <aRGB16>, <nFlags> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nRGBInit</code> Initial color. <code>aRGB16</code> Array of 16 elements, with color index. Default is an array with color set of button. <code>nFlags</code> A set of bit flags that you can use to initialize the color common dialog box. When the dialog box returns, it sets these flags to indicate the user's input. Default is a combination of <code>CC_ANYCOLOR</code> | <code>CC_RGBINIT</code> | <code>CC_FULLOPEN</code>.</div>
<div class="d-d">Returns</div>
<div class="d-it">Contains the RGB color value of the color selected by the user, if the user clicks OK button of the dialog box.</div>
<div class="d-d">Description</div>
<div class="d-it">Open a color selection dialog.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_choosefont" class="d-id" id="wvw_choosefont" title="∞"><code>wvw_ChooseFont()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L912" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_ChooseFont">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_ChooseFont">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_ChooseFont( <cFontName>, <nHeight>, <nWidth>, <nWeight>, <nQuality>, <lItalic>, <lUnderline>, <lStrikeout> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>cFontName</code> Name of the font. <code>nHeight</code> Height of the font's character. <code>nWidth</code> Specifies average width of character in the font. <code>nWeight</code> Specifies the weight of the font in the range 0 through 1000 (see About Fonts section) <code>nQuality</code> Specifies the output quality. <code>lItalic</code> Specifies an italic font if set to TRUE. <code>lUnderline</code> Specifies an underlined font if set to TRUE. <code>lStrikeout</code> Specifies a strikeout font if set to TRUE.</div>
<div class="d-d">Returns</div>
<div class="d-it">None.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a common font dialog box that enables the user to choose attributes for a logical font.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_clienttoscreen" class="d-id" id="wvw_clienttoscreen" title="∞"><code>wvw_ClientToScreen()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwwin.c#L829" class="d-so" title="contrib/gtwvw/wvwwin.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_ClientToScreen">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_ClientToScreen">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_ClientToScreen( <nWinNum>, <nRow>, <nCol> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nRow</code>, <code>nCol</code> Row/Column in current windows to be converted.</div>
<div class="d-d">Returns</div>
<div class="d-it">Array with two positions with coordinates x,y.</div>
<div class="d-d">Description</div>
<div class="d-it">Converts row/column in current screen to coordinates x,y relative to screen.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_createdialogdynamic" class="d-id" id="wvw_createdialogdynamic" title="∞"><code>wvw_CreateDialogDynamic()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1153" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CreateDialogDynamic">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CreateDialogDynamic">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_CreateDialogDynamic( <cDlgTemplate>|<nResource>, <lHandle>,
<cDlgProc>|<bDlgProc>|<nDlgProc>, <nFlag> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>cDlgTemplate|nResource</code> <code>lHandle</code> <code>cDlgProc|<bDlgProc</code>|nDlgProc> <code>nFlag</code></div>
<div class="d-d">Returns</div>
<div class="d-it">Handle of dialog window or zero.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a dialog window dynamically.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_createdialogmodal" class="d-id" id="wvw_createdialogmodal" title="∞"><code>wvw_CreateDialogModal()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1259" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CreateDialogModal">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CreateDialogModal">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_CreateDialogModal( <cDialog>|<nResource>|<cDlgTemplate>, NIL,
<bDlgProc>|<cDlgProc>, <nFlag>, <nHandle> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>cDialog|<nResource</code>|cDlgTemplate> <code>bDlgProc|cDlgProc</code> <code>nFlag</code> <code>nHandle</code></div>
<div class="d-d">Returns</div>
<div class="d-it">Handle of dialog window or zero.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a modal dialog window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_createfont" class="d-id" id="wvw_createfont" title="∞"><code>wvw_CreateFont()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L486" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CreateFont">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CreateFont">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_CreateFont( <cFontFace>, <nHeight>, <nWidth>, <nWeight>, <lItalic>,
<lUnderline>, <lStrikeout>, <nCharset>, <nQuality>, <nEscapement> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>cFontFace</code> Name of the font. <code>nHeight</code> Height of the font's character. <code>nWidth</code> Specifies average width of character in the font. <code>nWeight</code> Specifies the weight of the font in the range 0 through 1000 (see About Fonts section) <code>lItalic</code> Specifies an italic font if set to TRUE. <code>lUnderline</code> Specifies an underlined font if set to TRUE. <code>lStrikeOut</code> Specifies a strikeout font if set to TRUE. <code>nCharSet</code> Identify the character set. <code>nQuality</code> Specifies the output quality <code>nEscapement</code> Specifies the angle, in tenths of degrees, between the escapement vector and the x-axis of the device.</div>
<div class="d-d">Returns</div>
<div class="d-it">If successful, the return value is a handle to a logical font. If failed, return zero.</div>
<div class="d-d">Description</div>
<div class="d-it">creates a logical font that has the characteristics specified in the parameters. The font can subsequently be selected as the current font for any device context.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_createmenu" class="d-id" id="wvw_createmenu" title="∞"><code>wvw_CreateMenu()</code></a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CreateMenu">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CreateMenu">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_CreateMenu()</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it">None.</div>
<div class="d-d">Returns</div>
<div class="d-it">Handle of new created menu. If failed, returns <code>NULL</code>.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a menu. Initially, the menu is empty, but can be filled with items through function <code><a href="#wvw_appendmenu">wvw_AppendMenu()</a></code>.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_createpopupmenu" class="d-id" id="wvw_createpopupmenu" title="∞"><code>wvw_CreatePopupMenu()</code></a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_CreatePopupMenu">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_CreatePopupMenu">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_CreatePopupMenu()</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it">None.</div>
<div class="d-d">Returns</div>
<div class="d-it">Handle of new popup menu. If failed, return <code>NULL</code>.</div>
<div class="d-d">Description</div>
<div class="d-it">Creates a drop-down menu, submenu or shortcut menu. The menu is initially empty, but you can insert or append menu items by using the <code><a href="#wvw_appendmenu">wvw_AppendMenu()</a></code> function.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_deletemenu" class="d-id" id="wvw_deletemenu" title="∞"><code>wvw_DeleteMenu()</code></a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DeleteMenu">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DeleteMenu">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DeleteMenu( <hMenu>, <nPosition>, <nFlag> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>hMenu</code> Identifies the menu to be changed. <code>nPosition</code> Specifies a menu item to be changed. <code>nFlag</code> Specifies how <code>nPosition</code> will be interpreted. This parameter can be one of two values: <code>MF_BYCOMMAND MF_BYPOSITION</code> Indicates that <code>nPosition</code> gives the identifier of the menu item. The <code>MF_BYCOMMAND</code> flag is the default flag if neither the <code>MF_BYCOMMAND</code> nor <code>MF_BYPOSITION</code> flag is specified. Indicates that <code>nPosition</code> gives the zero-based relative position of the menu item.</div>
<div class="d-d">Returns</div>
<div class="d-it">If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</div>
<div class="d-d">Description</div>
<div class="d-it">This function deletes an item from the specified menu. If the menu item opens a menu or submenu, this function destroys the handle to the menu or submenu and frees the memory used by the menu or submenu.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_destroymenu" class="d-id" id="wvw_destroymenu" title="∞"><code>wvw_DestroyMenu()</code></a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DestroyMenu">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DestroyMenu">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DestroyMenu( <hMenu> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>hMenu</code> Identifies the menu to be destroyed.</div>
<div class="d-d">Returns</div>
<div class="d-it">If the function succeeds, the return value is nonzero. If the function fails, the return value is zero.</div>
<div class="d-d">Description</div>
<div class="d-it">This function deletes an item from the specified menu. If the menu item opens a menu or submenu, this function destroys the handle to the menu or submenu and frees the memory used by the menu or submenu.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_dlgseticon" class="d-id" id="wvw_dlgseticon" title="∞"><code>wvw_DlgSetIcon()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwutils.c#L1124" class="d-so" title="contrib/gtwvw/wvwutils.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DlgSetIcon">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DlgSetIcon">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DlgSetIcon( <nHandleDialog>, ncIcon )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nHandleDialog</code> Handle of dialog window. <code>ncIcon</code> If numeric, identifies a <code>RESOURCE</code> in a RC file. If string, identifies an icon file name.</div>
<div class="d-d">Returns</div>
<div class="d-it">If successful, icon handle. Otherwise, <code>NIL</code>.</div>
<div class="d-d">Description</div>
<div class="d-it">Defines an icon on a dialog window.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawboxget" class="d-id" id="wvw_drawboxget" title="∞"><code>wvw_DrawBoxGet()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L706" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawBoxGet">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawBoxGet">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DrawBoxGet( <nWinNum>, <nRow>, <nCol>, <nWidth>, <aOffset> )</code></pre></div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Draws a box to an input get. Unlike <code>GTWVT</code>, <code>GTWVW</code> draw white lines on outer right and outer bottom. Besides, scope is the same as <code>DRAWBOXRECESSED</code>, i.e., two pixel out of char boundary.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawboxgroup" class="d-id" id="wvw_drawboxgroup" title="∞"><code>wvw_DrawBoxGroup()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L948" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawBoxGroup">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawBoxGroup">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DrawBoxGroup( <nWinNum>, <nTop>, <nLeft>, <nBottom>, <nRight>, <aOffset> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nTop, <nLeft</code>, <code>nBottom</code>, nRight> Coordinates to draw a box. <code>aOffset</code> Array of four elements with top/left and bottom/right corner coordinates to align the box with row/column.</div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Draws a box.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawboxraised" class="d-id" id="wvw_drawboxraised" title="∞"><code>wvw_DrawBoxRaised()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L838" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawBoxRaised">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawBoxRaised">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DrawBoxRaised( <nNumWin>, <nTop>, <nLeft>, <nBottom>, <nRight>, <lTight>/<aOffset> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nTop, <nLeft</code>, <code>nBottom</code>, nRight> Coordinates to draw a box. <code>lTight</code>/<code>aOffset</code> If <code>lTight</code>, box is draw inside the character region and top and left lines are lower two pixel down to make room for above/left object. If <code>aOffset</code>, an array of four elements is defined with coordinates top, left, bottom right to align box with row/column.</div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Draws a raised box.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawboxrecessed" class="d-id" id="wvw_drawboxrecessed" title="∞"><code>wvw_DrawBoxRecessed()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L897" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawBoxRecessed">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawBoxRecessed">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy"><pre><code>wvw_DrawBoxRecessed( <nWinNum>, <nTop>, <nLeft>, <nBottom>, <nRight>, <lTight>/<aOffset> )</code></pre></div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nTop, <nLeft</code>, <code>nBottom</code>, nRight> Coordinates to draw a box. <code>lTight</code>/<code>aOffset</code> If <code>lTight</code>, box is drawn inside the character region and top and left lines are lower two pixel down to make room for above/left object. If <code>aOffset</code>, an array of four elements is defined with coordinates top, left, bottom right to align box with row/column.</div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Draws a recessed box.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawbutton" class="d-id" id="wvw_drawbutton" title="∞"><code>wvw_DrawButton()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L2210" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawButton">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawButton">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_DrawButton( <nWinNum>, <nTop>, <nLEft>, <nBottom>, <nRight>, <cText>,
<cImage>/<nImage>, <nFormat>, <nTextColor>, <nBkClor>, <nImageAt> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it">
<div><code>nWinNum</code> Window number. Default is current window. <code>nTop, <nLeft</code>, <code>nButtom</code>, nRight> Coordinates to draws a button. <code>cText</code> Text of button. <code>cImage</code>/<code>nImage</code> If string, specifies a bitmap filename (full path is required). If numeric, specifies the position of image in application image cache. <code>nFormat</code> Specifies shape of button: 0 1 2 Raised (default) Recessed Outline</div>
<div><code>nTextColor</code> Index to button's color. <code>nBkColor</code> Index of button's background color. <code>nImageAt</code> Ignored.</div>
</div>
<div class="d-d">Returns</div>
<div class="d-it">Always <code>.T.</code></div>
<div class="d-d">Description</div>
<div class="d-it">Draws a button.</div>
<div class="d-d">Platforms</div>
<div class="d-it">Available on Windows</div>
<div class="d-d">Tags</div>
<div class="d-it">API, <code>GTWVW</code></div>
</section>
<section>
<h4><a href="#wvw_drawcolorrect" class="d-id" id="wvw_drawcolorrect" title="∞"><code>wvw_DrawColorRect()</code></a><a href="https://github.com/vszakats/hb/blob/096e855/contrib/gtwvw/wvwdraw.c#L2064" class="d-so" title="contrib/gtwvw/wvwdraw.c">Source code</a><span class="d-so"><nav class="dropdown d-ebi">🔎<nav class="dropdown-content d-dd"><a href="https://github.com/vszakats/hb/search?type=Code&q=wvw_DrawColorRect">in Repository</a><a href="https://google.com/search?q=site:groups.google.com/d/msg/harbour+wvw_DrawColorRect">in Discussions</a></nav></nav></span>
<span class="d-eb"><a href="#" title="Top" class="d-ebi">⌃</a> | <a href="index.html" title="Index" class="d-ebi">☰</a> | <a href="https://github.com/vszakats/hb/edit/main/contrib/gtwvw/doc/en/gtwvw.txt">Improve this doc</a></span></h4>
<div class="d-d">Syntax</div>
<div class="d-sy d-sym">
<pre><code>wvw_DrawColorRect( <nWinNum>, <nTop>, <nLeft>, <nBottom>, <nRight>, <aOffPixels>,
<nRGBColor> )
</code></pre>
</div>
<div class="d-d">Arguments</div>
<div class="d-it"><code>nWinNum</code> Window number. Default is current window. <code>nTop, <nLeft</code>, <code>nBottom</code>, nRight> Coordinates to draw a rectangle. <code>aOffPixels</code> Array of four elements with top/left and bottom/right coordinates to align the rectangle with row/column. <code>nRGBColor</code> Color to fill the rectangle.</div>
<div class="d-d">Returns</div>