Results 1 to 23 of 23

Thread: how does win nt work?

  1. #1

    Thread Starter
    Member
    Join Date
    Feb 2001
    Posts
    52

    Exclamation how does win nt work?



    hi all
    i need to know how windows nt work..
    when can u say that it is windows nt?
    if a couple of m/c are running win 98 and are connected to lan then is it win nt?



    thanks,
    lxs
    lxs

  2. #2
    PowerPoster
    Join Date
    Jul 1999
    Posts
    5,923
    what?????????????

    that makes no sense
    Last edited by chrisjk; Jul 7th, 2001 at 10:39 AM.

  3. #3
    chenko
    Guest
    WinNT is another windows OS

  4. #4
    denniswrenn
    Guest
    Hmm... I wonder when I've downloaded 2,000 MB if I'll have Win2k rather than 98 j/k

  5. #5
    Addicted Member Xenonic_Rob's Avatar
    Join Date
    Jun 2000
    Location
    England, UK
    Posts
    213
    Come on guys - I'm sure you were once full of questions and not understanding how things work.

    Windows NT is an operating system, like Windows Me, Windows 98, Windows 95, Windows 3.1 etc. The difference with NT is, it's for servers. So the individual workstations are connected to the main server, running Windows NT. You can get WinNT Workstation, a version of NT for the workstations themselves, but I think (though I don't know) that most businesses use Win98 connected to the server.

    Does that answer your question?

    Rob Wright
    E-mail: [email protected]
    Website: http://www.xenonic.com
    The First Member of Honeybee's Club
    Favourite words: Zugzwang and Empiric

  6. #6

    Thread Starter
    Member
    Join Date
    Feb 2001
    Posts
    52

    how does win nt work

    hi,

    thanks for ur reply..but it hardly answers my q...
    what i want to know is that..
    if in a lab.. the students dont hav acess to servers..but htey work on win 98 that's connected to lan..how do u know if its a win nt ?

    the reason i ask is that api calls for win nt dont work there..now does that mean that api's r ment to run on server of win nt..or what..

    THATS MY PROBLEM
    thanks,
    lxs
    lxs

  7. #7
    Frenzied Member Skitchen8's Avatar
    Join Date
    Feb 2001
    Location
    Binghamotn, NY
    Posts
    1,943

    Re: how does win nt work

    Originally posted by lxs
    hi,

    thanks for ur reply..but it hardly answers my q...
    what i want to know is that..
    if in a lab.. the students dont hav acess to servers..but htey work on win 98 that's connected to lan..how do u know if its a win nt ?

    the reason i ask is that api calls for win nt dont work there..now does that mean that api's r ment to run on server of win nt..or what..

    THATS MY PROBLEM
    thanks,
    lxs
    a thing can not be a win nt, win NT is another (sh*tty) OS from microsoft. i don't know much about api, but the nt api calls should only work on computers that have nt installed
    Government is another way to say better…than…you.
    It’s like ice but no pick, a murder charge that won’t stick,
    it’s like a whole other world where you can smell the food,
    but you can’t touch the silverware.
    Huh, what luck. Fascism you can vote for.
    Humph, isn’t that sweet?
    And we’re all gonna die some day, because that’s the American way
    -Stone Sour

  8. #8
    Addicted Member Xenonic_Rob's Avatar
    Join Date
    Jun 2000
    Location
    England, UK
    Posts
    213
    Well... if you app is running on the workstations (running Win98) then you'll only be able to use Win98 API calls. Even if the app is STORED on the server (user areas and the like), it will be still running on the Win98 OS of the workstation. If you run the app on the server, THRU NT, then you'll be able to use WinNT API calls.

    Answer your question?

    Rob Wright
    E-mail: [email protected]
    Website: http://www.xenonic.com
    The First Member of Honeybee's Club
    Favourite words: Zugzwang and Empiric

  9. #9

    Thread Starter
    Member
    Join Date
    Feb 2001
    Posts
    52

    how does win nt work


    hi,
    yep that does answer my question..

    call me dumb but here goes..

    so if i got it right ..there is no way telling that the os is a win nt from a client ?

    is it possible that pc's on lan can run win 98 and still hav nothing to do with win nt?
    thanks,
    lxs
    Last edited by lxs; Jul 8th, 2001 at 08:15 AM.
    lxs

  10. #10
    Addicted Member Xenonic_Rob's Avatar
    Join Date
    Jun 2000
    Location
    England, UK
    Posts
    213
    That's not what I'm saying. There are ways to tell what OS they've got thru VB code, I just don't have them handy at the moment. So if you liked, you could run two sets of coding, depending on whether your prog was running on the client (Win98) or the server (WinNT).

    As for your second question, I am pretty sure you can run two Win98 clients on a LAN without the need for NT. But I'm not 100% sure - you'd have to ask someone else about that one.

    Hope I've helped

    Rob Wright
    E-mail: [email protected]
    Website: http://www.xenonic.com
    The First Member of Honeybee's Club
    Favourite words: Zugzwang and Empiric

  11. #11
    PowerPoster
    Join Date
    Jul 1999
    Posts
    5,923
    This little handy snippet tells you what OS you've got running. Add a SysInfo control to a form...
    VB Code:
    1. Private Sub Form_Load()
    2.  
    3. Select Case SysInfo1.OSPlatform
    4.     Case 0
    5.         MsgBox "OSPlatform = Unknown 32-Bit Windows"
    6.     Case 1
    7.         MsgBox "OSPlatform = Windows 95"
    8.     Case 2
    9.         MsgBox "OSPlatform = Windows NT"
    10. End Select
    11.  
    12. End Sub

  12. #12

    Thread Starter
    Member
    Join Date
    Feb 2001
    Posts
    52

    Lightbulb how does win nt work

    hi,

    thanks for all the replys

    i got it..
    and the code too..

    regards,
    lxs

  13. #13
    Frenzied Member Skitchen8's Avatar
    Join Date
    Feb 2001
    Location
    Binghamotn, NY
    Posts
    1,943
    so if you wanted you could have 3 different forms for each system, and just have it load the forms on each case
    Government is another way to say better…than…you.
    It’s like ice but no pick, a murder charge that won’t stick,
    it’s like a whole other world where you can smell the food,
    but you can’t touch the silverware.
    Huh, what luck. Fascism you can vote for.
    Humph, isn’t that sweet?
    And we’re all gonna die some day, because that’s the American way
    -Stone Sour

  14. #14

    Thread Starter
    Member
    Join Date
    Feb 2001
    Posts
    52

    Smile how does win nt work

    yep ur right. I never thought of it while working on the lan...but now its like i dont hav access to lan so cant check it out.
    i wanted to know about the win nt without coding cause i was'nt sure of the right answer-which os in lab.Now i hav no way to chek it...and hav given up on it.
    thanks,

    lxs

  15. #15
    Fanatic Member InvisibleDuncan's Avatar
    Join Date
    May 2001
    Location
    Eating jam.
    Posts
    819

    Hmmmm...

    Is it just me, or are there less jokes in here than in most Chit-Chat threads...?
    Indecisiveness is the key to flexibility.

    www.mangojacks.com

  16. #16
    Addicted Member Guru's Avatar
    Join Date
    May 2000
    Location
    sulking in the cupboard under the stairs
    Posts
    237

    Re: Hmmmm...

    Originally posted by InvisibleDuncan
    Is it just me, or are there less jokes in here than in most Chit-Chat threads...?
    Yeah!
    this is definatly not a chit chat question

  17. #17
    Hyperactive Member tumblingdown's Avatar
    Join Date
    Mar 2000
    Posts
    362

    Re: Re: how does win nt work

    Originally posted by Skitchen8


    ...win NT is another (sh*tty) OS from microsoft. i don't know much about anything, but...

    stfu.




    td.
    "One logical slip and an entire scientific edifice comes tumbling down." - Robert M. Pirsig


    [email protected]

    "but if Einstein is right and God is in the details, reality requires that we sometimes get religion." - Scott Meyers.

  18. #18
    scoutt
    Guest
    my guess would be that since you are in a lab environment that for security reasons the server is running nt or 2000. and most business's are switching over to 2000.

  19. #19
    Frenzied Member
    Join Date
    Feb 2001
    Posts
    1,140

    Re: how does win nt work?

    Originally posted by lxs


    hi all
    i need to know how windows nt work..
    when can u say that it is windows nt?
    if a couple of m/c are running win 98 and are connected to lan then is it win nt?



    thanks,
    lxs
    Ah, the smell of job security. *cringe*

    My problem is not how naive (or ludicrious) his question is, but that he aggrivates his poor use of English with poor syntax and grammar. I know my French is poor, so when I dare write any French, you better believe I'm going to include every capital, every puncuation, cross every t and dot every i.

    What in the hell is "m/c"?

    Gracious Rewrite of Post to Appease the Editor in Me
    Hello, everyone [Why use slang when you can't get it right?]

    I need to know how Windows NT works. When can you say that [the OS] is Windows NT? If a couple of machines are running Win98 and are connected to a LAN, then is [the machine running] WinNT?
    I tried to resolve any ambigious antecedents.
    Travis, Kung Foo Journeyman
    As always, RTFM.

    WWW Standards: HTML 4.01, CSS Level 2, ECMA 262 Bindings to DOM Level 1, JavaScript 1.3 Guide and Reference
    Perl: Learn Perl, Llama, Camel, Cookbook, Perl Monks, Perl Mongers, O'Reilly's Perl.com, ActiveState, CPAN, TPJ, and use Perl;
    YBMS, but Mozilla doesn't.

  20. #20
    denniswrenn
    Guest
    People are going to start making fun of you if you keep correcting everybody like that... Hmmm.. maybe if they start on you, they'll stop on me... carry on

  21. #21
    scoutt
    Guest
    I don't think that will ever happen Dennis

    but it is wishful thinking

  22. #22
    Frenzied Member
    Join Date
    Feb 2001
    Posts
    1,140
    Originally posted by denniswrenn
    People are going to start making fun of you if you keep correcting everybody like that... Hmmm.. maybe if they start on you, they'll stop on me... carry on
    I think they'll start correcting me, especially since I never use a spell checker.
    Travis, Kung Foo Journeyman
    As always, RTFM.

    WWW Standards: HTML 4.01, CSS Level 2, ECMA 262 Bindings to DOM Level 1, JavaScript 1.3 Guide and Reference
    Perl: Learn Perl, Llama, Camel, Cookbook, Perl Monks, Perl Mongers, O'Reilly's Perl.com, ActiveState, CPAN, TPJ, and use Perl;
    YBMS, but Mozilla doesn't.

  23. #23
    chenko
    Guest
    Originally posted by Xenonic_Rob
    As for your second question, I am pretty sure you can run two Win98 clients on a LAN without the need for NT. But I'm not 100% sure - you'd have to ask someone else about that one.
    100% yes!!

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