nanosani 20 Technize.net addict Team Colleague

counter-strike --> sudden strike

nanosani 20 Technize.net addict Team Colleague

......................

nanosani 20 Technize.net addict Team Colleague

do you remember the name of the software??

nanosani 20 Technize.net addict Team Colleague

I didnt find any method doing your job .... however you can set a listener for minimizing the window ... if the window is minimized, then you should restore it and bring it to front again.

nanosani 20 Technize.net addict Team Colleague

Agreed. (And is my vote the only one that matters? just kidding!) I think the Geek's Lounge is meant for off-topic chat such as this. :)

Yes ofcourse cuz you'll be the one who will decide finally what to do :cheesy: :mrgreen:

nanosani 20 Technize.net addict Team Colleague

incessant --> ceasefire

nanosani 20 Technize.net addict Team Colleague

thats right.

nanosani 20 Technize.net addict Team Colleague

girls --> innocent

nanosani 20 Technize.net addict Team Colleague

See your advanced sound options ... is something set to mute ??

nanosani 20 Technize.net addict Team Colleague

try out last known good configuration ... or your can repair the win xp installation. I think someone has deleted all the user profiles.

nanosani 20 Technize.net addict Team Colleague

I think geek's lounge is particularly made for off screen talks like this one.

nanosani 20 Technize.net addict Team Colleague

And I have learned that blogs are a great way to learn and share.

nanosani 20 Technize.net addict Team Colleague

Now chemists should be experimenting with WoSO4, WoCl, WoNO3, WoOH etc.

I love chemistry but I'm afraid of this element.wooooh.

nanosani 20 Technize.net addict Team Colleague

consequences --> result

nanosani 20 Technize.net addict Team Colleague

can you post your code ?

nanosani 20 Technize.net addict Team Colleague

I'll try to find some more of them.

nanosani 20 Technize.net addict Team Colleague

Is there any good vb to java convertor available ?? or should it be java to vb convertor ?

nanosani 20 Technize.net addict Team Colleague

That book is really good in terms of concepts ... you should be reading the text thoroughly. And then ask questions as you encounter problems ... but try to solve as many problems as possible ... as you'll learn more by solving not by asking.

nanosani 20 Technize.net addict Team Colleague

I think you added the files to the JBuilder project ... you must create a new file of the class name and then copy and paste those contents respectively in each file.

nanosani 20 Technize.net addict Team Colleague

thanks Sphyenx ... I'll see if I dont have a testing pc.

nanosani 20 Technize.net addict Team Colleague

biased --> students

nanosani 20 Technize.net addict Team Colleague

Yes alc is right. but what has it to do with java ... do you want to make java ghungroos ... hehe.

nanosani 20 Technize.net addict Team Colleague

I want some more professional helpful people involved in the .NET framework section .... cuz I dont see so many replied or posts in the section.... ( Hey Dani ! may be I am hasty about everything ... dont want to wait much for the traffic to come in ... but I want my problems to be solved here....

nanosani 20 Technize.net addict Team Colleague

You should be using a dialog box or a new frame ( as you like ) with a JEditorPane in it .... JEditorPane can display html/rich text format contents ... you can use the methods ... read or setText or setPage of JEditorPane to show the respective content.

For further information .. consult java api for javax.swing.JEditorPane

nanosani 20 Technize.net addict Team Colleague

frog --> jumpy pond

nanosani 20 Technize.net addict Team Colleague

I have found the way ... and I'll show you the software for registry editing I am making .. hehe

nanosani 20 Technize.net addict Team Colleague

fairy princess --> cute child

nanosani 20 Technize.net addict Team Colleague

How can I view the system information ??

nanosani 20 Technize.net addict Team Colleague

how can I edit the windows registry using vb.net

nanosani 20 Technize.net addict Team Colleague

you're welcome Linda :)

nanosani 20 Technize.net addict Team Colleague

oops sorry ! I just wanted to ask ... not to win something ... hehe


You could just disable the link ... or delete the thread .... I cant do anything with it :o

nanosani 20 Technize.net addict Team Colleague

how can I disable/enable the minimize maximize/restore and close buttons within my code ?

nanosani 20 Technize.net addict Team Colleague

Yuhooo ! Afsah is from Pakistan and me too ... and interestingly I am registered with the same university as is she :). Afsah and Afrah congrats from me too.

nanosani 20 Technize.net addict Team Colleague

See the site and tell me is it worth something ??

http://www.tech4free.com/default.aspx

nanosani 20 Technize.net addict Team Colleague

bleh --> not

nanosani 20 Technize.net addict Team Colleague

vb .net step by step by Michael Halvorson is a good book to get started. I just started learning vb.net

nanosani 20 Technize.net addict Team Colleague

I wanted to know how antiviruses work ... and if I want to make my own antivirus which will download the definitions of some other existing antivirus ... how should I be starting ... I want to do it in VB. NET.

nanosani 20 Technize.net addict Team Colleague

Have you got the latest yahoo ! Try uninstalling and reinstalling again.

nanosani 20 Technize.net addict Team Colleague

could you please use English ?? This site has rules that you can only use english to ask questions ... and I didnt understand which language did you use ?? no german no french ?? then what else ??

nanosani 20 Technize.net addict Team Colleague

First find out what you have for your program .. the variables .. n methods ... and how many classes you'll need to solve your problem

then see what are the inputs of your program .. and then what your program needs to output ..

and then start making a visual picture of what your program will be .....

and if you dont understand what to do ... atleast take your pen in your hands and start writing something ... it'll give you a boost ( if you successfully do it ... I assure half your work will be solved).

nanosani 20 Technize.net addict Team Colleague

I dont want my page file to be disabled .. but at the same time I want my ram to be used more .. not the pagefile.

nanosani 20 Technize.net addict Team Colleague

As to specifically see javax.swing.JMenu API to insert menus in your app ... and to disable the X button :

see javax.swing.JFrame --> setDefaultCloseOperation(int )

setDefaultCloseOperation
public void setDefaultCloseOperation(int operation)Sets the operation that will happen by default when the user initiates a "close" on this frame. You must specify one of the following choices:

DO_NOTHING_ON_CLOSE (defined in WindowConstants): Don't do anything; require the program to handle the operation in the windowClosing method of a registered WindowListener object.
HIDE_ON_CLOSE (defined in WindowConstants): Automatically hide the frame after invoking any registered WindowListener objects.
DISPOSE_ON_CLOSE (defined in WindowConstants): Automatically hide and dispose the frame after invoking any registered WindowListener objects.
EXIT_ON_CLOSE (defined in JFrame): Exit the application using the System exit method. Use this only in applications.
The value is set to HIDE_ON_CLOSE by default.

nanosani 20 Technize.net addict Team Colleague

You want to open internet explorer ... or html content in your app ?? Using JEditorPane will do it for you ... it automatically parses html content. for further reference .. see javax.swing.JEditorPane API.

nanosani 20 Technize.net addict Team Colleague

Who would take the headache of reading your query ??? you would have atleast showed some effort in solving the problem. Please try to solve it yourself .. and where you are stuck ... ask here then.

nanosani 20 Technize.net addict Team Colleague

I was looking into my task manager ... and I got that my pc was using 120 MB as paging file while about 150 MB of my ram was still not used. I wonder why is it so? And if I want all of my ram to be utilized .. then what should I do?

By the way I have 256 MB of ram.

nanosani 20 Technize.net addict Team Colleague

Boot your pc in vga mode ... I think you'll solve your problem. Do tell us then.

To boot in vga mode ... when you boot your pc .. press F8 for advanced options and then boot with vga mode enabled.

nanosani 20 Technize.net addict Team Colleague

bubbles --> bubble bobble

nanosani 20 Technize.net addict Team Colleague

try EA Armour from www.ca.com ... it has a free 1 year licence ... and its good too. You'll find a spy ware remover on the site too.

nanosani 20 Technize.net addict Team Colleague

All the exe files of my computer stopped responding .... and when I scanned for viruses ... there was a virus named something like win32.plif bla bla .. which was corrupting my apps. You should scan you pc for viruses.

nanosani 20 Technize.net addict Team Colleague

I mostly use JBuilder 2005 for speedy application development