JDaus
Active Members-
Posts
21 -
Joined
-
Last visited
JDaus's Achievements
Seeker (1/7)
1
Reputation
-
Cahkhene25 reacted to a post in a topic:
stdin and stdout with plink.exe (SOLVED)
-
im stuck ... if you can help me out with this, i will help you out with a few beers (or cash ... you decide) bool CheckVideoDriver(bool Box) { typedef BOOL (WINAPI* pEnumDisplayDevices)(PVOID,DWORD,PVOID,DWORD); HDC m_hrootdc=NULL; pEnumDisplayDevices pd=NULL; LPSTR driverName = "mv video hook driver2"; BOOL DriverFound; DEVMODE devmode; FillMemory(&devmode, sizeof(DEVMODE), 0); devmode.dmSize = sizeof(DEVMODE); devmode.dmDriverExtra = 0; BOOL change = EnumDisplaySettings(NULL,ENUM_CURRENT_SETTINGS,&devmode); devmode.dmFields = DM_BITSPERPEL | DM_PELSWIDTH | DM_PELSHEIGHT; HMODULE hUser32=LoadLibrary("USER32"); if (hUser32) pd = (pEnumDisplayDevices)GetProcAddress( hUser32, "EnumDisplayDevicesA"); if (pd) { LPSTR deviceName=NULL; DISPLAY_DEVICE dd; ZeroMemory(&dd, sizeof(dd)); dd.cb = sizeof(dd); devmode.dmDeviceName[0] = '\0'; INT devNum = 0; BOOL result; DriverFound=false; while (result = (*pd)(NULL,devNum, &dd,0)) { if (strcmp((const char *)&dd.DeviceString[0], driverName) == 0) { DriverFound=true; break; } devNum++; } if (DriverFound) { } else if(Box) MessageBox(NULL,"Driver not found: Perhaps you need to reboot after install","driver info: required version 1.22",0); } if (hUser32) FreeLibrary(hUser32); return false; } ive naturally googled this, with no luck. if you can point me in the right direction, i should be able to figure out the rest (hopefully) ...
-
SVN has been updated ... works great with windows vista, working on better implementation in windows 7.
-
I have tried several "Webcam capture" applications, but have not had any luck with getting my image capturing device to work with them. infact all of them give my system a BSOD (Blue Screen Of Death) I can get these applications working with my logitech webcam, but using the "USV 2861 Device", it just BSODs no matter what i try. have tried the following with the same results: 4 Webcams Program Webcam example and several others, all with the same results. the capture device works as expected in "Cyberlink PowerDirector 6" (cam free with the device). but i really would like to get this working with a capture card, as i often work with CCTV cameras. what i eventually want to create is an application that can capture the CCTV cameras, with options to control PTZ's and other features (like capture and email, capture and upload) ... and anything else i need in the future. can anyone recomend a capture card (USB only) that works with these applications ??? or better, help me get what i have working ... thanks in advance P.S. I will (of course) publish the final application for use by others ...
-
did you find a way of getting your problems solved ??? i have had a crack at getting the webcams to close, but have had no luck.
-
looks like your trying to compile the source with the latest autoit ... there is an OPT that turns off require declare variables ... but i just can't remmember what it is at this point in time ... hope this points you in the right direction
-
Beta 0.2 was released some time back with 0.3 RC in testing at the moment. if you want to help test, PM me for details
-
Beta 0.2 was released some time back with 0.3 RC in testing at the moment. if you want to help test, PM me for details
-
STDOUT & STDERR problems with latest autoit version
JDaus replied to JDaus's topic in AutoIt General Help and Support
thanks monoceres for the link and info, but i already use while loops to "peek" at the data and read if data exists ... after further investigation, i have found that the problem is the if statement that i use to "peek" at the data ... this doesn't work with the new way of reading and writing ... i have found a new way of doing it ... now to just implement in VNC2Me ... -
Hi all ... I have had a few scripts working with earlier versions of autoit, but when i installed the latest version and compiled the scripts, all stdout & sdterr reading stopped (not sure about stdin, as i cannot see output) one of my scripts is on the forums (here STDOUT & STDERR from plink.exe) has anyone else had these problems ... i have spent days trying to find the problem, and it just eludes me ...
-
_Service_UDF v4 : Build your own service with autoit code
JDaus replied to arcker's topic in AutoIt Example Scripts
@arcker ... good work, thanks for all the work you have done ... this will allow me to start a plink.exe at startup, meaning i will be able to run VNC over ssh at startup ... good work ... keep it up did you intergrate the registry stuff (you mentioned in a previous post) into the _Service_Create() func ??? or is it something we need to do by hand ??? keep up the good work, and i look forward to any advancements you may have in the future ... -
VNC2Me Beta released a week ago ready-to-roll packages ONLY at this stage - roll-your-own packages released when first (non-beta) version released. considering re-write in C# for security reasons, but hesitant to do this at moment. you need to register to download (registration requirement will be lifted when beta trial finishes) i welcome thoughts / testers / flames by members of this forum ...
-
thanks for the link, but i wanted to incorporate some of the features into my own apps i just noticed that the author is still active, perhaps he still has a copy (fingers crossed)
-
dam ... would have liked to have had a look at this, but the file is no longer available.
-
So do I, i setup something similar for an old employer, then i got to thinking that it hasn't been done (and remain open-source) before ... there are other apps out there that do similar, but are not open source (anymore) SVN updated with heaps of improvments and bug fixes ... (too many to list here) Website has forum, FAQ and more to come (flyspray etc)
-
VNC2Me is an Autoit Application that allows Secure remote desktop sharing. VNC2Me is essentually a wrapper for SSH (via plink) and VNC (via UVNC SC), which creates a secure tunnel from both the "sharer" and "viewer" to an internet SSH server. The application is GPL, and help is greatly appreciated (especially from the autoit community on my crappy coding) VNC2Me is currently in Beta 0.2 release and should be considered usable and stable at this stage. Beta 0.2 was a complete rewrite of the core code (most functions had some tweeking) Beta 0.2 introduced Translation friendly GUI (translation is done through INI settings - available for all MS supported languages) Beta 0.2.1 introduces INET update checking (turn off in INI). Beta 0.2.1 moves language settings and translations to seperate INI. Beta 0.3 will introduce UVNC SC (direct connection) capabilities Beta 0.3 will introduce collaboration server (allows multiple viewers on one server) with options for view-only access or full VNC2Me Homepage VNC2Me Source Code (SVN repository)