Search:

Type: Posts; User: Geo3213

Search: Search took 0.02 seconds.

  1. Replies
    3
    Views
    7,870

    Re: What is threading in JAVA?

    a thread is a program's path of execution. Most programs written today run as a single thread, causing problems when multiple events or actions need to occur at the same time. Let's say, for example,...
  2. Re: How can I convert my java program to an .exe file ?

    The standard Java development kit (JDK) supplied by Sun does not provide a tool to create platform specific executables (This is not suprising really). However, you do have a number of options to...
  3. Replies
    3
    Views
    4,443

    Re: How to register a component in vb?

    This code sample shows how to Register and Unregister ActiveX Components directly through VB Code - useful if you write your own Setup/Installation routines for projects.


    public Function...
  4. Re: How to encrypt & decrypt text or files in Vb dot net?

    Below is an example of a substitution cipher. Substitution ciphers can be broken by a cryptanalyst who knows what they're doing, so this method of encryption shouldn't be used if you want your data...
  5. Re: What is ActiveX and Types of ActiveX Components in VB?

    Please have a look at this!
    http://msdn.microsoft.com/en-us/library/aa231194(VS.60).aspx
    Hope this helps you! :)
  6. Re: What are the differences between flexgrid control and dbgrid control?

    The Microsoft FlexGrid (MSFlexGrid) control displays and operates on tabular data. It allows complete flexibility to sort, merge, and format tables containing strings and pictures. When bound to a...
  7. Re: Creating a password box in vb with textbox control?

    i have decided to make a password box to open another form i got the part where it asks you the password and brings you the form. is there any way if you have a message box for it to display them in...
  8. Re: How do I create a textbox in vb that lets you insert tabs?

    you want to give users the ability to tab between controls AND enter tabs in the Rich Textbox. Fortunately, VB provides the tools for you to do so in the Rich Textbox control's KeyDown() event.

    ...
  9. Replies
    5
    Views
    75,067

    Re: What is static method in java?

    There are two types of methods.


    Instance methods are associated with an object and use the instance variables of that object. This is the default.
    Static methods use no instance variables...
  10. Re: What is the difference between while statement & do statement?

    A "do while....." statement is a looping instruction to a program to repeat a stage in the program while some condition is true - e.g while a variable is negative, or, while one variable is less than...
  11. Re: What is difference between pass by value & pass by reference in java?

    Java is strictly pass-by-value, exactly as in C. Read the JLS. It's spelled out, and it's correct. (See http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#37472)

    In short:...
  12. Re: Connecting Ms Excel to vb.net retrieval & storage of data?

    Hey i think you need something like this!
  13. Re: Ctrl+A not working in C++ edit box control why?

    It does not work by default. You have to write code for that. Add an entry to the application accelerator, add a handler for it, and there select all the text.
    ...
  14. Replies
    3
    Views
    12,293

    Re: How to create Module in VB.NET?

    I have always used modules both in VB 6 and VB.NET. in VB6, they were a great way to create static class like functions so that you could just call a method without needing to create an instance of...
  15. Re: Sending email to multiple recipients from my6 vb.net application?

    To specify multiple recipients for a MailMessage, simply separate each recipient with a semicolon. For example:

    mail.To = "me@mycompany.com;him@hiscompany.com;her@hercompany.com";

    The...
  16. Re: How to communicate with USB port with VB.NET program?

    There isn't a single method for using USB -- every device provides its own
    API. These either are standard Windows APIs, or ones specific to the device
    that the device manufacturer provides you....
  17. Replies
    5
    Views
    1,165

    Re: Why people think VB is not good & hate it?

    Things I hate about VB 6:
    + The IDE is ultra annoying. It doesn't like to let you leave a line syntactically incorrect for even a second without sqwaking at you.
    + There is a limit to the number of...
  18. Re: Multiple commands for a batch file in a for loop?

    You need to code ONE command per line and checking errorlevel has to be coded as below, i.e.

    for /f "options" %%a in (fileset.txt) do (
    fc /b /c %source%\%%d
    if errorlevel 1 call error.bat)
    ...
  19. Replies
    6
    Views
    6,354

    Re: How to send mail on submit button?

    I guess one of the easiest ways might be to specify email addr in the action

    e.g.

    <form action=mailto:your@email.address method="POST" enctype="text/plain">

    The trouble with using this...
  20. Re: How to refresh database after adding a new record?

    What is the actual database you are using?

    Another thing you can try is closing and reopening the dataset, e.g.
    MyADOQuery1.ExecSQL;
    MyADOTable1.Close;
    MyADOTable1.Open;

    The problem with...
  21. Replies
    3
    Views
    1,271

    Re: What is null value?

    The nullability of a column determines if the rows in the table can contain a null value for that column. A null value, or NULL, is not the same as zero (0), blank, or a zero-length character string...
  22. Replies
    4
    Views
    7,067

    Re: Compiler Vs Interpreter?

    A compiler, in general, reads higher level language computer code and converts it to either p-code or native machine code. An interpreter runs directly from p-code or an interpreted code such as...
  23. Re: In ASP.Net having Windows Media Player With VB.Net?

    Ok, here's the solution I have come up with:

    Here are the key points to get it to work (lots of trial and error went into my discovering this):

    1) YOU MUST HAVE THE OBJECT TAGS REPRESENTING THE...
  24. Replies
    6
    Views
    1,830

    Re: To access a text field from another form

    form2.text1.text=text1.text

    assuming that the command will be fired from the current form
  25. Replies
    2
    Views
    6,180

    Re: C# : To read & write serial port?

    For 1.x compact framework OpenCF has a serial library in it
    http://opennetcf.org/CategoryView.aspx?category=Home (version 1.4 or
    http://www.pocketpcdn.com/libraries/opennetcf_serial.html

    2.0 of...
  26. Replies
    3
    Views
    3,007

    Re: SQL Server does not allow remote connections

    First i would like to ask you if you have checked your IP address?

    If this is correct i think you must check the remote connection allowing is configured with SQL Server's Surface Area...
  27. Replies
    3
    Views
    811

    Re: Regular websites won't load in browser

    Very 1st thing try to access those websites in different web browsers & also turning off the antivirus, may be your antivirus software is preventing you from accessing those websites. You can also...
  28. Replies
    2
    Views
    856

    Re: Desktop USB port not workin anymore why?

    Go into the Device Manager and make sure the port is enabled.
    One more thing check out if your driver is properly install. Try installing USB driver again.
  29. Re: Why is my home page is being changed automatically?

    You've got spyware changing it. Go to http://download.com and download adaware.

    Make sure you update the spyware bases before you run it. After you run it, you should be set. I usually have mine...
  30. Replies
    6
    Views
    13,539

    Re: Samsung I900 Omnia GPS problem

    good, I throw in the towel, no way to get their hands on the Tomtom Navigator 7.
    Someone could tell me where and recover as long as there is how to install it?
  31. Replies
    1
    Views
    984

    Well what i know about Deep Blue Programming is...

    Well what i know about Deep Blue Programming is this.
    It has a basic chess engine and a very fast processor. It has millions of chess positions in it's memory and compares the current position with...
  32. Replies
    2
    Views
    1,728

    Hi, What i would suggest you in this situation!...

    Hi,
    What i would suggest you in this situation!
    Grab a bootable CD & try installing your XP product on your hdd right from scratch! Now see if it asks for CD key & it will now provide the same CD...
  33. Replies
    3
    Views
    1,208

    Use Sony Soundforge for sound editing Use Adobe...

    Use Sony Soundforge for sound editing
    Use Adobe Audition for multy tracking & editing
    Both record sound very well! Just try it out!
  34. Replies
    2
    Views
    989

    Its all about my preferences! nothing...

    Its all about my preferences! nothing categorized, whatever i use the most is on the first page then second & then third not much classifications.
    Games are on first page! :)
  35. Replies
    4
    Views
    1,085

    Try this fix: ...

    Try this fix:

    http://www.vistax64.com/tutorials/68395-windows-mail-spell-check.html
  36. Replies
    4
    Views
    809

    I switched the other way, from MacOS X to...

    I switched the other way, from MacOS X to Windows. Although I liked the pretty Apple hardware, I found MacOSX slow and restrictive. The user interface was truly awful, and there always seemed to be...
  37. Replies
    5
    Views
    5,533

    No case is dust proof :ohyeah: What you can do...

    No case is dust proof :ohyeah:
    What you can do is find a case not too big so just estimate how much room will be needed. Now look for different cases on newegg.com around the size you need. I will...
  38. Replies
    4
    Views
    967

    Registry Windows Registry is a central database...

    Registry
    Windows Registry is a central database for application configuration settings and other information required by the applications. Actually there is nothing else you can do with Windows...
  39. Thread: Learn UNIX!

    by Geo3213
    Replies
    4
    Views
    4,480

    I have the "Teach Yourself Unix in 24 hours" by...

    I have the "Teach Yourself Unix in 24 hours" by Sams publishing. but copyrighted 1997 so I'm not sure how realavent it is today.
  40. Replies
    4
    Views
    1,085

    Please read this thread on Spell check...

    Please read this thread on Spell check
  41. This is a link where you can find games...

    This is a link where you can find games Wallpapers & other accessories for your W300i.
    http://www.myw300.lasyk.net/
    Enjoy
  42. What i suggest you is to have a second HDD &...

    What i suggest you is to have a second HDD & install XP on it. Use it with Virtual PC.This is best & safe.:thumbup1:
  43. Replies
    5
    Views
    3,484

    diskcleanup and defrag every once in a while will...

    diskcleanup and defrag every once in a while will help.
  44. Replies
    2
    Views
    1,214

    According to me there should not be any problem...

    According to me there should not be any problem meeting your need.
    Just be clear with your audio video programs. 2GB of RAM is Lot better than 1GB.The configuration you have is a lot better for...
Results 1 to 44 of 44
Page generated in 1,711,715,382.77557 seconds with 17 queries