Hello, Anyone got idea about easy way to terminate RDC in windows 7 or Using limited access guest user in windows XP. In Administrator way for WINDOWS XP tscon 0 /dest:console does work to terminate RDC but in windows 7 :thumbsdown: :doh: Cheers, Mohit.
mohit 12
Posts
-
Terminate Remote Desktop Connection in Windows 7 -
Best Alternative of Net-Meeting for Windows 7Hey, Thx for your reply. But yes in Skype you have to register and make account and all that which i do not want my clients to do that, just to make it simpler enter the ip address you want to connect and that's it like a net meeting. Also , I need to share desktop other person should be able to read and write my shared screen so like remote Desktop connection. but problem with RDC is that it logs off the other person and makes blank screen which is no good thx
-
Best Alternative of Net-Meeting for Windows 7Hello All, I need some serious help finding Best optimal alternative solution of netmeeting in windows 7. So Scenario is like this: Windows XP do support Net-Meetings but widows 7 doesn't so Microsoft Informed Customers that Use Remote Desktop, but the problem with Remote Desktop is only that only one-side can be operated that means if I remote control you , you will be automatically logged off and I will get all control of your computer/system. Which i do not prefer,since in business if customer's screen gets blank out while remote controlling customer will be more than angry to see blank screen so what i want to get is something like netmeeting where customer can see what actually we are doing while remote control session.So other option is Microsoft SharePoint Workspace(Groove)but i haven't use it yet. I cannot Use Skype or live messenger because it doesn't look professional and i do not want everyone to download that Skype then create username Id and all that. So If Anyone Out there knows Best optimal alternate solution of Net-meeting for Windows 7. Grab your keyboard and REPLY HERE :D Thank you All for reading this message and Hope you All Reply Me with your best suggestion. Cheers, Mohit.
-
Hosting web server on a device like camera embedded systemOaky I think that will help me to start with. :D thx. Let me give you one simple example. Assume that my device is router (any kind of router) also that is hardware and connected to modem so it does have internet connection. Now when you open that website 192.168.1.2 (or something like that) it asks you for username/PW which will be verified by your router and if u successfully sign in it will let you in and change functionality of that router depending upon security. So I believe that website (192.168.1.2) was hosted by that router and others can access to that website. IF necessary others will be connected to my device with LAN. So yes that’s what I am talking about that’s the thing I want to do on my device, which also supports internet connection, so it’s like hosting web server from my device. So how do I start with that? Make some .exe file for web server and run that on router. Again I do not have good experience with web-based applications and server so forgive me and point me to correct direction if I was off the road in any topic or failed to understand any concept. Thx a lot for your help, Cheers from Canada.
-
Hosting web server on a device like camera embedded systemI wasn't sure if i will use PHP or not, i just posted here because this is somewhat related and i am new to web server hosting . Cheers from Canada.
-
Hosting web server on a device like camera embedded systemthx for your reply, Device will be connected on high-speed internet and it has to be world-wide access. yes i don't actually care about back-up at the moment, i think device runs on some operating system so it will have ip address. and camera was just an example. the system i am talking about is like really big system let's say when pizza delivery guy comes at your place and you pay them by debit/credit so that guy has that device which is connected world-wide and it verifies data of that card. so something similar to that. and yes system is networked and yes it will support protocols not sure about PHP. I just posted this here because this was somewhat related because i still don't know which script i am using to host a web server. I just need to start with basic hosting so it could be any scripting language. Cheers from Canada,
-
Hosting web server on a device like camera embedded systemHello all, I am new to concept of hosting web server on external system not your PC/Laptop. on some kind of external hardware system like camera or any other hardwares which are connected to internet. I want to host server from those system and let other connect to that server using username/password and then they should be able to change functionality of that hardware. Thank you, Cheers from Canada
-
What tools do you use to design?I Agree that's best tool but you always need to convert that in Hard copy as you cannot hand in scanned copy of diagrams in Manual. Cheers
-
What tools do you use to design?If you got money on your pocket..Spend some get IBM Rational design anything you want.Works best,, I've been using that since last 5 years. Cheers from Canada.
-
Best UML Tool for Class DiagramsI managed myself using StarUml and everything worked well so far. seems like that's the only one best open source tool out there in market... but no doubt on using IBM Rational it's best in all way but it's not free :( thx cheers from canada.
-
Search and ReplaceYes seems interesting but Need Help getting it done :(
-
Search and ReplaceIn visual c++. I want to make a compiler code that search for the $ and then again search for the another $ sign and delete anything between those two $ signs and saves new file called anyname thx
-
Best UML Tool for Class DiagramsAny1 got suggestion for Best open source UML tool. thx
-
Compare/Convert Float to Textas i mentioned in previous post those value can be changed so and it may vary from negative to zero and zero to +2.707 E06 so not sure if that would work.
-
Compare/Convert Float to Textfloor will convert 0.099999787 to 0.10 ? and it has to be float value will it work ? thx cheers from canada.
-
Compare/Convert Float to TextI am dealing with float and there is not way i can use DOUBLE for that particular code and my value might be negative so it might return negative value using your code and also b will be always less than a so negative :doh: thx for reply cheers from canada
-
Compare/Convert Float to TextI didn't get your code why would i use epsilon ? and it has to be FLOAT thx for reply. cheers from canada
-
Compare/Convert Float to TextHow am i killing performance, well all i wanted to check is if the other float value is close or 0.10 and that code does check that i cannot use greater or less than since both float can be changed might be >0 or <0 , so rounding off values check if it's close to 0.10 or not because i do not have problem in my math if value if 0.0999978 or 0.10 both will give me same answer since it just checks value and then do not use them for any calculation, i will paste my code later on here and then you can have a look at it and you might be able to give me better suggestion, thx for reply tho cheers from canada.
-
Compare/Convert Float to Textthx all for your support.. nvm it i solved it ..stupid ME ... just added this method: bool classname::isStringEquals(float fNewNumber,float fOldNumber) { CString value1; CString value2; value1.Format( _T("%.4f"), fNewNumber); value2.Format( _T("%.4f"), fOldNumber); if(value1==value2) return true; else return false; cheers from canada
-
Compare/Convert Float to TextI am trying to convert float to text. the reason i am doing this is because the float contains 0.09999987 and i want that variable as 0.10 and then compare it to other float which is initially 0.10000 if anyone have idea how to convert float to text let me know thx, cheers from Canada.