473,378 Members | 1,369 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,378 software developers and data experts.

Modal App, that will freeze Windows?

Hi

Hope you guys can help me with this?

I live in a house with 10 people.In the beginning wehn there were only
two people, I gave them my password for the use of my pc.

But since I got Internet at my home, everybody thinks its fun to use my
pc.

I cant change my password, cause I have vnp connection to my work's
domain.

This is my idea:

Write a application and throw it in startup.
This application will be modal and will ask for a username and
password, when it is correct, they will only have access to internet
explorer.I will keep a log file in the background, that will give me
the time of each user, so that i can charge them on the end of the
month.

But if I can only start with n modal form with hardcoded Password, that
will freeze windows, it will be ok.But seems like you have to have a
parent for a modal form, witch means it will only be modal to my
application(Parent).I want windows to be the parent

Please help me if you can?

Thanks for your time

Feb 6 '06 #1
5 2046
Quite honestly, change your password. Give everyone else their own
accounts and limit access through NTFS permissions.

On top of that, changing your password locally should not change your
settings for your VPN connection. The credentials are stored, not passed
through by the currently logged in user (for the VPN client in Windows, that
is), you just have to make sure that the credentials are saved for only you.

Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
<ja********@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Hi

Hope you guys can help me with this?

I live in a house with 10 people.In the beginning wehn there were only
two people, I gave them my password for the use of my pc.

But since I got Internet at my home, everybody thinks its fun to use my
pc.

I cant change my password, cause I have vnp connection to my work's
domain.

This is my idea:

Write a application and throw it in startup.
This application will be modal and will ask for a username and
password, when it is correct, they will only have access to internet
explorer.I will keep a log file in the background, that will give me
the time of each user, so that i can charge them on the end of the
month.

But if I can only start with n modal form with hardcoded Password, that
will freeze windows, it will be ok.But seems like you have to have a
parent for a modal form, witch means it will only be modal to my
application(Parent).I want windows to be the parent

Please help me if you can?

Thanks for your time

Feb 6 '06 #2
Hi,

<ja********@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Hi I cant change my password, cause I have vnp connection to my work's
domain.


What one thing has to do with the other?

You can change your windows password and that has no connnection with your
VPN , each vpn settings is independend of each other and of the windows's
credentials.

--
Ignacio Machin,
ignacio.machin AT dot.state.fl.us
Florida Department Of Transportation
Feb 6 '06 #3
> I cant change my password, cause I have vnp connection to my work's
domain.
That does not compute. You are an administrator on that computer. You can
change your machine login password without changing the VPN password.
Believe me, this is a heck of a lot easier than what you propose. Then you
can lock everyone else out.

--
HTH,

Kevin Spencer
Microsoft MVP
..Net Developer
Who is Mighty Abbott?
A twin turret scalawag.

<ja********@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com... Hi

Hope you guys can help me with this?

I live in a house with 10 people.In the beginning wehn there were only
two people, I gave them my password for the use of my pc.

But since I got Internet at my home, everybody thinks its fun to use my
pc.

I cant change my password, cause I have vnp connection to my work's
domain.

This is my idea:

Write a application and throw it in startup.
This application will be modal and will ask for a username and
password, when it is correct, they will only have access to internet
explorer.I will keep a log file in the background, that will give me
the time of each user, so that i can charge them on the end of the
month.

But if I can only start with n modal form with hardcoded Password, that
will freeze windows, it will be ok.But seems like you have to have a
parent for a modal form, witch means it will only be modal to my
application(Parent).I want windows to be the parent

Please help me if you can?

Thanks for your time

Feb 6 '06 #4
Ok, thanks for everyone's help.I've changed my password and you guys
were right.Doesn't seems to affect the domain, but it did with Source
Save and some machines on the domain?

Feb 7 '06 #5
I see the the other guys already gave you the advice that I'd give you. I
just want to make clear that you cannot write a application that stays modal
to the whole system. In normal situation no application can take over the
whole system without this we'll go back to Windows 3.x or earlier era.

If you need to do something like this you better try to fine some
internet-cafe software.
If you want to write one by yourself good start is to look at the GINA
(MSFGina.dll). If you want costumized log on you need to replace the
standard one with costumized version. There are a lot of documents
(including Microsoft's) how to do that. Just google for these words.

I'm not 100% sure, but I don't think this can be done using .NET though.
--

Stoitcho Goutsev (100)
<ja********@gmail.com> wrote in message
news:11*********************@g14g2000cwa.googlegro ups.com...
Hi

Hope you guys can help me with this?

I live in a house with 10 people.In the beginning wehn there were only
two people, I gave them my password for the use of my pc.

But since I got Internet at my home, everybody thinks its fun to use my
pc.

I cant change my password, cause I have vnp connection to my work's
domain.

This is my idea:

Write a application and throw it in startup.
This application will be modal and will ask for a username and
password, when it is correct, they will only have access to internet
explorer.I will keep a log file in the background, that will give me
the time of each user, so that i can charge them on the end of the
month.

But if I can only start with n modal form with hardcoded Password, that
will freeze windows, it will be ok.But seems like you have to have a
parent for a modal form, witch means it will only be modal to my
application(Parent).I want windows to be the parent

Please help me if you can?

Thanks for your time

Feb 7 '06 #6

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: amith | last post by:
Hi, I have a javascript, calendar.js which i use to enable my client to select the date. This calendar pops up on the click of a gif image. But the problem is that this poped up window is not...
0
by: Nonoy of Philippines | last post by:
Hello, guys... I'm just starting to develop web applications and I have this problem regarding Session objects At some parts of my application, I open modal dialog window which also opens...
3
by: Andrew | last post by:
I get a Null Reference Exception if I close a non-modal dialog (that is, a form opened with Show()) when a selection is made from a ComboBox. The error message refers to Unsafe Native Methods, but...
8
by: Stephen Rice | last post by:
Hi, I have a periodic problem which I am having a real time trying to sort. Background: An MDI VB app with a DB on SQL 2000. I have wrapped all the DB access into an object which spawns a...
23
by: Chukkalove | last post by:
Im sorry, I dont know the correct description for a hierarchy of parent and child forms. I have a main form that opens a child form modally. This child form in turn opens it's own child form...
2
by: Mike | last post by:
Hi, I'm having a problem with modal forms on windows. I've written a very short test program, with a main window and a form called from the main window. The form is set to modal with...
4
by: John Kotuby | last post by:
Hi all... I am bulding an application and wish to use custom Modal dialog windows. According to a couple of recent articles I have seen, the newer Mozilla browsers (actually I think they said...
2
by: =?Utf-8?B?TmF0aGFuIFdpZWdtYW4=?= | last post by:
Hi, I am wondering why the .NET Framework is quite different from Win32 API when it comes to displaying system modal message boxes. Consider the four following types of system modal message...
3
by: aagarwal8 | last post by:
Hi, I have a main form, which i use to open secondary forms. From the secondary form i need to open a Modal Window in such a way that, my secondary form is blocked, but i can still access my...
1
by: CloudSolutions | last post by:
Introduction: For many beginners and individual users, requiring a credit card and email registration may pose a barrier when starting to use cloud servers. However, some cloud server providers now...
0
by: Faith0G | last post by:
I am starting a new it consulting business and it's been a while since I setup a new website. Is wordpress still the best web based software for hosting a 5 page website? The webpages will be...
0
by: ryjfgjl | last post by:
In our work, we often need to import Excel data into databases (such as MySQL, SQL Server, Oracle) for data analysis and processing. Usually, we use database tools like Navicat or the Excel import...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.