Quick question  
Author Message
BDUNNING02910





PostPosted: 2003-7-17 1:47:00 Top

java-programmer, Quick question I am not sure if this is the group i should post this question so
maybe you can point me in the right direction.

I have a computer and when I install the java runtime environment it
installs but when i try to access a page that uses java the screen
freezes and some times turnes scrambles with blue colors. I have
never seen anything like this. The OS works fine otherwise. I have
tryed to uninstall and reinstall. The web site I go to needs it and
if you don't have it installed it begins an installation for you.
Thanks for any help you can give me
Ben Dunning
 
Andy Flowers





PostPosted: 2003-7-17 2:19:00 Top

java-programmer >> Quick question Which OS ?
Which version of Java ?
Which graphics card ?

Do you have the latest service packs and drivers ?

"Ben Dunning" <email***@***.com> wrote in message
news:email***@***.com...
> I am not sure if this is the group i should post this question so
> maybe you can point me in the right direction.
>
> I have a computer and when I install the java runtime environment it
> installs but when i try to access a page that uses java the screen
> freezes and some times turnes scrambles with blue colors. I have
> never seen anything like this. The OS works fine otherwise. I have
> tryed to uninstall and reinstall. The web site I go to needs it and
> if you don't have it installed it begins an installation for you.
> Thanks for any help you can give me
> Ben Dunning


 
Brad BARCLAY





PostPosted: 2003-7-17 4:09:00 Top

java-programmer >> Quick question Andy Flowers wrote:
> Which OS ?
> Which version of Java ?
> Which graphics card ?

What browser?

Brad BARCLAY

--
=-=-=-=-=-=-=-=-=
From the OS/2 WARP v4.5 Desktop of Brad BARCLAY.
The jSyncManager Project: http://www.jsyncmanager.org


 
 
BDUNNING02910





PostPosted: 2003-7-17 20:22:00 Top

java-programmer >> Quick question email***@***.com (Ben Dunning) wrote in message news:<email***@***.com>...
> I am not sure if this is the group i should post this question so
> maybe you can point me in the right direction.
>
> I have a computer and when I install the java runtime environment it
> installs but when i try to access a page that uses java the screen
> freezes and some times turnes scrambles with blue colors. I have
> never seen anything like this. The OS works fine otherwise. I have
> tryed to uninstall and reinstall. The web site I go to needs it and
> if you don't have it installed it begins an installation for you.
> Thanks for any help you can give me
> Ben Dunning

system= Compaq evo d500
OS= Win2k
Graphics card= nvidia vanta
java runtime environment= 1.3.1_01
IE6

Sorry about the last deascription what I should do is give you a
complete run down as to what we do here.
We ghost many many compaq with the same image dependant on what model
number.
the image I origonal used had win2k, sp3, ie5.5,java 1.3.1_01 whick
works fine on other boxs with same image and same system. I updated
all win2k patches sp4, ie6 and tryed other versions of java with no
success. Currently I formated the drive loaded just the os with sp3
and IE 5.5, I had though that the image might of gotten corrupt. Any
Idea? I think I might start debugging hardware starting with RAM.
Any help would be great.
Ben
 
 
Jorell





PostPosted: 2003-8-9 1:30:00 Top

java-programmer >> Quick question In my asp.net page I am currently showing an XML Document
using the XML Object. What I am trying to accomplish is in
the tags of the XMLDocument adding HTML as Below

<PowerViewXMLDocument>
<Row>
<C001>
Data for row 1<Span style="BACKGROUND-
COLOR: blue">Some Text</Span>
</C001>
</Row>
<Row>
<C001>Data for row 2</C001>
</Row>
...
</PowerViewXMLDocument>

Simply put....trying to color the background of some text
by inserting HTML tags into the XML. Is this possible? Is
there a better way?
Thanks for the help!

Jorell
 
 
Qwip





PostPosted: 2003-9-26 5:05:00 Top

java-programmer >> Quick question how can I count specific charaters in a string?

like the amount of backslashes in-

"D:\Inetpub\site\this\string"



TIA


 
 
Ray at <%sLocation%>





PostPosted: 2003-9-26 5:10:00 Top

java-programmer >> Quick question sString = "D:\Inetpub\site\this\string"
iNumberOfSlashes = UBound(Split("\" & sString, "\")) - 1

Ray at work


"Qwip" <email***@***.com> wrote in message
news:email***@***.com...
> how can I count specific charaters in a string?
>
> like the amount of backslashes in-
>
> "D:\Inetpub\site\this\string"
>
>
>
> TIA
>
>


 
 
TJS





PostPosted: 2003-9-26 5:13:00 Top

java-programmer >> Quick question

http://www.aspin.com/func/search?cob=aspkey&qry=count+characters


--
================================
http://www.ASPkey.net/
A Resource Site for Web Developers
*Free OnLine web Tools
*Free development services
================================


"Qwip" <email***@***.com> wrote in message
news:email***@***.com...
> how can I count specific charaters in a string?
>
> like the amount of backslashes in-
>
> "D:\Inetpub\site\this\string"
>
>
>
> TIA
>
>


 
 
Qwip





PostPosted: 2003-9-26 5:34:00 Top

java-programmer >> Quick question Thank you
Thank you


"Qwip" <email***@***.com> wrote in message
news:email***@***.com...
> how can I count specific charaters in a string?
>
> like the amount of backslashes in-
>
> "D:\Inetpub\site\this\string"
>
>
>
> TIA
>
>


 
 
chriskl





PostPosted: 2003-10-3 10:18:00 Top

java-programmer >> Quick question Hi guys,

If someone could help me with this, it would be cool. How do I query
the catalogs to find the underlying index for a constraint? (Assuming
the constraint is primary or unique)

Chris



---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to email***@***.com

 
 
books





PostPosted: 2003-10-3 18:22:00 Top

java-programmer >> Quick question

On Fri, 3 Oct 2003, Christopher Kings-Lynne wrote:

> Hi guys,
>
> If someone could help me with this, it would be cool. How do I query
> the catalogs to find the underlying index for a constraint? (Assuming
> the constraint is primary or unique)
>

For a primary key you can do:

SELECT cls.relname AS index_name
FROM pg_class cls, pg_constraint con, pg_index i
WHERE cls.oid = i.indexrelid AND con.conrelid = i.indrelid AND
i.indisprimary AND con.conname='<constraint name>';

This is not possible for a unique constraint because you can have multiple
unique constraints per table. So you are left trying to match
pg_constraint.conkey to pg_index.indkey (for which no default operator
exists), but even this can fail if you have the unlikely situation of two
unique indexes covering the same columns.

Kris Jurka


---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to email***@***.com

 
 
tgl





PostPosted: 2003-10-3 21:59:00 Top

java-programmer >> Quick question Christopher Kings-Lynne <email***@***.com> writes:
> If someone could help me with this, it would be cool. How do I query
> the catalogs to find the underlying index for a constraint? (Assuming
> the constraint is primary or unique)

A first approximation is that the constraint and the index have the same
name, but I suppose someone could break that association by renaming the
index. Look in pg_depend for an internal dependency entry from the
index to the constraint if you want to be sure.

regards, tom lane

---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to email***@***.com)

 
 
chriskl





PostPosted: 2003-10-4 17:35:00 Top

java-programmer >> Quick question Thanks - that's what I ended up doing. Hooray for CLUSTER indexes and
constraints in phpPgAdmin CVS now!

Chris

Tom Lane wrote:

> Christopher Kings-Lynne <email***@***.com> writes:
>
>>If someone could help me with this, it would be cool. How do I query
>>the catalogs to find the underlying index for a constraint? (Assuming
>>the constraint is primary or unique)
>
>
> A first approximation is that the constraint and the index have the same
> name, but I suppose someone could break that association by renaming the
> index. Look in pg_depend for an internal dependency entry from the
> index to the constraint if you want to be sure.
>
> regards, tom lane


---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to email***@***.com)

 
 
Alan P





PostPosted: 2003-12-18 1:34:00 Top

java-programmer >> Quick question Heya all;

Can anyone consider any good books for the intermediate Java programmer? I'm
still learning, but have progressed beyond the 'Java for dummies' and
'Beginners Java' books you so often see; but am not ready for the more
advanced title.

What I was really hoping for was something in the middle; and predominantly
about standalone application development (I'm learning Java as part of my
course, so it's mainly theoretical work as opposed to applets)

Thanx

Alan P (http://www.alancode.net)


 
 
Allan Bruce





PostPosted: 2003-12-18 1:52:00 Top

java-programmer >> Quick question
"Alan P" <alan@(nojunkplease)alancode.net> wrote in message
news:brq42m$10k$email***@***.com...
> Heya all;
>
> Can anyone consider any good books for the intermediate Java programmer?
I'm
> still learning, but have progressed beyond the 'Java for dummies' and
> 'Beginners Java' books you so often see; but am not ready for the more
> advanced title.
>
> What I was really hoping for was something in the middle; and
predominantly
> about standalone application development (I'm learning Java as part of my
> course, so it's mainly theoretical work as opposed to applets)
>
> Thanx
>
> Alan P (http://www.alancode.net)
>
>

Have a look at Bruce Eckels book - it is available online for free too at
http://www.mindview.net/
Allan


 
 
Wendy S





PostPosted: 2003-12-18 4:21:00 Top

java-programmer >> Quick question "Alan P" <alan@(nojunkplease)alancode.net> wrote
> Can anyone consider any good books for the intermediate Java programmer?

If you haven't already, read Joshua Bloch's "Effective Java". It's not
about application development in particular, but it fills in a lot of holes
that most courses don't cover. I don't buy many technical books as they go
out of date so fast, but this is one I come back to and read a chapter at
random once a month or so. There are a couple of chapters available free
online somewhere... Google should turn them up.

--
Wendy in Chandler, AZ




 
 
SQL





PostPosted: 2004-1-24 0:02:00 Top

java-programmer >> Quick question In the old ASP, you were able to use variables and the such in the HTML
code, by placing <% %> tags in the code. Can we still do that with
ASP.NET.

I have a dataset that I want to loop through on the page load, and display
the data in an HTML table. I figured I could put this in a function in the
code behind, and call the function from the right spot in the HTML code. Is
this possible? If not, I can I accomplish this without using a datagrid.

Thanks.


 
 
Craig Burkett





PostPosted: 2004-1-24 0:21:00 Top

java-programmer >> Quick question Yes, you can still do this in ASP.Net.

Craig

"SQL" <email***@***.com> wrote in message
news:%email***@***.com...
> In the old ASP, you were able to use variables and the such in the HTML
> code, by placing <% %> tags in the code. Can we still do that with
> ASP.NET.
>
> I have a dataset that I want to loop through on the page load, and display
> the data in an HTML table. I figured I could put this in a function in
the
> code behind, and call the function from the right spot in the HTML code.
Is
> this possible? If not, I can I accomplish this without using a datagrid.
>
> Thanks.
>
>

 
 
SQL





PostPosted: 2004-1-24 0:58:00 Top

java-programmer >> Quick question WOO HOO!!

"Craig Burkett" <email***@***.com> wrote in message
news:email***@***.com...
> Yes, you can still do this in ASP.Net.
>
> Craig
>
> "SQL" <email***@***.com> wrote in message
> news:%email***@***.com...
> > In the old ASP, you were able to use variables and the such in the HTML
> > code, by placing <% %> tags in the code. Can we still do that with
> > ASP.NET.
> >
> > I have a dataset that I want to loop through on the page load, and
display
> > the data in an HTML table. I figured I could put this in a function in
> the
> > code behind, and call the function from the right spot in the HTML code.
> Is
> > this possible? If not, I can I accomplish this without using a
datagrid.
> >
> > Thanks.
> >
> >
>


 
 
redboxinteractive





PostPosted: 2004-3-6 1:16:00 Top

java-programmer >> Quick question gotta do a full page brightness shift, unavoidable. anyone know what gives the
best performance? color shift of shape objects, motion shift of movie clip
brightness, or actionscripted shift of one of them. thanks
redbox