topic
stringlengths
1
63
text
stringlengths
1
577k
Add some functions for Tensorflow
Hi Charles, Good job.
Add some functions for Tensorflow
Hello Richard, I already add a Tensorflow graph browser^^ [code=fw:1d84ra32]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">function</span> Main<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span><br />&nbsp; &nbsp;<span style="color: #00C8...
Add some functions for Tensorflow
Thank you. Can you please share graph.pb and tensorflow.dll?.
Add some functions for Tensorflow
Up
Add some functions for Tensorflow
Hello Charles, thank you so much for your work. I am very interested in this new techniques. Would you be so kind to advice a novice some basic literature where to start. Best regards Otto
Add tooltip to Tget
I think add tooltip to tget class is better than nower message to the user to have a input guide. Shuming Wang
Add tooltip to Tget
Shuming, You may do: <oAnyControl>:cTooltTip = <cText>
Add tooltip to Tget
Antonio, Thank you! Shuming Wang
AddHRuler()
is it possible ad a ruler also on richedit class ?
AddHRuler()
Silvio, It seems as Windows does not provide a ruler for the standard RichEdit control Here there is an example to implement one: [url:37chmjd2]http&#58;//www&#46;codeproject&#46;com/Articles/22783/Advanced-Text-Editor-with-Ruler[/url:37chmjd2]
AddHRuler()
Antonio, I saw your richedit box at fw for apple ... from source of codeproject you not Know how make it on richedit ? or perhaps modifing the tregla class
AddHRuler()
Silvio, You can place a bitmap over the richedit control with the ruler painted
AddHRuler()
I thinked we can use the slider control used to mage choosegradient function but only U can create it because I not see choosegradient source
AddMethod() y __clsAddMsg()
Hola a todos, Donde puedo encontrar información sobre este método y función, y cómo poder usarlos? Saludos y gracias. Carlos G.
Added support for colors in browse lines
Implemented colors support for browse lines, both background and text, example: [code=fw:1kakecax]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FiveLinux.ch"</span><br /><br />REQUEST DBFCDX<br /><br /><span style="color: #00C800;...
Added support for colors in browse lines
Intresting
Adding Context Specific Help to a Say
Is it possible to add context specific help to a 'Say'? This line compiles fine: ReDefine Say ioTELEPHONE Var cTELEPHONE ID 103 Of oDlg HelpID but if you add ANYTHING after the HelpID like: ReDefine Say ioTELEPHONE Var cTELEPHONE ID 103 Of oDlg HelpID 5000 you get an error. Now you may wonder why I would want a H...
Adding Context Specific Help to a Say
Actually - I even discovered another benefit of doing it this way: I can actually copy and paste from a 'Say' to somewhere else if needed!!! How about that! (Thanks Enrico)! Regards, Dale.
Adding Events to the EventLog in Windows
Is it possible to log events in the EventLog of Windows using FiveWin? Thanks, Byron ...
Adding Events to the EventLog in Windows
hi, there is a Sample under \HARBOUR\contrib\hbwin\tests\eventlog.prg in HMG using win_ReportEvent() from HbWin [code=fw:2xhuodo8]<div class="fw" id="{CB}" style="font-family: monospace;">#require <span style="color: #ff0000;">"hbwin"</span><br />PROCEDURE Main<span style="color: #000000;">&#40;</span><span style="co...
Adding External DLL Calls
Hi Everybody, I have looked at many posts and am trying to add external DLL calls to my app. Can someone please tell me where I am going wrong. Syntax : Function Connect() as String Return values: Success - Port number Error - Empty String DLL32 FUNCTION Connect() AS LPSTR PASCAL LIB "\Ez\dll\POx.DLL" Syntax : ...
Adding External DLL Calls
Jeff, Try it this way: [code:2ncxpy3h]local hPOX &#58;= LoadLibrary&#40; "\ez\dll\POX&#46;DLL" &#41; DLL32 FUNCTION &#46;&#46;&#46; LIB hPOX &#46;&#46;&#46; FreeLibrary&#40; hPOX &#41;[/code:2ncxpy3h] James
Adding External DLL Calls
Hi James, When I try it that way and issue the Connect() command I get the following error: Unrecoverable error 9003: Too many recursive error handler calls
Adding External DLL Calls
Jeff, I'm not experienced with DLL32 calls, but I notice other working calls (in my notes) use the FROM clause and the same name as the function with a trailing "A" so you might try: DLL32 FUNCTION Connect ... FROM "ConnectA" LIB hPOX If that doesn't work, hopefully someone else with DLL experience will help. James
Adding External DLL Calls
Thanks for trying James ... Still no luck.
Adding External DLL Calls
[quote="Jeff Barnes":29qkd50d]Syntax : Function Connect() as String Return values: Success - Port number Error - Empty String DLL32 FUNCTION Connect() AS LPSTR PASCAL LIB "\Ez\dll\POx.DLL"[/quote:29qkd50d] As far as I know, you can't return a string from a DLL function. Do you have any VB samples? [quote="Jeff Barne...
Adding External DLL Calls
Hi Enrico, Please check your email. Thanks, Jeff
Adding Metrobutton-frames on button-focus / action
I tested a solution adding buttonframes on METRO - buttons on action / click because there is a missing visible effect. ( showing white button-frames like in Windows10 ) I would like to do this on mousecaption as well, but bGotfocus and bLostfocus doesn't work ! The solution takes care of using normal or large buttons...
Adding Metrobutton-frames on button-focus / action
Uwe, Your solution is a good one anyhow How did you try it using bGotfocus and bLostfocus ?
Adding Metrobutton-frames on button-focus / action
Antonio, I only changed / tested : DEFINE METROBUTTON oMBtn[1] OF oMetro ; PROMPT "Files" COLOR CLR_WHITE, RGB( 2, 174, 224 ) ; GROUP 1 ; IMAGE c_Path1 + "files.bmp" ; ACTION MsgInfo( oMBtn[1]:Cargo , ValType( oMBtn[1]:Cargo) ) // Files(c_Path1) // [color=#0040FF:9ob804ag]oMBtn[1]:bLClicked := {|| SHOW_FRAME(oMBtn...
Adding Metrobutton-frames on button-focus / action
Uwe Are you using? [code=fw:22xnwf74]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><br />IsOverWnd<span style="color: #000000;">&#40;</span> hWnd, nRow, nCol <span style="color: #000000;">&#41;</span> --> lOver<br /><br />&nbsp;</div>[/code:22xnwf74]
Adding Metrobutton-frames on button-focus / action
Uwe, Please try this to check if the codeblock is evaluated: oMBtn[1]:bGotFocus := {|| MsgInfo( "yes" ), SHOW_FRAME(oMBtn, 1, nOld), nOld := 1 }
Adding Metrobutton-frames on button-focus / action
Antonio, tested, but there is NO response at all. best regards Uwe <!-- s:roll: --><img src="{SMILIES_PATH}/icon_rolleyes.gif" alt=":roll:" title="Rolling Eyes" /><!-- s:roll: -->
Adding Metrobutton-frames on button-focus / action
Antonio, [b:3ekgvwu2]I got it working[/b:3ekgvwu2] Now it looks like shown in Windows10. The solution I have been looking for : painting a frame on button-focus. Maybe possible to include the logic in class < [b:3ekgvwu2]Metropnl[/b:3ekgvwu2] > like : <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?...
Adding a C function
I have to admit I don't really understand how the whole PRG to C to EXE system works. And I am not a C programmer. I have a C program with a function, lets call it "Myfunction" in it, defined like this: CLIPPER MYFUNCTION( PARAMS ) ... This is compiled using BCC then linked with the PRGs. But the linker er...
Adding a C function
You have to use [code=fw:2sbylhic]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">&#40;</span> MYFUNCTION <span style="color: #000000;">&#41;</span></div>[/code:2sbylhic] in [x]Harbour. EMG
Adding a C function
Enrico, I'm sorry I still don't understand. Do you mean in the C program? Change this: CLIPPER MYFUNCTION( PARAMS ) To this? HB_FUNC( MYFUNCTION ) Or, ? I am using xHarbour. James
Adding a C function
OK, I changed it to: HB_FUNC( MYFUNCTION ( PARAMS ) ) Then I get these compiler errors: Error E2147 source\inifunc.c 24: 'MYFUNCTION' cannot start a parameter declaration Error E2293 source\inifunc.c 24: ) expected This is the way the FWH\tools\clp2harb.exe program seems to be doing it. I still must be doing some...
Adding a C function
I now see that clp2harb.exe is changing it like this: HB_FUNC( MYFUNCTION ) So I tried that and I get these errors: Warning W8070 source\inifunc.c 18: Function should return a value in function HB_FUNC Warning W8057 source\inifunc.c 18: Parameter 'MYFUNCTION' is never used in function HB_FUNC Error E2293 source\inif...
Adding a C function
James, Please change it this way: [code=fw:liy06v50]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00C800;">HB_FUNC</span><span style="color: #000000;">&#40;</span> MYFUNCTION <span style="color: #000000;">&#41;</span><br /><span style="color: #000000;">&#123;</span><br />   hb_re...
Adding a C function
Antonio, I tried that already and I get this error: Warning W8065 source\inifunc.c 20: Call to function 'GetProfileInt' with no prototype in function HB_FUN_MYFUNCTION James [code=fw:1h9s1jm6]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color:...
Adding a C function
James, You have to add: #include <windows.h> so Windows API functions are properly identified.
Adding a C function
Antonio, Yea! That did it. Thanks! I guess I shot myself in the foot. I thought I would start with a known good C program so I selected one from the FWH\source directory. Now it seems that these are not compiled as-is but they have to go through some preprocessing before they can be compiled. Is that true? James
Adding a C function
James, In FWH 9.08 we have removed CLIPPER ... and PARAMS from all C modules, as we only focus on Harbour and xHarbour now. If you use FWH 9.08 then there is no need to use clp2harb.exe never more to compile FWH C modules <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) -->
Adding a C function
I have another question. Is this a complete function definition? void pascal DelResource( HANDLE hRes ); The compiler doesn't error, but the linker gives an "unresolved external DelResource" error. James
Adding a C function
James, [quote:1h2ra8wv]void pascal DelResource( HANDLE hRes );[/quote:1h2ra8wv] Thats what is called a function "prototype": It instructs the C compiler how to manage that function, but it does not implement its code. [quote:1h2ra8wv]The compiler doesn't error, but the linker gives an "unresolved external DelResourc...
Adding a C function
Wiki documentation for it: [url:3vfzk29i]http&#58;//wiki&#46;fivetechsoft&#46;com/doku&#46;php?id=fivewin_function_delresource[/url:3vfzk29i]
Adding a Multilanguage-solution to Your App.
Hello, I started the first time, adding a Multilanguage-option to a App. First I wanted to use a DBF, but now I found a better Solution. How it works ( Sample ) : [color=#FF0000:1ib7ffsf]1. [/color:1ib7ffsf] Define a Static Var cLang[40] // contains the needed Keywords [color=#FF0000:1ib7ffsf]2.[/color:1ib7ffsf] Ar...
Adding a Multilanguage-solution to Your App.
Sorry BUT xharbour can have the multilanguage system it create on comilation file hil ot hit and you can call the language on your application using i18n() function you must first insert on your application the text with i18n() function : sample : DEFINE MSGITEM ::oMsgItem2; OF ::oWndMain:oMsgBar ; ...
Adding a Multilanguage-solution to Your App.
for the sources i sad on prev topic i sent all to Antonio Linares Last year, it has never been taken as important and is not uncork never published in packages of fw. But i use current this for create Multilanguage application easy!!!!
Adding a Multilanguage-solution to Your App.
Silvio, Thank You for the Response. It sounds good. In my special Situation, I want to make it possible, ( not only a Translation ) also that the User can change the complete Text byhimself. Buttons,Resources... I finished with Testing and it works fine. Using just only 38 Words, it is OK. Best Regards Uwe <!-- s:lol...
Adding a Multilanguage-solution to Your App.
the problem is when you must translate many and many words I''m afraid a file ini with many and many words then it can result eating of resources my solution is easy and the final user can modify the language file creating himself
Adding a Multilanguage-solution to Your App.
Hello, I use a solution like i18n() function, but with ini files, it work perfect for SAY, Buttons, Title, menu, anywhere. Exemple ini file: [ESP] DESCRIP=Español ||~AMPA32, G~|estió de |~F~|acturacions de l'|~AMPA (~|domiciliacions, famílies, pares, alumnes, rebuts)|=|AMPA32, Gestión de Facturaciones de la AMPA (do...
Adding a pullldown menu at runtime.
Hi all, I was able to add a menu item in the system menu that was created in the resource file at runtime. My next task requires to add a pulldown menu at runtime. Is it posible? How? Many thanks!
Adding a pullldown menu at runtime.
Have a look at TMenu:Add() or TMenu:Insert() methods. EMG
Adding a pullldown menu at runtime.
Got it. Regards!
Adding a real time character count to a memo field dialog bx
To All I would like to be able to show a "real time" character count when you start typing a memo field .. I have some long string text fields that I have to make sure the character count does not exceed the maximum table field length .. The reason I want to enforce a strict field limit is the text will eventually fit...
Adding a real time character count to a memo field dialog bx
This is a sample with counter and limited text to 100 chars: [code=fw:2q8vhvz8]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</span><br /><br /><br /><span style="color: #00D7D7;">#define</span> EM_LIMITTEXT <span style...
Adding a real time character count to a memo field dialog bx
Maybe like this. [code=fw:11plfhdq]<div class="fw" id="{CB}" style="font-family: monospace;">    @ <span style="color: #000000;">50</span>,<span style="color: #000000;">10</span> <span style="color: #0000ff;">SAY</span> oSay <span style="color: #0000ff;">PROMPT</span> <span style="color: #ff0000;">"Mesaj"</span> <span...
Adding a real time character count to a memo field dialog bx
Enrico Thank you for your responce .. been a while since we had a chance to chat ... I am having difficulty translating your code into using resources .. this is my current code .. I can get it to initially come up but when I click on the get field .. the code blows up .. [code=fw:1pswagif]<div class="fw" id="{C...
Adding a real time character count to a memo field dialog bx
Sorry, I can't help you without a sample that I can compile and run here. EMG
Adding a real time character count to a memo field dialog bx
Enrico Try this code ... I get an initial value .. of 179 .. but the len of cMemo is not updated as you type in more charactors .. Thanks Rick [code=fw:3kjp4f4z]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fivewin.ch"</s...
Adding a real time character count to a memo field dialog bx
Rick, Change this. [code=fw:1806ybko]<div class="fw" id="{CB}" style="font-family: monospace;">       <span style="color: #0000ff;">REDEFINE</span> <span style="color: #0000ff;">GET</span> oMemo <span style="color: #0000ff;">VAR</span> cMEMO MEMO <span style="color: #0000ff;">ID</span> <span style="color: #000000;">13...
Adding a real time character count to a memo field dialog bx
Hakan Thank you VERY much for your input and nicely done.. works perfectly .. Enrico .. again that you very much for your help!! Rick Lipkin
Adding a register key to the Windows register - SOLVED
Hello, I need this register key : [HKEY_CURRENT_USER\Software\Microsoft\Office\16.0\Word\Security] "DisableWarningOnIncludeFieldsUpdate"=dword:00000001 How can I check in my application if this key already exists? And in case it doesn't exist, how can I add it in my application? Thank you very much in advance for a...
Adding a register key to the Windows register - SOLVED
Dear Michel, Please try this and let me know what you get: [code=fw:20ggt634]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#define</span> &nbsp;HKEY_CURRENT_USER &nbsp; &nbsp; &nbsp; <span style="color: #000000;">2147483649</span>   <br /><br />&nbsp; &nbsp;<span style="color...
Adding a register key to the Windows register - SOLVED
Antonio, Thank you for your message. Unfortunately, the register key is not added.
Adding a register key to the Windows register - SOLVED
Dear Michel, what is shown from the MsgInfo() ?
Adding a register key to the Windows register - SOLVED
Only a backslash
Adding a register key to the Windows register - SOLVED
Dear Michel, Please use Microsoft regedit.exe and try to locate it manually
Adding a register key to the Windows register - SOLVED
hi, [quote="driessen":2f4ugwml]Unfortunately, the register key is not added.[/quote:2f4ugwml] have you start it "as Admin" <!-- s:?: --><img src="{SMILIES_PATH}/icon_question.gif" alt=":?:" title="Question" /><!-- s:?: -->
Adding a register key to the Windows register - SOLVED
look, [url:2agn1eb5]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=42673&p=256920&hilit=TReg32&sid=f15a2b41e9a2f5c0991f021a042fe9ab&sid=f2ce5d0132445ffed2f9e303a9e535a2#p256920[/url:2agn1eb5] Regards, saludos.
Adding a register key to the Windows register - SOLVED
[code=fw:fyj2qwgz]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #B900B9;">// Managing Register services from FiveWin</span><br /><br /><span style="color: #00D7D7;">#define</span>  HKEY_CLASSES_ROOT       <span style="color: #000000;">2147483648</span><br /><span style="color: #00D7D7;">...
Adding a register key to the Windows register - SOLVED
Alerchster, Thank you so much for your help. It works fantastic now. One more little question. Can you tell me how to delete a registry key? Thank you very much.
Adding a register key to the Windows register - SOLVED
Antonio, To find the registry key manually is no problem. Jimmy, I am administrator.
Adding a register key to the Windows register - SOLVED
Dear Michel, Do you have the entry "DisableWarningOnIncludeFieldsUpdate" already created ?
Adding a register key to the Windows register - SOLVED
Antonio, I have created the key manually. That is no problem. But I want my application to add the key automatically so that it is installed on all PC’s on which my applications are used. This key is necessary to prevent a mastbos is shown in Word everytime a document is used that has been mailed to my customer. My ...
Adding a register key to the Windows register - SOLVED
Hello Michel, Maybe you have to grant the user admin rights when setting this key. I want to remind you that you need to set this key for every user. Best regards, Otto
Adding a register key to the Windows register - SOLVED
Not my cup of thee, but in this code there is also a register search and add. Maybe it is helpfull From Karinha [url:z0h29bxc]https&#58;//forums&#46;fivetechsupport&#46;com/viewtopic&#46;php?f=3&t=41666#p249622[/url:z0h29bxc] [code=fw:z0h29bxc]<div class="fw" id="{CB}" style="font-family: monospace;"><br />   <span...
Adding a register key to the Windows register - SOLVED
[code=fw:2rkbu6c9]<div class="fw" id="{CB}" style="font-family: monospace;">win_regdelete<span style="color: #000000;">&#40;</span><span style="color: #ff0000;">"HKEY_CURRENT_USER<span style="color: #000000;">\S</span>OFTWARE<span style="color: #000000;">\M</span>icrosoft<span style="color: #000000;">\O</span>ffice<spa...
Adding a register key to the Windows register - SOLVED
Dear Michel, from Harbour Changelog file: [code=fw:1ulpzy2b]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #000000;">2012</span><span style="color: #000000;">-05</span><span style="color: #000000;">-18</span> <span style="color: #000000;">18</span>:<span style="color: #000000;">15</span...
Adding a register key to the Windows register - SOLVED
Hi Guys, Thank you all so much for your help. All my questions have been answered. Everything is running just fine now.
Adding an Element to a Combobox array
To All I have an array that is created from a table and I use that array as the pick list from a combobox [code=fw:is7zcqtb]<div class="fw" id="{CB}" style="font-family: monospace;"><br />aBin := <span style="color: #000000;">&#123;</span><span style="color: #000000;">&#125;</span><br /><br />oRsBin:<span style="colo...
Adding an Element to a Combobox array
Rick, try using oCbx:SetItems( aBin ) method. EMG
Adding an Element to a Combobox array
Enrico Thank you! Worked great Rick Lipkin
Adding an option to right click menu on TGet.
Hi, I want to add an option to right click menu in TGet. I have done in system menu using SYSMENU. Is there any clause for this? Thanks
Adding and Deleting tabs on Dlg at runtime
Hi everyone; I wish to add tabs to a FW folder control at runtime. Likewise, I'd like to add an x btnbmp at the right of the tab to allow closing the tab page. The tab control is on a dialog control. In short, it would look like browser tabs that you can keep creating or deleting at any time. Is this possible? An...
Adding and Deleting tabs on Dlg at runtime
Hello yes, review sample testfldd.prg it's a mod form testfldd.prg [code=fw:70ppj78h]<div class="fw" id="{CB}" style="font-family: monospace;"><br /><span style="color: #B900B9;">// Dinamically adding pages and controls</span><br /><br /><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"Fi...
Adding bitmaps to themed rPreview toolbar
Hi Antonio I am trying to add different bitmaps to the themed rPreview toolbar These bitmaps are contained in my normal RES file (not in Prev32.dll) I cant get this to work eg below even thing Bmp_Pdf exists in my resources, it wont display * Code snippet* ::oImageList:AddMasked( TBitmap():Define( ""BMP_Pdf"",, ::oWn...
Adding bitmaps to themed rPreview toolbar
Hi Antonio I am trying to add different bitmaps to the themed rPreview toolbar These bitmaps are contained in my normal RES file (not in Prev32.dll) I cant get this to work eg below even though Bmp_Pdf exists in my resources, it wont display * Code snippet* ::oImageList:AddMasked( TBitmap():Define( ""BMP_Pdf"",, ::oW...
Adding bitmaps to themed rPreview toolbar
How can you converte the preview in pdf file ?
Adding bitmaps to themed rPreview toolbar
Peter, Where are you adding that code? If it is inside the rpreview function then you have to switch to your resources to load your bitmap, then switch back (see getResources() and setResources() near the top of the rpreview function in rpreview.prg). I also note that oImageList and oWnd are locals in this routine but...
Adding bitmaps to themed rPreview toolbar
Silvio; Read here: [/url] <!-- m --><a class="postlink" href="http://fivetechsoft.com/forums/viewtopic.php?t=4757">http://fivetechsoft.com/forums/viewtopic.php?t=4757</a><!-- m --> [url] It absolutely works great! Reinaldo.
Adding bitmaps to themed rPreview toolbar
1) :: is there because we have converted rPreview to a class 2) The pdf utility we are using is <!-- w --><a class="postlink" href="http://www.utilitywarrior.com">www.utilitywarrior.com</a><!-- w --> product 3) I did try "SET RESOURCES TO" before the "::oImageList:AddMasked( TBitmap():Define( "BMP_Pdf", , ::oWnd ),...
Adding bitmaps to themed rPreview toolbar
Peter, Has the bitmap the same dimensions of the other bitmaps ?
Adding bitmaps to themed rPreview toolbar
Peter, >1) :: is there because we have converted rPreview to a class Then, are you sure this code is getting linked in and used? One way to find out is to put a msgInfo() in it. >I am thinking that maybe theming requires a special type of bitmap? Not so, all my apps are themed and all my bitmaps work fine. James
Adding bitmaps to themed rPreview toolbar
to converte rpreview to a class is easy... and then ?
Adding bitmaps to themed rPreview toolbar
Hi All I have resolved this. The problem was caused because the no of bitmaps in the imagelist is > than the no of btns, and I was assuming the my new pdf btn corresponded to the correct bmp in the imagelist. I had to add a call to ::oBar:ChangeBitmap() to set my Pdf btn to the correct bmp. All ok now. Thanks for t...
Adding button in excel with FW
Hi, Does anyone have an example how to add a button on an excel-sheet? Thank you,
Adding button in excel with FW
Hi Marc. Sorry, I don't know how to do this with FWH and ole commands. But here an example for adding a button tonabworksheet of excel. [code=fw:2hadb4ui]<div class="fw" id="{CB}" style="font-family: monospace;"> Sub AddButtonAndCode<span style="color: #000000;">&#40;</span><span style="color: #000000;">&#41;</span> <b...