Results 1 to 16 of 16

Thread: Run a VB.Net application on Win98

  1. #1

    Thread Starter
    Lively Member adsc's Avatar
    Join Date
    Nov 2002
    Location
    Kuwait
    Posts
    71

    Run a VB.Net application on Win98

    Hi All

    Did anyone tried to run a VB.Net application on Win98?

    I tried that, installed the .Net framework then installed the my application, but I am getting the following error message:

    "Common Language Runtime Debugging Services"
    “Application has generated an exception that could not be handled.
    Process id=0xfle3097(-1896553)…….”

    Any idea what could this error?

    Thanks for the help
    <><><><><><><><><><><><><><><><><><>
    <><> REMEMBER,,,,KNOWLEDGE IS POWER <><>
    <><><><><><><><><><><><><><><><><><>

  2. #2
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Contact Microsoft .

  3. #3
    Addicted Member Sheppe's Avatar
    Join Date
    Sep 2002
    Location
    Kelowna, BC
    Posts
    245

    Re: Run a VB.Net application on Win98

    Originally posted by adsc
    Hi All

    Did anyone tried to run a VB.Net application on Win98?

    I tried that, installed the .Net framework then installed the my application, but I am getting the following error message:

    "Common Language Runtime Debugging Services"
    “Application has generated an exception that could not be handled.
    Process id=0xfle3097(-1896553)…….”

    Any idea what could this error?

    Thanks for the help
    I have deployed a VB.NET application to 98, and I believe I received the same error as stated. If memory serves, the destination PC didn't have a particular component that the app was referencing.
    [vbcode]
    On Error Goto Hell
    [/vbcode]
    Sheppe Pharis, MCSD
    Check out http://www.vb-faq.com
    Click here for access to the free Code-Express source code and component sharing network for VB6
    Want a better way to skin your .NET applications? Click here!

  4. #4
    Frenzied Member DevGrp's Avatar
    Join Date
    Nov 2001
    Location
    Charlotte, NC
    Posts
    1,256
    Also, are you targeting framework 1.1 or 1.0?

  5. #5
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    Dublin (Ireland)
    Posts
    304
    since I am just about to deploy a system onto windows 98, did you have any success in determining the missing component?

  6. #6
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    I think...
    If you had error handling in your code , then you would get more specific error description . I know this sounds irrelative but actually it helps you in such situations .

  7. #7
    Frenzied Member trisuglow's Avatar
    Join Date
    Jan 2002
    Location
    Horsham, Sussex, UK
    Posts
    1,536
    Here's the benefit of my limited experience:

    I've only installed one program on one PC running Win98SE.

    I didn't get any fatal errors as described, although the program behaviour wasn't quite as expected. I was having problems with accelerator keys not working, textboxes not highlighting, odd behaviour with list re-ordering and other stuff.

    I don't think I'd recommend developing for Win98. I strongly agree with the previous comment about error trapping. If you use Try-Catch-EndTry structures throughout your code and throw helpful system exceptions you may well be able to sort it out.
    This world is not my home. I'm just passing through.

  8. #8
    Hyperactive Member rplcmint's Avatar
    Join Date
    Jan 2001
    Location
    Stockton, CA
    Posts
    333
    I don't think your app can run on Windows 98 at all. It was never designed to do so.

    VB.net is designed to run on WindowsXP, Windows2000, and the newer flavors. (It probably can't hang with Windows NT.)

  9. #9
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Originally posted by rplcmint
    I don't think your app can run on Windows 98 at all. It was never designed to do so.

    VB.net is designed to run on WindowsXP, Windows2000, and the newer flavors. (It probably can't hang with Windows NT.)
    Wrong , sorry . This problem doesn't mean it won't run on W98 but sort of version problems . This could happen on any OS *but* I agree with the ppl who recommend not desgining app for old OSs.

  10. #10

    Thread Starter
    Lively Member adsc's Avatar
    Join Date
    Nov 2002
    Location
    Kuwait
    Posts
    71
    Hi All,
    thank you for all of you.....

    My application is working now on Win98 yes

    Thank you again for all the help
    <><><><><><><><><><><><><><><><><><>
    <><> REMEMBER,,,,KNOWLEDGE IS POWER <><>
    <><><><><><><><><><><><><><><><><><>

  11. #11
    Sleep mode
    Join Date
    Aug 2002
    Location
    RUH
    Posts
    8,083
    Originally posted by adsc
    Hi All,
    thank you for all of you.....

    My application is working now on Win98 yes

    Thank you again for all the help
    It's good to mention what's the solution specially for such problems so that it can help anyone has the same problem .

  12. #12
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428
    Originally posted by Pirate
    It's good to mention what's the solution specially for such problems so that it can help anyone has the same problem .
    I dont know what happened to him, but just to share my experience with testing an app on win98:
    It would give me error messages and wouldnt run. I had to lower the security for .NET applications in control panel before I could get it to work
    rate my posts if they help ya!
    Extract thumbnail without reading the whole image file: (C# - VB)
    Apply texture to bitmaps: (C# - VB)
    Extended console library: (VB)
    Save JPEG with a certain quality (image compression): (C# - VB )
    VB.NET to C# conversion tips!!

  13. #13
    Hyperactive Member
    Join Date
    Mar 2002
    Location
    Dublin (Ireland)
    Posts
    304
    out of interest did yoou have an sql database with yoour application. I am trying to figure out how I distribute my software with an sql database which I have built using the designer. I am almost coming to thhe conclusion that I will hhave to write a program thhat will gnerate the schema for the database table abd views. Surely this cannot be right. Anyone else got a bettter suggestion?

  14. #14
    l33t! MrPolite's Avatar
    Join Date
    Sep 2001
    Posts
    4,428
    no, my program didnt work with a database.... sorry I dont know much about databases to help you here
    rate my posts if they help ya!
    Extract thumbnail without reading the whole image file: (C# - VB)
    Apply texture to bitmaps: (C# - VB)
    Extended console library: (VB)
    Save JPEG with a certain quality (image compression): (C# - VB )
    VB.NET to C# conversion tips!!

  15. #15

    Thread Starter
    Lively Member adsc's Avatar
    Join Date
    Nov 2002
    Location
    Kuwait
    Posts
    71
    Originally posted by Pirate
    It's good to mention what's the solution specially for such problems so that it can help anyone has the same problem .
    Yes sure...

    Your need to install the following:
    1. IE6 SP1
    2. MDAC 2.7 Service Pack 1
    3. Microsoft .NET Framework Version 1.1 Redistributable Package
    http://www.microsoft.com/downloads/d...DisplayLang=en
    4. Then your application

    HTH
    <><><><><><><><><><><><><><><><><><>
    <><> REMEMBER,,,,KNOWLEDGE IS POWER <><>
    <><><><><><><><><><><><><><><><><><>

  16. #16

    Thread Starter
    Lively Member adsc's Avatar
    Join Date
    Nov 2002
    Location
    Kuwait
    Posts
    71
    Originally posted by RichardAtherton
    out of interest did yoou have an sql database with yoour application. I am trying to figure out how I distribute my software with an sql database which I have built using the designer. I am almost coming to thhe conclusion that I will hhave to write a program thhat will gnerate the schema for the database table abd views. Surely this cannot be right. Anyone else got a bettter suggestion?
    Hi,
    Yes, I am using SQL database on a server side as back end database, and have no problem.

    I don't understand what do you mean by you need to gnerate the schema for the database table? and why?

    Please explane...

    BR
    <><><><><><><><><><><><><><><><><><>
    <><> REMEMBER,,,,KNOWLEDGE IS POWER <><>
    <><><><><><><><><><><><><><><><><><>

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width