ConnectToNewObject( "PowerBuilder.Application" )The following code runs without problem on development workstation,
but fails when deployed to workstation with only runtime files
deployed.
PBObject = Create oleObject
iResult = PBObject.ConnectToNewObject( "PowerBuilder.Application" )
iResult returns -2
Search of registry found that "PowerBuilder.Application" is
registered on workstations with PowerBuilder deployed on, but is not
on workstations with runtime deployed. Have tried registering
pbvm90.dll, but get error message pbvm90.dll was loaded, but the
DllRegisterServer entry point was not found. Not...
Powerbuilder application "crashing" another powerbuilder applicationThis is a repost of the above subject since there has been some problem for
messages posted on the 19th - 22nd July 2002.
***************
Hi All,
I have an application (App A)built using PB7.0.3 build 10077 and it
seems to work fine. However, recently, another application (App B)
built using PB 7.0.3 build 10047 as well was installed and it seems to
trigger Dr Watson on App A.
There is an embedded OCX on a "main" window on App A, which receives
triggers from external applications. The OCX will then call another
function sitting on another main window. That function w...
.ALLCOL("%COLUMN%", " ", ", ", ", ")Do you know anyway for me to exclude a subset of columns returned by this
function. We have two columns (rec_user and rec_datetime) which are in all
of our tables, but when generating triggers I want automatically generate a
script which does not include those two columns but does include all other
columns in that table.
Bruce
I should add that I am using PD 9.0.0.580.
Bruce
"Bruce Lamb" <lamb.bruce@mayo.edu> wrote in message
news:6HgI315nCHA.155@forums.sybase.com...
> Do you know anyway for me to exclude a subset of columns returned by this
> function. ...
Precedence of "where" ("of", "is", "will")?Nobody on #perl6 today could answer this one. Is:
Str | Int where { $_ }
the same as:
(Str | Int) where { $_ }
or:
Str | (Int where { $_ })
?
Followup questions, Mr. President:
What kind of operators are "where", "of", "is", and "will"?
Is there a reason that S03 doesn't list them?
What are their precedence(s)?
--
Chip Salzenberg - a.k.a. - <chip@pobox.com>
Open Source is not an excuse to write fun code
then leave the actual work to others.
Chip Salzenberg writes:
&...
quotes, quotes, quotes...I am getting this error and I know what is causing it, but I have no idea
how to fix it, any help would be great. The script steps through the
/var/log/messages file on a linux server and puts
The entries into a mysql database. However when it gets to the 'hlt' line in
the messages file it just barfs. The single quotes are freaking it out. I
know about quotes but not how to use in
this situation.
Thanks,
Paul
Error:
May 27 17:53:00 localhost kernel: Checking 'hlt' instruction... OK.
<----- doesn't like this in the messages file
DBD::mysql::st exec...
How To Set "Trial Application" and "Bound To This Machine" .NET application only
Hi,
This is the first time I made a web application for a client. Since he has not paid me, what should I do so that the application will terminate within x days starting from the day I install the application in his server ? And is it possible to make application works on his server only ? I don't want the files copied without my permission.
Thank you very much for your attention.
===================================Don't Quote And Flame Me If I Am Wrong===================================...
"-" not "_"
I wrote a SQL statement in the data tab. I wrote a bunch of alaises as example ' word-type ' but when I hit the layout tab it converts the "-" to "_". So now my field name is ' word_type '. Is there any way to prevent this? CardGunner
Don' use a hypen ( - ). It isn't a valid character for column names.
See http://searchsqlserver.techtarget.com/expert/KnowledgebaseAnswer/0,289625,sid87_gci1188931,00.html
Here's an excerpt about column names:
Letters as defined in the Unicode Standard 2.0
Decimal numbers from either B...
"Using" or "With"
Hi all
Please can someone enlighten to me as regards the difference with the "Using" and "With" statement when accessing data - which is better, what are the limitations and/or any pointers. Many thanks.
Regards
DaveDavid WinchesterPlease mark as answer if this is the solution.
using gives you the ability to use the connection and it closes the connection directlly after you finish using it. and there is no need to try- cach - finaly. there is no limitation on using USING keywordMuhanad YOUNISMCSD.NETMy Blog || My Photos || LinkedIn
I have a dataobject the re...
"Me" is better than "You"Yes I know, strings are frozen.
But let me talk about it, I really can't get through the idea of a PC
talkin to me.
I consider my PC as an extension of myself, not a dumb companion who
addresses Me as You. Yes there are times when I get angry with Him while
I work and get wrong calculations etc.., but it really is my fault, Me
using wrong istructions and eventually wanting to find someone else to
blame, but it's Me. And yes, I consider Thunderbird my mail program,
reading my mail on my PC as Me.
So I personally like to have Me in the header bar as a compact address
...
Using "+" or "||"Using SQLAnywhere 5.5.04, I've gotten into the habit of using "||" in
ISQL to indicate a string concatenation. I needed to paste my SQL
statement into the PowerBuilder script painter for some embedded SQL, and
PB didn't like the "||" very much at all. I changed it to "+" and it
seems to be ok. Do these two operators indicate ~exactly~ the same
thing?
moin,
afaik these two's are not the same!
if you're using "||" and any term is NULL then in the resultstring the term
will be ignored
if you use "+" then the resu...
Replacing "\\" with "\"
Hi all
I'm getting this value from a CheckBoxList control - a location of file, i have to remove "\\" and replace it with "\" and pass it to Query, how to do it, i tried with Replace, but coud'nt suceed.
"\\\\Blaze10xp\\BLZ_SFS_07\\Sample Excel Files\\Excel Files\\report2.xls"
thank's in advance
- Prakash.C
you tried Replace like this?
string newstring = oldstring.Replace(@"\\",@"\");Plese, do not forget to click "Mark as Answer" on the post that helped you. Thanx!My blog: Scenes From A Developer Memory
yes i tr...
"classname" parameter of function "connecttonewobject"Hi:
I'm using function "ConnectToNewObject" to work with Word, the "classname"
parameter is "word.application".If I want to work with other OLE classes,
like excel, powerpoint,etc,How can I get their "classname"?
I'm using Formula One 6, I don't know its classname,so some methods and
properties can't be used in my app.
Thanks in advance.
hi,
check in the object browser in pb and go to OLE tab and look in programmable
ole objects.
Cicy
John Shen wrote:
> Hi:
> I'm using function "ConnectToNewO...
Cache("My_DS") or Application("My_DS")
What is the difference between the above?
Thanks.
Hi,
There are major difference between Cache("My_DS") and Application("My_DS") . If large amount of reqiest is coming then cache data is deleted automatically. This feature is called scavanging. This feature is not in application state.
With regards
Anurag Pandey
Anurag Pandey
Software Developer
Consulting Engineering Services India Pvt. Ltd.
New Delhi, India
Hi,
Cache("My_DS") will maintain the content in the Cache object. Application("My_DS") will maintain the conte...
double quote
hello there...
i tried everything of think but not working the way i wanted to be... not sure what i'm missing...i'm generating a <span> in code behind and then using in javascript....
here is what i'm doing
code behind:
int i=0string _keywordID = "keyword";string _name = row["visit_info_nm"].ToString().Trim(); String _getElementByID = String.Format("<span id='{0}' OnClick = \"document.getElementById('{1}').value='{2}';\">{3}</span><br>", i, _keywordID, _name, _name);
here is what it generate :
<span id='1' OnClick = \"document.getElementById('keyword')...