topic stringlengths 1 63 | text stringlengths 1 577k ⌀ |
|---|---|
Add Color to a Group Frame | Antonio
I agree .. you should be able to change the color .. Try my sample code and see if you get the same result .. with and without the XpManifest.
Thanks
Rick Lipkin |
Add Color to a Group Frame | Rick,
You may try to use a bitmap instead of a group
We can't change the painting on some standard controls when used with themes |
Add Color to a Group Frame | Antonio
[quote:3w49zw3k]
You may try to use a bitmap instead of a group
[/quote:3w49zw3k]
Interesting Thought .. could I use a Pen (perhaps ) to outline a Box ? ( a bit awkward )
Rick Lipkin |
Add Color to a Group Frame | Rick,
Yes, the control TBitmap is a FWH own class so we have full control on it <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gif" alt=":-)" title="Smile" /><!-- s:-) --> |
Add Color to a Group Frame | Or TPanel too... |
Add Color to a Group Frame | Hi Antonio,
I need help with sth i don't know what to do. I've been trying to do the group coloring using TPanel, and i thought i got it, but there is a big problem <!-- s:( --><img src="{SMILIES_PATH}/icon_sad.gif" alt=":(" title="Sad" /><!-- s:( --> : cannot use the mouse over the area covered by the TPanel
Here is ... |
Add Color to a Group Frame | Carlos has intentado poner en los controles
[code=fw:1fzx7wnp]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> ... <span style="color: #0000ff;">OF</span> oPanel<br /> </div>[/code:1fzx7wnp]
No se si es lo que necesitas
------------------------------------------- EDITADO -------------... |
Add Color to a Group Frame | Hi Cristobal,
was one of my first attempts, but things like refresh() aren't resent to panel's children. Had to do it manually, it's not the idea. And won't work with resources also.
Thanks anyway, let me know if you have another idea, they are always welcome.
[OT] Moved to Loeches now, but still working at Atisa, i... |
Add Color to a Group Frame | [quote="Carlos Mora":6zb6ingr]Hi Cristobal,
was one of my first attempts, but things like refresh() aren't resent to panel's children. Had to do it manually, it's not the idea. And won't work with resources also.
Thanks anyway, let me know if you have another idea, they are always welcome.
[OT] Moved to Loeches now,... |
Add Color to a Group Frame | [code=fw:o1t1x7vy]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> Main<span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /><br /> <span style="color: #00C800;">local</span> oDlg, oFont, oBold, aVar<span style="color... |
Add Color to a Group Frame | Thanks Nages! |
Add Programs to Startup in Windows 8 | [url:3oxyqh0h]http://www.tomshardware.co.uk/faq/id-2080296/add-programs-startup-windows.html[/url:3oxyqh0h]
[quote:3oxyqh0h]press Windows + R keys simultaneously to initialize the Run command box.
Once the Run command box is opened, type %AppData% in the available field and hit Enter.
On the open... |
Add Xbrowse Column at runtime | Can I insert a column on a X pos at runtime and make calc math for it ?
sample I wish insert a checkbox column after X columns and if the user click on if must calc an math operation refresh another column
for a sample look this picture
[img:f70k1ltk]http://www.eoeo.it/wp-content/uploads/2014/11/order&... |
Add Xbrowse Column at runtime | Maybe you could just create the column at the start but specify a width of zero, then change the width at runtime. |
Add Xbrowse Column at runtime | No,
I think ( and I found it on this forum) I can make a function type
Function Addcolumn()
ADD TO oBrw AT 8 DATA oBrw:Rit HEADER "SlNo"
oBrw:Rit:setcheck()
return nil
where Rit ia a field .... but it not run here!!! |
Add Xbrowse Column at runtime | ADD TO oBrw AT 8 DATA oBrw:Rit HEADER "SlNo"
oBrw:Rit:setcheck()
There are two problems. Rit is not data of oBrw, and fields don't have methods, so you can't do oBrw:Rit:setcheck().
There is a setCheck() method of oBrw but it has to do with bitmaps.
METHOD SetCheck( aBmps, uEdit, aPrompts ) CLASS TXBrowse
Maybe... |
Add Xbrowse Column at runtime | James the setcheck is not important !! I Know there are two bmps. If you see testxbrowse sample there is a field maried
oCol := oBrw:oCol( "Married" )
oCol:SetCheck( { "GREEN", "RED" }, {|o, v| (DBRLOCK(), _FIELD->Married := v, DBUNLOCK() ) } )
oCol:bStrData := { || If( _FIELD->Married, "Yes", "... |
Add Xbrowse Column at runtime | ADD TO oBrw AT 8 ............
is the right way.
But I am not sure what you want to display in the inserted column and what other column you want to change and refresh.
If you just want to display 20% of the value in Importo column, you can do this
ADD TO oBrw AT 8 DATA (oBrw:Importo:Value * 0.20) TITLE "New" PICTURE... |
Add Xbrowse Column at runtime | Mr Nages,
I try to explain you
I wish only insert a column with checkbox.... from user
the user can insert this column check but at init when I create the xbrowse it must no showed
then..
on my Function of Totals I musst be able to Know if that record at that column is check .
If it check I must calc the new ... |
Add Xbrowse Column at runtime | ok now i resolved it now run ok
First....
[img:2ddyb92f]http://www.eoeo.it/wp-content/uploads/2014/11/rit1.jpg[/img:2ddyb92f]
[b:2ddyb92f]then press the button[/b:2ddyb92f]
[img:2ddyb92f]http://www.eoeo.it/wp-content/uploads/2014/11/rit2.jpg[/img:2ddyb92f]
@ x,y Xbrowse....
... |
Add a Checkbox() column | Hi,
There is xBrowse(). At some point I need to add a Checkbox() column to it.
However, it does not work. Tell me what I'm wrong about ?
[code=fw:120z92x0]<div class="fw" id="{CB}" style="font-family: monospace;">oDlg:<span style="color: #000000;">oClient</span>:<span style="color: #000000;">aCols</span><span style="... |
Add a Checkbox() column | <!-- l --><a class="postlink-local" href="https://forums.fivetechsupport.com/viewtopic.php?f=3&t=36197">viewtopic.php?f=3&t=36197</a><!-- l -->
<!-- l --><a class="postlink-local" href="https://forums.fivetechsupport.com/viewtopic.php?f=3&t=36959">viewtopic.php?f=3&t=36959</a><!-- l --> |
Add a Checkbox() column | I was asking about adding a checkbox column to a working browser, not about creating a browser with such a column |
Add a Checkbox() column | First you need to add a column with all logical values.
Then Set oCol:SetCheck(,.T. ) |
Add a Checkbox() column | Instead of setcheck(, .T.), I used the icons and everything worked fine
[code=fw:31g6rvp3]<div class="fw" id="{CB}" style="font-family: monospace;"> oDlg:<span style="color: #000000;">oClient</span>:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;"... |
Add a Checkbox() column | 5 lines of the code above can be reduced to a single line
[code=fw:a84twrk7]<div class="fw" id="{CB}" style="font-family: monospace;">oBrw:<span style="color: #000000;">aCols</span><span style="color: #000000;">[</span><span style="color: #000000;">2</span><span style="color: #000000;">]</span>:<span style="col... |
Add a Checkbox() column | Thank you, Rao! Very elegant. |
Add a Checkbox() column | I have a xbrowse of a dbf table, this is a table created specifically to make selections.
In the last column I want to show a logical field that permit to select some of the record that I see in ths xbrowse
for instance this is the penultimane columnt is define in this way
oCol = oBrw:AddCol()
oCol:bStrData = ... |
Add a Checkbox() column | [code=fw:in3oly6b]<div class="fw" id="{CB}" style="font-family: monospace;">WITH OBJECT oBrw:<span style="color: #000000;">AddCol</span><span style="color: #000000;">(</span><span style="color: #000000;">)</span><br /> :<span style="color: #000000;">bEditValue</span> := <span style="color: #000000;"... |
Add a Method on specific class | IT is possible to Add a Method on specific class from a prg ?
With OVERRIDE COMMAND I can change a method |
Add a Method on specific class | Silvio,
This is also possible in Harbour:
#include "hbclass.ch"
#include "c:\harbour\contrib\xhb\xhbcls.ch"
EXTEND CLASS ClassName WITH DATA DataName
and
EXTEND CLASS ClassName WITH MESSAGE MessageName( param, ... )
It does not follow OOP rules but it works also <!-- s:-) --><img src="{SMILIES_PATH}/icon_smile.gi... |
Add a Method on specific class | Create a new class, inherit from the one you wish to add to, and add your methods.
Example: tData inherits from tDatabase and both adds, and overrides, some methods from the primary class.
I have created classes that inherit from tData but add specific methods. For example, I can create an Inventory class that inhe... |
Add a button search in Xbrowse cell in edit mode | Hi to all.
Is there the possibility to add a button or a bitmap to Xbrowse cell when I'm in edit mode ?
I want to add this button for some cells, for looking into a table and returning
back a value inside the get.
Thanks a lot. |
Add a button search in Xbrowse cell in edit mode | oCol:nEditType := EDIT_BUTTON
oCol:bEditBlock := { || <button action> } |
Add a button search in Xbrowse cell in edit mode | Works perfectly.
Is it possible to add a bitmap to that little button ?
Thanks a lot. |
Add a button search in Xbrowse cell in edit mode | Here's what I did,
[code=fw:25e8chyv]<div class="fw" id="{CB}" style="font-family: monospace;"><br />oCol:<span style="color: #000000;">addResource</span><span style="color: #000000;">(</span> <span style="color: #ff0000;">"BitmapInResourceName"</span> <span style="color: #000000;">)</span><br />oCol:<span styl... |
Add a extra option to the method ToCSV | METHOD ToCSV( cFile, aCols, lHeaders, cTrue, cFalse ) CLASS TXBrowse
I looked into the code of Xbrowse to find out how ToCsv is working. I see that the delimeter is hard code as a comma ( , )
I need i to be ( ; )
Is it a idea to add this option into Xbrowse source ? (extra : cDelimiter)
Or is there a other way ?... |
Add a extra option to the method ToCSV | We will provide a new parameter for the delimiter in our next versions.
We will also publish a patch for you here.
You can use derived classes of xbrowse very easily.
You can use the derived class for the entire application or different derived classes for different browses.
Please see samples xbrchild.prg, xbrcalen.p... |
Add a extra option to the method ToCSV | Implemented in FWH2009
[code=fw:3bfuy4qn]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">METHOD</span> ToCSV<span style="color: #000000;">(</span> cFile, aCols, lHeaders, cTrue, cFalse, cDelim <span style="color: #000000;">)</span> <span style="color: #00C800;">CLASS</sp... |
Add a extra option to the method ToCSV | Thank you !!
I wait till the release |
Add a extra option to the method ToCSV | Till then, you can confidently modify your xbrowse.prg like this and keep using it. |
Add a extra option to the method ToCSV | [quote="nageswaragunupudi":9l50o3oe]Till then, you can confidently modify your xbrowse.prg like this and keep using it.[/quote:9l50o3oe]
I've never done that
I have to link en recompile source I believe ? |
Add a extra option to the method ToCSV | Marc, You are never too old to learn something new. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
You can link in a copy of xbrowse to your program and make the changes as Mr. Rao said.
The generosity of our masters to share the knowledge and the source code is the... |
Add a extra option to the method ToCSV | [quote="Otto":3n50bhfl]Marc, You are never too old to learn something new. <!-- s:D --><img src="{SMILIES_PATH}/icon_biggrin.gif" alt=":D" title="Very Happy" /><!-- s:D -->
You can link in a copy of xbrowse to your program and make the changes as Mr. Rao said.
[/quote:3n50bhfl]
Out of curiosity :
My files :
Build.... |
Add a extra option to the method ToCSV | Marc, yes. That is what I do.
I am sure Mr. Rao will explain it here for us.
Best regards,
Otto |
Add a extra option to the method ToCSV | [quote="Marc Venken":2umtxiw8]Thank you !!
I wait till the release[/quote:2umtxiw8]
Revised version of FWH2008 is released.
You will find this change also in this version.
Please download. |
Add a extra option to the method ToCSV | Great !!! Thanks |
Add a function afther the errors has occured (SOLVED) | Can I executed a function ather the program has created the error.log with the standard errsysw.prg ?
I would like to keep always the standard programs from FWH in every new build, but like now, it would become handy if I have the
possibility to save the error in a online oRs: database. (before or afther the log is cr... |
Add a function afther the errors has occured (SOLVED) | FWH provides the following functions for user customization.
1. SetErrorPath( cErrorLogPath ) --> cOldPath
2. SetErrorFileName( cErrorLogFileName ) --> cOldName
3. SetPostErrorAction( bAction ) --> bOldAction
bAction is evaluated with cErrFileName (with path) and oError as parameters
This codeblock is executed... |
Add a function afther the errors has occured (SOLVED) | Afther some search...
I put this in the MAIN program
SetPostErrorAction( { |cErrorLogFileName, oError| MyErrorAction( cErrorLogFileName, oError ) } )
and the function :
[code=fw:184qj8f5]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00C800;">function</span> MyErrorAction<span style=... |
Add a function afther the errors has occured (SOLVED) | From FWH17.08, it is possible to replace default error dialog with your own dialog without modifying errsysw.prg
[code=fw:3qa5dquy]<div class="fw" id="{CB}" style="font-family: monospace;"><br />SetErrorDialog<span style="color: #000000;">(</span> bOwnDialg <span style="color: #000000;">)</span> --> bPrevious<... |
Add a line on report from xbrowse (NO HTML) | in a Report type printout created with the Treport class and printed from an Xbrowse table I have this problem:
[img:232oit4o]https://i.postimg.cc/mkzH5Xk4/hh.jpg[/img:232oit4o]
After the text [b:232oit4o]"Provincia:AG" [/b:232oit4o]there is a list of cities
I would like to add a white line after the... |
Add a line on report from xbrowse (NO HTML) | Using the default behavior of :Report( nil, .t., .t., nil, { 1 } )
The group headers are in bold and adequate to distinguish from the body.
[url=https://imageshack.com/i/pnlmSCwVp:ggg5sbsq][img:ggg5sbsq]https://imagizer.imageshack.com/v2/xq70/923/lmSCwV.png[/img:ggg5sbsq][/url:ggg5sbsq]
[code=f... |
Add a line on report from xbrowse (NO HTML) | Nages,
I need to have a function for setup to insert many vars
on your image
I need to insert a line whereis the red arrow
[img:2jq31f2m]https://i.postimg.cc/KjZ5vS8r/lmSCwV.jpg[/img:2jq31f2m] |
Add a taskpanel on line | How can I insert a taskpanel into Texplorerbar online, i.e. controlled by the end user?
I did this test but it doesn't work because the oExbar doesn't refresh
at init the taskpanel n. 2 is not showed
[b:10qu110m]explbar.prg modified[/b:10qu110m]
[code=fw:10qu110m]<div class="fw" id="{CB}" style="font-family: monospa... |
Add bitmap to taskbar | I would like to show wi-fi signal status icon on the taskbar rather than within the app window is it possible ?
TIA
Peter
p.s. running WM6.1 |
Add bitmap to taskbar | Peter,
Could you please post some screenshots to better understand what you mean ? thanks |
Add bitmap to taskbar | [img:3ki44ds3]https://bitbucket.org/fivetech/screenshots/downloads/wifi_windows_mobile.jpg[/img:3ki44ds3]
Antonio
I would like to place the 5 bar icon currently at at top right of the screen onto the taskbar next to the title,
in this example WiFi Status
Thanks
Peter
p.s. preview of message not showing ... |
Add bitmap to taskbar | Peter,
Are you creating that Wifi status window using FWPPC ?
If so, could you please post the code here ?
I guess that if we use the WM_NCPAINT message then you may be able to paint anything you need on the caption bar |
Add bitmap to taskbar | Antonio
Code was found here or another forum, I can't remember now <!-- s:!: --><img src="{SMILIES_PATH}/icon_exclaim.gif" alt=":!:" title="Exclamation" /><!-- s:!: -->
Regards
Peter
[code=fw:2k6jaiy2]<div class="fw" id="{CB}" style="font-family: monospace;"><br /> <span style="color: #00D7D7;">#pragma</span> BEGIND... |
Add bitmap to taskbar | Peter,
ok, thanks
So in your PRG you call Signal() and then paint the wifi icon, right ?
Please post here the PRG code used to paint the wifi icon too so we can modify it to be painted in the caption area, thanks |
Add bitmap to taskbar | Antonio
Here it is
Regards
Peter
[code=fw:fx9pbboe]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #00D7D7;">#include</span> <span style="color: #ff0000;">"FWCE.ch"</span><br /><br /><br /><span style="color: #00C800;">STATIC</span> oWnd,oBMP<br /><span style="color: #00C800;">statiC</... |
Add bitmap to taskbar | Peter,
Please try your example with these changes and let me know if you get a beep, thanks
replace this line:
DEFINE WINDOW oWnd TITLE "WiFi Status"
with:
oWnd = TMyWindow():New( "WiFi Status" )
and add this code to your prg:
[code=fw:1nks9i7x]<div class="fw" id="{CB}" style="font-family: monospace;"><span styl... |
Add bitmap to taskbar | Antonio
MsgBeep() does not get called and then crashes with variable does not exist Super
Regards
Peter |
Add bitmap to taskbar | Please use ::Super instead of Super |
Add bitmap to taskbar | MsgBeep() still not called
Regards |
Add column in xBrowse | Hi,
As I can add columns in one xbrowse already created ? |
Add column in xBrowse | Yes. You can add, delete, insert and swap columns in xbrowse at any time after creation. |
Add column in xBrowse | How ? |
Add column in xBrowse | Just use the AddCol, DelCol, InsCol methods as usual and then call obrw:refresh( .t. ) |
Add decimals to an existing numeric field | Hello,
I've a dbf with a numeric field without decimals. I would change the field adding 2 decimals, but I don't know. When I hace to change the structure of a DBF I create a nuew structure with dbcreate and then append the data from the old dbf. Doing this with character fields doesn't give an error, but if I do this ... |
Add decimals to an existing numeric field | Hi,
Please, have a took at Fivedbu sources, there is such routine. |
Add decimals to an existing numeric field | Jose Luis:
Perhaps the problem is the field's size, remember, you will need a field size + 3, for sample:
If your field has a lenght 7 with no decimals (7,0), (1234567) when you add the decimals
you need a field with leght 10 with 2 decimals, 1234567.89
Regards |
Add decimals to an existing numeric field | I have downloaded the latest public fivedbu sources from code.google. The routine in fivedbu sources is the same I use, and gives the same error when you change a numerical field with 2 integer positions - numeric (2,0) - to another with 2 integer positions and 2 decimals - numeric (5,2) -.
Any help, please ?
Regards... |
Add element near scrollbar | Hello,
In my program would like to add a combo box near the scroll bar at bottom, in this way:
[img:zvud0746]https://i.imgur.com/jGh6YYO.png[/img:zvud0746]
(I did it in GIMP)
But I don't found a way to resize the built in scrollbar or reduce the window client area...
Someone know how do that? |
Add element near scrollbar | This is a possible solution although it is not the most correct.
Put your combobox in column 0 of the msgbar, or define an item with the width you consider and insert your combobox in that item. The same can be done by inserting your scrollbar in a second item. Note that you probably have to program the behavior of the... |
Add image to this forum | Dear All,
How do we add/insert an image to this forum.
Toyet |
Add image to this forum | Toyet,
Use <!-- w --><a class="postlink" href="http://www.imageshack.us">www.imageshack.us</a><!-- w --> and copy here the fourth provided URL once you upload an image |
Add image to this forum | This is another good site (also free).
<!-- m --><a class="postlink" href="http://www.freeimagehosting.net/">http://www.freeimagehosting.net/</a><!-- m -->
James |
Add images to oImageList | Hi, all !
There is a TTreeview object. It contains a set of files of different types. I need to add icons associated with the file type to ::oImageList. I do this:
img=BmpFromIcon( EXTRACTASSICON (0, MyFile, @sol)) - handle bitmap
TTreeview: oImageList:Add(img, NIL)
But get the error: Class 'NUMERIC' has no exporte... |
Add images to oImageList | Class TImageList Method Add() expects a Class TBitmap object and not a bitmap handle
Try it this way:
TTreeview: oImageList:Add( TBitmap():Define( ,, oWnd, img ), oWnd ) |
Add images to oImageList | Thank You, Antonio ! Work normally |
Add new feature to menu class | To Antonio:
Why not create this feature for menu class ?
[img:2sbvpad2]http://img687.imageshack.us/img687/7831/immagineupq.jpg[/img:2sbvpad2]
then we can show only the option we want ( principal options)
some option are visibles and some option can be showed from user |
Add news resource ids to app ? | Hi,
An app dialog linked with DLL ,could I add new resource ids at runtime ?
for example:
function main()
define dialog odlg resource "odlg"
redefine get cget1 id 101 of odlg
redefine button id 102 of odlg
activate dialog odlg on init (addnewids())
return
function addnewids()
redefine butt... |
Add news resource ids to app ? | Shuming,
function addnewids()
@ 2, 2 BUTTON "Another" of odlg
return |
Add news resource ids to app ? | Antonio,
Thanks!
Shuming Wang |
Add news resource ids to app ? | Hi,
Antonio , can objects from source be merged with objects from resources ?
Maybe a better aproach is to first redefine all objects from the dll , but then hide what not is needed
frank |
Add news resource ids to app ? | Frank,
> can objects from source be merged with objects from resources ?
viceversa: objects from resources with objects from source code |
Add on for EasyReport: Area designer | I started working on a very basic add on tool for ER.
Best regards,
Otto
[img:donw1ori]http://www.atzwanger-software.com/fw/ERAreaDesigner.jpg[/img:donw1ori] |
Add on for EasyReport: Area designer | Area designer is an end user tool
How does it work.
AD reads from the original VRD file from the [Items] section.
The window opens in the size of the area.
After positioning the labels AD stores the changes back to the VRD file.
Original VRD designer has no zoom. Therefore it is hard to position the labels.
Best regar... |
Add or remove startup apps in Windows 10 | [url:1oga7883]http://winaero.com/blog/how-to-add-or-remove-startup-apps-in-windows-10/[/url:1oga7883] |
Add or remove startup apps in Windows 10 | Antonio
I have been using ( free ) Ccleaner from Piriform .. the new 5.11 version comes with the ability to remove many Windows apps as well ..
[img:16gjh12e]http://i64.tinypic.com/10zpzz4.jpg[/img:16gjh12e]
As well as compete control of your machine startup..
[img:16gjh12e]http://i66.tinypic... |
Add pauze function to Chronometer | Mr. Rao posted a chronometer on the forum :
I'm not able to change the code so that when you hit START and then STOP, the program should continue with the value that is on the digit.
Hitting CLEAR is correct : it goes to zero
Hitting START also goes to zero and then start. This should go on ...
[code=fw:3acvj2kl]<di... |
Add pauze function to Chronometer | Change this:
[code=fw:2g7b50gq]<div class="fw" id="{CB}" style="font-family: monospace;"><span style="color: #0000ff;">ACTION</span> <span style="color: #000000;">(</span> nStartSec := SECONDS<span style="color: #000000;">(</span><span style="color: #000000;">)</span>, oBtnStop:<span style="color: #000000;... |
Add record count to xBrowse() function | To All
It would be nice to add a record count to the xBrowse() function. So many times I use xBrowse() to debug a program and it would be nice to have that record count to verify a query or filter results.
Many Thanks
Rick Lipkin |
Add record count to xBrowse() function | Please try
USE CUSTOMER
XBROWSER "CUSTOMER" SHOW SLNUM // OR SHOW RECID |
Add second MsgBar in a window? | Hi,
I use msgbar in my main program.
Is it possible to add a second msgbar above the first msgbar?
Thanks, |
Add second MsgBar in a window? | Hakan,
Are you using a MDI window or is it a non MDI one ? |
Add second MsgBar in a window? | [quote="Antonio Linares":1bca17ew]Hakan,
Are you using a MDI window or is it a non MDI one ?[/quote:1bca17ew]
Hi Antonio,
I use non MDI.
Thanks, |
Add some functions for Tensorflow | Hello.
I adding some functions/method for Tensoflow for Fivewin like following.^^
METHOD GraphNextOperation( nPos )
DLL FUNCTION TF_GraphNextOperation( hGraph AS LONG, @nPos AS LONG ) AS LONG LIB hDLL
DLL FUNCTION TF_OperationName( hOperation AS LONG ) AS LPSTR LIB hDLL
DLL FUNCTION TF_OperationOpType( hOperation A... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.