Search the web
Sign In
New User? Sign Up
hotbasic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 16028 - 16058 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16028
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 ...
fnoware
Offline Send Email
Nov 1, 2008
7:49 am
16029
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....
Send Email
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...
emmazle
Offline Send Email
Nov 1, 2008
11:49 am
16031
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...
fnoware
Offline Send Email
Nov 1, 2008
9:51 pm
16032
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 ...
chordnl
Offline Send Email
Nov 1, 2008
10:51 pm
16033
Note taken. Actually, I'm still hoping that Jim finds a way to support "as variant" functions... E. ... fiel ... progIDs. ... 20Center/Emmazle/Com ... ...
emmazle
Offline Send Email
Nov 2, 2008
9:00 pm
16034
... 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 ...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2008
10:23 pm
16035
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 2, 2008
10:34 pm
16036
... 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...
emmazle
Offline Send Email
Nov 3, 2008
2:54 pm
16037
... 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...
emmazle
Offline Send Email
Nov 3, 2008
2:56 pm
16038
... <<snip>> ... OK, my prototype statement above seems to have sniffed out your objective. Honestly, you said that previously, guess I was too dense to...
doctor electron
globalservices1
Offline Send Email
Nov 3, 2008
3:22 pm
16039
... 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...
emmazle
Offline Send Email
Nov 3, 2008
4:57 pm
16041
Nov 4 HotBasic 5.7c adds a .GetVariant function for Custom Objects, particularly useful in COM programming (please see ComHelper). Syntax: MyVariant =...
doctor electron
globalservices1
Offline Send Email
Nov 4, 2008
3:33 pm
16042
Thank you for your hard work, will download it right away. One question: Is this new version in beta state? Thanks again efgee...
efgee2003
Offline Send Email
Nov 4, 2008
6:21 pm
16043
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 4, 2008
7:59 pm
16044
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...
enpsuedo
Offline Send Email
Nov 5, 2008
7:05 am
16045
$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 ...
chordnl
Offline Send Email
Nov 5, 2008
7:59 am
16046
test.MemCopyTo(temp$,25) will also fail to show the right char What to do to show this normal char(s) the right way? grCor...
chordnl
Offline Send Email
Nov 5, 2008
8:09 am
16047
This is also shown in my gui application when tried to display text in the combobox grCor...
chordnl
Offline Send Email
Nov 5, 2008
8:56 am
16048
If you do any string operation like field$,mid and so on the e.g. ë char is converted the wrong way grCor ... right"...
chordnl
Offline Send Email
Nov 5, 2008
9:35 am
16049
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...
chordnl
Offline Send Email
Nov 5, 2008
10:22 am
16050
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 ...
chordnl
Offline Send Email
Nov 5, 2008
12:32 pm
16051
... Yes. Whatever variant is specified by code written for a .GetVariant routine will merely be copied to your destination variable. Thus, if Windows (or...
doctor electron
globalservices1
Offline Send Email
Nov 5, 2008
12:44 pm
16052
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 5, 2008
1:06 pm
16053
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...
fnoware
Offline Send Email
Nov 5, 2008
2:38 pm
16054
... 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...
doctor electron
globalservices1
Offline Send Email
Nov 5, 2008
3:53 pm
16055
... Actually, this might work ... no function, just the API call! CharToOemA(OrgText,OrgText) where any string (OrgText above) is simply overwritten by ...
doctor electron
globalservices1
Offline Send Email
Nov 5, 2008
4:05 pm
16056
grCor the ' show in the comboxbox different chars stroem does not help...
chordnl
Offline Send Email
Nov 5, 2008
4:47 pm
16057
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....
Send Email
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 ...
doctor electron
globalservices1
Offline Send Email
Nov 5, 2008
9:48 pm
Messages 16028 - 16058 of 17145   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help