Hi, All
It's my idea to create the interface of CAD software template version that can
create the vector objects
drag objects over the work area
move the area
click the objects, pins
zooming the objects by the mouse wheel: by re-calculation of each object
It's just my first try to create the...
I can do this with something like this:
Sub CStr(oVal As String) As String
Return oVal
End Sub
[\CODE]
This is fine if oVal has a string assigned to it, eg: oVal = "abc"
However, this won't work if oVal has nil assigned to it, so for example:
[CODE]
Dim o As Object
Log(CStr(o))
[\CODE]...
I am using Map (MainMap) on each line for CustomListView1 within the THSLT module. But I need to access CustomListView1 and Map (MainMap) content from the other module (ODM). As I read and understand in the forum, there is no direct access to the object. I hope the following example shows my...
Hello,
I have that sub to try to make some actions regarding of the view object type :
Sub TrtObject(Obj As Object)
Dim Lbl As Label
Dim Btn As Button
Dim Lv As ListView
Dim Clv As CustomListView
Log(GetType(Obj))
If GetType(Obj) = "Label" Then
Lbl...
pls look at the following code
dim map1 as map
dim s as string
dim o as object
map1.Initialize
map1.Put("4","d")
map1.Put("1","a")
map1.Put("101","a")
s = map1.get(1) ' s = null
o = map1.Get(1) 'o = null
If s<> Null Then
Log("s is not null")
Else
Log("s...
Hi there
I have been using the 'Dim row(3) As Object' notation for a while with tableviews record addition. So I decided to try to use a list instead.
So I..
Dim row as List
row.Initialize
row.add("x")
row.add("y")
row.add("z")
tableview.items.add(row)
of rather row.AddAll(array as...
Hi,
I'm using the jDRC2 module and would like to write a text file with all the sql commands and the data processed. but how do I extract the data from the cmd.Parameters object to text fields separated with ",".
I tried dumping into the log to see what it looked like and got this:
Command: Q2...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.