Cinnamon Posted July 14, 2008 Share Posted July 14, 2008 is it me or everytime i click connect with WFC frist thing on status is cannot connecyt HELP!?? Link to comment Share on other sites More sharing options...
Doggy124 Posted July 21, 2008 Share Posted July 21, 2008 is there a way to connect over internet? Link to comment Share on other sites More sharing options...
stiansoftcore Posted August 4, 2008 Share Posted August 4, 2008 Hmm. Yesterday, I tried watching a movie in vlc on my pc, it worked. But today, all I get is a black windows. Help? Link to comment Share on other sites More sharing options...
Dutch Flowers Posted August 20, 2008 Share Posted August 20, 2008 what is the DLDI patch needed for? is there absolutely no way i can install this without it? Link to comment Share on other sites More sharing options...
renkinjutsu Posted September 12, 2008 Share Posted September 12, 2008 has anyone gotten the CTRL or ALT key to work yet? Link to comment Share on other sites More sharing options...
Duerth Posted September 29, 2008 Share Posted September 29, 2008 (edited) Is there any chance ,that I will succeed in using this application via internet if my PC doesnt have a Wi-Fi?I will check anyway ,but im just curious if you already know the answer. (even if it will work the speed will be crappy ,since me ,and my DS will be in Lithuania ,and my PC at my home in Poland) Edited September 29, 2008 by Duerth Link to comment Share on other sites More sharing options...
Komak Posted February 9, 2009 Share Posted February 9, 2009 Haven't checked if anyone's put up a request, but I'm pretty sure this is somewhat unique... I was hoping that you could run the key press events as Joystick emulations and have the server convert them upon entry, or leave them as Joystick presses.  Skip this to save some useless reading:---NOTES:This would allow one to use an app such as Joy2Key to bypass some applications anti-Bot protection which is how your key-presses are being converted. Joy2Key doesn't Just emulate the key-presses, it converts Joysticks to Keyboards, making it VERY simple to make up any control scheme you wanted on your PC. My eventual idea involves "dumbing" down the graphics on several PC games, and attempting to 'play' these games, finding out which ones are viable, and which ones would be a waste of time. Joy2Key also allows for advanced key-presses (pressing A has Effect-1, while Holding R and pressing A has Effect-2), and cuts down on a LOT of coding on your behalf. This allows the DS to have an incredible number of keys compared to what its supposed to have. Not quite useful for full-keyboard assessments, but decent enough for multi-skill video games, or Application quick-commands...---Point being, this would allow more control with the application than is currently possible (including those who want fully customizable controls) as well as remove some limitations on certain Applications (most MMO games). Not to mention that by adding a key->joy option, you could make it so that people don't HAVE to download Joy2Key, but more as a 'Can'... that or just run in the built-in Joystick configurations. Thank you for reading and your considerations. End request-------------------------Begin Advice: To all of you who don't have Wifi systems on your PC's: This application is known as a Virtual Network Connection and was meant to allow a person(you) to control your computer from over an internet-based system. Simple version: If your computer is in any way connected to the same wifi source your DS uses, you can use this home-brew application. EX:DS -> Wifi -> Computer = compatibleDS -> Wifi -> Modem -> Router -> Computer = compatible (recommended)DS -> Wifi -> Modem -> Intranet -> friends modem -> friends computer = compatible (requires advanced moddifications and port forwarding) Advice #2:If you have a slow connection or the reception isnt as fast as you would like, try these steps:1) Get closer to your wifi source2) Slow the screen you dont use down to "Normal" or less (depending on use)3) Don't press a lot of keys too quickly.4) Restart the Server5) Restart the computer  Good luck Link to comment Share on other sites More sharing options...
tlompa4180 Posted February 12, 2009 Share Posted February 12, 2009 none of any win2ds works i dont know how to fiz it and when i ever i open a port and click server then i turn on my ds i enter my ip adderss of my router computer and it says waiting forever please help me Link to comment Share on other sites More sharing options...
Komak Posted February 15, 2009 Share Posted February 15, 2009 This kind of homebrew usually requires a GBAMP v2 or similar card (gba slot) in order to save the data... This exact download has been tested, run, and succesfully controls World of Warcraft. This was done using the R4v1 (bugged spring version with MicroSD) and a GBAMPv2 (half red, half white CF GBA cart). Without the *.gba file in the root directory (meaning D:\ or E:\ etc) this program wont find the file and cant pull memory from it. Check your hardward then report back. Good luck. Its a bit buggy for WoW and theres a huge lack of controls, but it still works none-the less. If i were to name the problems, 1 would be that it almost seams like it converts to 256 and THEN shrinks... converting takes a fraction more time to process... who knows, might not... Also, I understand the controls are designed fore desktop use and not gaming, but for most applications, this homebrew lacks that certain bit of customization. Thirdly, i believe the touch screen can be improvised. Personally, id like a better scroll function, and the option to use a full-screen based touchpad or a mouse-pad based touchpad. To describe this more, the Full-screen method uses a touchpad to click anywhere on the ENTIRE screen converted to 256x192 pixels (ds screen size). A mouse-pad method uses a area click method.it uses the place touched down as a centerpoint, and the new x and y values as movement. Theres also a bug in almost every homebrew ive faced when using the orignal DS and almost any flash card. This bug is found on touch.release methods where the new x/y is close to 180x230 and sometimes 180x20 ... this can be patched by a simple code line checking for last known movement coordinates before a touch.release and the release coordinates and checking the distance. Then add a maximum change distance which will cut out that bug at LEAST 80% of the time. Using a mix c++ code, ill present it: lastX = touchX; //variables (coordinate) lastY = touchY; touch.Get(); // touch press command touchX = touch.X; // touch.X is the returned value touchY = touch.Y; //If pen was released, and distance traveled (x or y) is greater than 15 if (touch.release() && ((abs(touchX-lastX) > 15) || (abs(touchY-lastY) > 15))) { touchX = lastX; touchY = lastY; // reset values } //15 means that you can still move the pointer quickly, but it will cut down on accidental off-screen presses that aren't your fault  I was also wondering if it were possible to use the PC to select certain areas to map to the DS zoom screen... or even a hidden DS screen found when swapping through screen-methods... So far i see Zoom on Top, Zoom on Bottom, Shared Zoom (top, bottom)... adding another shouldn't be too terribly bad right? The idea of this is to locate commonly pressed buttons to easily click. Areas that the user has to retrieve over and over, but doesn't need the zoom to sit there. Little complicated, but just more ideas thrown out there. That, or a customizable Touchscreen savepoints mapped to an ini file would be useful. make a button-based menu that has different mapped areas defined by the user. EX:#Script # (startX,startY,endX,endY)Name,Type (LocX,LocY,Identifier,Var) Zoom = 1; Button = 2; Null = 0; #Button Example (001,001,010,010)StartMenu, Touch (190,2,0,0) #Normal Zoom to Area Example (001,011,010,020)Close, Zoom (1,240,1,4) #Zoom to 1:1 scale Example (011,011,020,020)Zoom Out, Zoom (1,1,1,1) #KeyPress funciton (011,011,020,020)Escape, Keypress (0,0,2,27) #End Simple coding, Reads the button print locations, the text in the Button (not that i didnt actually scale the buttons) would read the type of action when its pressed, and what to do from there. Button Example would run a mouse-press event at 190x2 on the DS screen (translates to roughly the Start button's location) but wouldnt require zooming to that location.Normal Zoom to Area Example zooms to a 4:1 ration close to where the minimize-maximize-close buttons are found. the coordinates arent exact, but your embedded re-alignment should take care of mistakes like that.Zoom to 1:1 scale example would zoom completely out. This can sometimes be handy, more of just an example of what the code COULD do if implemented.KeyPress function would press a key that you constantly press. Not designed to replace the keyboard, more along the lines of making it easier to hit a constantly used button without having to hope you hit the button every time (make a few keys bigger)these buttons would come out looking like this:________________________[st][TR].__[ZO]    ________________________|Using a script like that would cut down on a lot of moving around, cut down on a NEED to use the zoom, and would make zooming to locations a fair bit easier and faster to do. Not to mention make this app actually practical ^.^ Link to comment Share on other sites More sharing options...
tlompa4180 Posted February 19, 2009 Share Posted February 19, 2009 my win2ds oesnt wrok i did every thing it said to do and i got a d-link wireless router and wheni ever i leave to password blank in the server exe or put 1 in it says password rejected i need help Link to comment Share on other sites More sharing options...
phongle123 Posted August 28, 2009 Share Posted August 28, 2009 What do i do when after i TYPE in the IP Address, what do i do with password? Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now