Windows 98 & .NET problem

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • kidzero

    Windows 98 & .NET problem

    Hello,

    I have a problem running my application on windows 98.
    My application is written using C# . NET

    On some machines with windows 98 program works normaly and on some machines
    with windows 98 it is not. Simply program can not start.(Exceptio n not
    handled).
    On both systems i have installed .NET 1.1 and MSDAC 2.7.
    What are nesessery updates for windows 98 to run .NET application ? Or maby
    something else ?
    IE 6 is also installed.

    Please heeeelp !




  • Gary van der Merwe

    #2
    Re: Windows 98 & .NET problem

    Hi Kidzero

    What is the Excption.

    Gary
    P.S. Please fix the time on you computer. Because your clock is fast, your
    post remains at the top of the newsgroup.

    "kidzero" <kidzero@takas. lt> wrote in message
    news:e5y6usvkDH A.744@tk2msftng p13.phx.gbl...[color=blue]
    > Hello,
    >
    > I have a problem running my application on windows 98.
    > My application is written using C# . NET
    >
    > On some machines with windows 98 program works normaly and on some[/color]
    machines[color=blue]
    > with windows 98 it is not. Simply program can not start.(Exceptio n not
    > handled).
    > On both systems i have installed .NET 1.1 and MSDAC 2.7.
    > What are nesessery updates for windows 98 to run .NET application ? Or[/color]
    maby[color=blue]
    > something else ?
    > IE 6 is also installed.
    >
    > Please heeeelp !
    >
    >
    >
    >[/color]


    Comment

    • Tim Anderson

      #3
      Re: Windows 98 &amp; .NET problem

      "kidzero" <kidzero@takas. lt> wrote in message
      news:e5y6usvkDH A.744@tk2msftng p13.phx.gbl...[color=blue]
      > Hello,[/color]
      [color=blue]
      > On some machines with windows 98 program works normaly and on some[/color]
      machines[color=blue]
      > with windows 98 it is not. Simply program can not start.(Exceptio n not
      > handled).[/color]

      You need to find out what the exception is. Ideas:

      - Set up an exception handler which reports the stack trace (StackTrace
      property). Use a debug build.

      - Set up remote debugging, and step through the code in VS.Net to find out
      where the error occurs

      If you get an error before your app starts, it could because of a missing
      assembly. Using any third-party libraries?

      Tim


      Comment

      • Jason Smith

        #4
        Re: Windows 98 &amp; .NET problem

        Unlike Java, .NET does not promise complete insulation from differences in
        operating systems. There are quite a few things that you can do in Windows
        2000 from .NET that are not supported in Windows 98. Some of them are
        easily recognized, such as lack of support for services. Others are more
        difficult to deal with - can't think of a specific one right now, but they
        can get very subtle. You need stack traces. Make sure to move your Debug
        file (*.PDB) over to the 98 machine. This will add the line numbers.

        "kidzero" <kidzero@takas. lt> wrote in message
        news:e5y6usvkDH A.744@tk2msftng p13.phx.gbl...[color=blue]
        > Hello,
        >
        > I have a problem running my application on windows 98.
        > My application is written using C# . NET
        >
        > On some machines with windows 98 program works normaly and on some[/color]
        machines[color=blue]
        > with windows 98 it is not. Simply program can not start.(Exceptio n not
        > handled).
        > On both systems i have installed .NET 1.1 and MSDAC 2.7.
        > What are nesessery updates for windows 98 to run .NET application ? Or[/color]
        maby[color=blue]
        > something else ?
        > IE 6 is also installed.
        >
        > Please heeeelp !
        >
        >
        >
        >[/color]


        Comment

        • kidzero

          #5
          Re: Windows 98 &amp; .NET problem

          Thank you for answers.

          Actualy o found what was wrong. In my setup project some system files were
          included( my main assembly dependecies) and that caused to crash some
          windows 98 machines. After i excluded system files program started to work
          normaly :)

          Ha about my computer clock :))
          I think my clock is ok, showing Lithuania time :), but timezone was set to
          US&Canada ;))))))


          "kidzero" <kidzero@takas. lt> wrote in message
          news:e5y6usvkDH A.744@tk2msftng p13.phx.gbl...[color=blue]
          > Hello,
          >
          > I have a problem running my application on windows 98.
          > My application is written using C# . NET
          >
          > On some machines with windows 98 program works normaly and on some[/color]
          machines[color=blue]
          > with windows 98 it is not. Simply program can not start.(Exceptio n not
          > handled).
          > On both systems i have installed .NET 1.1 and MSDAC 2.7.
          > What are nesessery updates for windows 98 to run .NET application ? Or[/color]
          maby[color=blue]
          > something else ?
          > IE 6 is also installed.
          >
          > Please heeeelp !
          >
          >
          >
          >[/color]


          Comment

          • Ignacio Machin \( .NET/ C#  MVP \)

            #6
            Re: Windows 98 &amp; .NET problem

            Hi Jason,

            "Jason Smith" <jason@nospam.c om> wrote in message
            news:ewxn$m0kDH A.372@TK2MSFTNG P11.phx.gbl...[color=blue]
            > Unlike Java, .NET does not promise complete insulation from differences in
            > operating systems. There are quite a few things that you can do in[/color]
            Windows[color=blue]
            > 2000 from .NET that are not supported in Windows 98. Some of them are
            > easily recognized, such as lack of support for services. Others are more
            > difficult to deal with - can't think of a specific one right now,[/color]

            FileSystemWatch er is a good example.

            Cheers,

            --
            Ignacio Machin,
            ignacio.machin AT dot.state.fl.us
            Florida Department Of Transportation


            Comment

            Working...