I don't think this will work, you need to get the the content and parse it within HB by you self because comhelper can't handle arrays. /F ... list ... find ...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Code...
hotbasic@yahoogroups....
Nov 1, 2008 11:10 am
16030
Hello, I tried using MSXML once, I just did the following: xml.CreateObject("Msxml2.XMLHTTP") xml.invoke ("open", "GET", url, 0, void, void) xml.invoke...
Could you please fix the variant problem in the genericcom.in fiel that is in the examples folder /F ... library files, generate HotBasic includes. FIXES A...
Put list in combobox or listbox This is used a lot of times Now i use dim mylist as list mylist.additems "1,second item","2,second item" , is the separator ...
Note taken. Actually, I'm still hoping that Jim finds a way to support "as variant" functions... E. ... fiel ... progIDs. ... 20Center/Emmazle/Com ... ...
... Let's call that v. ... Probably the COM object has a "free" or "clear" or "initialize" that might be invoked to avoid any memory leaks that might be ...
... Right, above says you get *2* results: (1) an error/success code (HRESULT) and (2) variant result (presumably if no error). ... Which means that GetNum is...
... YES ... could ... side ... I just meant: "COPY" to the user variable given as argument (the X in X=intf.getnum(...)) or to an internal HB buffer in case we...
... An Error result should not usually result in program termination. It just indicates that the result is neither numeric nor a string. Think of a spreadsheet...
... <<snip>> ... OK, my prototype statement above seems to have sniffed out your objective. Honestly, you said that previously, guess I was too dense to...
... user. ... Sounds good! Actually you could choose: a) to maintain the current GETNUM as is, which could be implemented "as double", and which would cover...
Nov 4 HotBasic 5.7c adds a .GetVariant function for Custom Objects, particularly useful in COM programming (please see ComHelper). Syntax: MyVariant =...
... See how we get into a grove? Yes, this and all new releases will be beta for a time (meaning operationally that issue reports should be by private email...
Certainly looking forward to this as I use COM in my project. Will it work correctly for all types of variant returns? Eg, Variant Safearrays etc. I can't test...
$apptype console when copying parts of text to another string the quote char is not copied well,see output other char have the same problem like ë and so on ...
if e.g. the ë is in a string list and you save it to a file then the list cotains the ë char but when you load it and do string action with it it fails Hope...
In an otherlanguage it is working: mystr.s="Music ë Song" mystr=Left(mystr,8) 'put it into a combobox For k=0 To 30 AddGadgetItem(4, -1, mystr + Str(k)) Next ...
... Yes. Whatever variant is specified by code written for a .GetVariant routine will merely be copied to your destination variable. Thus, if Windows (or...
... With =====squotes.bas $APPTYPE CONSOLE defstr test="the text quotes are `between text' not copied right" print left$(test,25) print mid$(test,15,25) print...
This work ok for me too. Could it be the STRtoOEM function that is needed Try to send your string thru this function, and print it after. /F declare sub...
... Here's a very pedantic (sorry) revision of your fine code -- showing some short-cuts coders (new and old) might like: Declare function STROEM (OrgText as...
... Actually, this might work ... no function, just the API call! CharToOemA(OrgText,OrgText) where any string (OrgText above) is simply overwritten by ...
Hello, This email message is a notification to let you know that a file has been uploaded to the Files area of the hotbasic group. File : /Test...
hotbasic@yahoogroups....
Nov 5, 2008 5:08 pm
16058
... Not here: =====sq_in_cb.bas create f As FORM create cb as combobox width=100 additems "'","''","'''" itemindex=zero end create end create f.showmodal END ...