Results 1 to 16 of 16

Thread: Cybercafe Management Software...

  1. #1

    Thread Starter
    New Member kilx's Avatar
    Join Date
    May 2002
    Posts
    9

    Lightbulb Cybercafe Management Software...

    hello everybody!..

    err.. i need your suggestion to develop a cybercafe management software in VB.

    it's ok if all my workstation is win95/98 but i have some w/station using win XP.. (i thought in XP we can't disable Task Keys right..!)

    is there any way i can disable Task Keys in XP or something else that give user no permission to close my program..

    btw, my software is a client-server.. admin in 1 computer control all the workstation in the cybercafe...


    ...sorry for my broken english.. it's not my mother language...
    Last edited by kilx; May 26th, 2002 at 12:32 PM.

  2. #2
    Fanatic Member 007shahid's Avatar
    Join Date
    Feb 2001
    Posts
    562
    I know you can disable task bar by giving this API.
    VB Code:
    1. Private Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any, ByVal fuWinIni As Long) As Long
    2.  
    3. SystemParametersInfo 97, 1&, 0&, 0
    But I am not sure if it works in XP.
    Try this. It should work
    VB Code:
    1. Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
    2. If UnloadMode = vbFormCode Then Exit Sub
    3. Cancel = 1
    4. frmWarning.Show 'A warning form (dialog)
    5. 'Dont give a message box here telling the user,
    6. ' not to use the Task bar to close the program
    7. 'Windows won't get a response if the Message Box is not closed
    8. 'It will then show the End Task Window
    9. 'Instead show it through another form
    10. 'Clost that form through a timer with interval as 5000
    11. End Sub
    THE TIME/WEATHER IS
    Don't know how to use APIs or have problem with them,
    Download API-Guide & API-Viewer from http://www.allapi.net

  3. #3

    Thread Starter
    New Member kilx's Avatar
    Join Date
    May 2002
    Posts
    9

    Unhappy did i mention it's a winXP/2000..??!

    did i already mentioned that my w/station is winXP/2000 instead of win9x only..

    i just want some idea..??

    how to disable people to close my program by any way in XP...

    ok thanx a lot..!!~

  4. #4

    Thread Starter
    New Member kilx's Avatar
    Join Date
    May 2002
    Posts
    9

    Post project overview.!

    this is what i need for this projex..:

    host/server :
    • listening, accept, establish connection on certain port of TCP/IP
    • different user level with different user rights (e.g: Administrator, OPerator, Owner, etc..)
    • can lock/unlock w/station..
    • access database. (w/station IP, cybercafe rate, product/service charge, etc.. )
    • send alarm message to client. (overlimit usage, etc..)
    • calculate surfing + product charge. (e.g: 60min = $2.50, 90min = $3.70, etc..)
    • any suggestion..???


    w/station / client :
    • connect to server on certain port.
    • accept instruction from server. (lock/unlock/message/etc..)
    • user cannot close this program by any way... (ctrl+alt+del, etc...)
    • any suggestion...???


    currently there is a lot of s/ware that can do what i want.. but i have an enthusiasm to develop my very own (with you guys!!) software..

    maybe you can look some example from this website : www.mol.com and download that free 'MOL Cybercafes MAnagement Software' for reference of what i want to do... (you need to register 1st to d/load that stuff.. )

    i've doing some experimental of my project now but it's not working on NT (win 2000/XP)..

    thx!
    Last edited by kilx; Jun 5th, 2002 at 05:44 AM.

  5. #5
    Lively Member
    Join Date
    Sep 2001
    Posts
    122
    hi there.

    I am deputy manager for a 12 pc cyber cafe in england. We used to use a product called web tube, which had some nice features, but found it a bit fiddly and unstable. I would be more than willing to help you with testing and ideas for this project, but I am unfortunately unable to offer any help with the coding.

    If you would like to discuss this further, please email me on [email protected]

    Regards
    Paul
    -------------------------------------

    ICQ: 44712087 (evenings only)
    Email: [email protected]

  6. #6

    Thread Starter
    New Member kilx's Avatar
    Join Date
    May 2002
    Posts
    9

    Talking

    Originally posted by A[L]C
    hi there.

    I am deputy manager for a 12 pc cyber cafe in england. We used to use a product called web tube, which had some nice features, but found it a bit fiddly and unstable. I would be more than willing to help you with testing and ideas for this project, but I am unfortunately unable to offer any help with the coding.

    If you would like to discuss this further, please email me on [email protected]

    Regards
    Paul
    is that program F.O.C ..?
    is that program works on winXP/2k..?

    thanx for participating.. but...
    i need more people..!

    any effort will do..

    thanx!
    I come in peace..!?

  7. #7
    Lively Member
    Join Date
    Sep 2001
    Posts
    122
    Originally posted by kilx


    is that program F.O.C ..?
    is that program works on winXP/2k..?

    thanx for participating.. but...
    i need more people..!

    any effort will do..

    thanx!
    not foc
    yes it works on 2k
    -------------------------------------

    ICQ: 44712087 (evenings only)
    Email: [email protected]

  8. #8
    Addicted Member WAcKeD's Avatar
    Join Date
    Aug 2000
    Posts
    211
    I'll help out. I'm good with winsock networking. Let me know if you need me.

    Email: [email protected]
    Thankz,
    WAcKeD

  9. #9
    Your Ad Here! Edneeis's Avatar
    Join Date
    Feb 2000
    Location
    Moreno Valley, CA (SoCal)
    Posts
    7,339
    If it is a client/server setup then the server could be alerted when a client disconnects then if the user did shut it off you'd know as soon as they did it.

  10. #10
    I wonder how many charact
    Join Date
    Feb 2001
    Location
    Savage, MN, USA
    Posts
    3,704
    As far as disabling task manager from regular users....
    you could either set them manually one each machine, or by
    code through api calls...


    http://www.winguides.com/registry/display.php/163/

  11. #11

    Thread Starter
    New Member kilx's Avatar
    Join Date
    May 2002
    Posts
    9

    thanx

    thanx a lot for all ideas/support/etc...

    i really want this project happening.. and i hope it will be open source project for all..

    1 more thing, as a VB newbie.. i dunno how to program vb to load in a 'system tray'.. (not taskbar).. how to do that?

    and can some1 please show me how to put everything in database...

    Last edited by kilx; Jul 14th, 2002 at 10:37 PM.
    I come in peace..!?

  12. #12
    Hi,

    I am creating a new filesharing client called Syfonic Music Community.

    This client will be much larger that Napster, Kazaa etc.

    It also is going to be written in the Visual Basic 6 language.
    I am looking for Visual Basic programmers to help me with this client, so if you are in any way interested in helping me with this client please mailto [email protected]



    -Chase
    Owner of Syfonic Music Community
    "UNITED WE SHARE"

  13. #13
    PowerPoster
    Join Date
    Aug 2000
    Location
    India
    Posts
    2,288
    First try getting the basics of winsock. there is a good tutorial at www.vbworld.com. This is very neccessary for an this type of application. Once you complete that, come back here and we can discuss more about your project.

  14. #14
    New Member
    Join Date
    Jul 2002
    Location
    Mallorca, Spain
    Posts
    9

    Unhappy

    you can't disable task manager through vb code, it's imposible, but you CAN do it with c/c++

  15. #15
    PowerPoster
    Join Date
    Aug 2000
    Location
    India
    Posts
    2,288
    You can disable Taskmanager in Win9X/WinNT. In Win(x you can do it throug an api call called SystemsParameterInfo. Check for an example on www.vbforums.com or www.vbworld.com. This works in Win9X. For WinNT, you need to set some registry settings which you can find at www.winguides.com/registry .

  16. #16
    Hyperactive Member Davadvice's Avatar
    Join Date
    Apr 2007
    Location
    Glasgow (Scotland)
    Posts
    440

    Re: Cybercafe Management Software...

    spam City in here i think.

    i would remove the mail address from the above posts as you will get a great deal more Mail than you would like

    davdi

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