Re: Cin Keyboard inpout to const char* Programming Software Development by Salem > Cin Keyboard inpout to const char* You want to "INPUT" to … PHP help in creating profile thingy Programming Web Development by loyaltrekie …. Curently i was useing an html form to have people inpout data (name,age, type of stuff) via radio buttons drop… How to simulate mouse and keyboard input Programming Software Development by TailsTheFox Hello, I am looking to simulate keyboard inpout for a computer in general, not just for a window. I was allready told how to simulate keyboard strokes in a certan window, although I just want to simulate them as they might be in general. As in program says "X" and whatever place the text cursor happens to be prints "X". Re: Programming Christmas Lights Programming Software Development by jakeiscrazy ok two start i have the dll file inpout.dll. now im not using a micro controller. What i hope to do is something like [URL="http://www.arunet.co.uk/tkboyd/ele1pp2.htm"]this[/URL] Re: VB hardware appli Programming Software Development by atsirk … DLL that we used on LED and 7segment applications were inpout.dll . can we use the same dll or not… Re: VB hardware appli Programming Software Development by atsirk … here.. this forum is just for VB.. hehehe.. ;)[/QUOTE] the inpout DLL that we used is working for 7segment and LED… Re: Writing and reading array to/from text file Programming Software Development by 10Pints …; Colm. getline gets a whole line, why not separate the inpout items items with a space (whitespace) and use `<<… Re: user's multiple input trouble Programming Software Development by Derek Elensar … after typing your name, the '\n' character stays in the inpout stream, causing all of the other questions to be skipped… Re: Backtrack Terminal in Visual basic Hardware and Software Linux and Unix by Matigo … on Windows only, It actually have got two textboxes, The inpout and the output Now wanted to do the same as… Re: Logical Circuit Programming Software Development by maxbummber Yes, I understand what you're saying about the inpout and output . As far as the gates methods are concerned, … Cin Keyboard inpout to const char* Programming Software Development by losh177 hi, i'm having problems with my homework. I have to create a Base classes from which 2 classes have to be derived, then i have to write a program to test their function. The problem that i'm having is that i'm taking the input from the keyboard and passing it to a function in the base class. I dont get any error/warning messages but when i run … Re: Cin Keyboard inpout to const char* Programming Software Development by mvmalderen [LIST=1] [*]Is it only when you start your program in debugging mode that you're encountering this problem? [*]Is your program working correctly outside the debug-mode? [/LIST] Re: Cin Keyboard inpout to const char* Programming Software Development by Narue [psychic debugging] [url=http://www.daniweb.com/forums/thread90228.html]This[/url] describes your problem and shows ways to get around it without changing your input logic. [/psychic debugging] Re: Cin Keyboard inpout to const char* Programming Software Development by losh177 This is what i've changed so far:[LIST=1] [*]In the Library.cpp the #include <string.h> has been removed as this was from a previous exercise [*]"const char *" for just "char *" [*]No global variables [*]Void change to Int for the main() [/LIST] I apologize for not specifying before but we are not allow to use the … Re: Cin Keyboard inpout to const char* Programming Software Development by losh177 i deserve someone to slap me on the face because of this....where i use strcpy_s, the length that i'm declaring is different to the length that i assigned to the char* Re: PHP help in creating profile thingy Programming Web Development by Troy Well, there is a lot to cover here, and a lot you need to learn obviously. :) I will start, and I'm sure others will pitch in as well. Some things you need to clarify: [list=1] [*]Do you have access to and know how to use phpMyAdmin to administrate your MySQL database? [*]Do you know SQL? That is, do you know how to write SQL queries to SELECT, … Re: PHP help in creating profile thingy Programming Web Development by loyaltrekie Do you have access to and know how to use phpMyAdmin to administrate your MySQL database? [COLOR=Blue]I do a little bit but i got a friend for sure that can help me with that if i need any extra help[/COLOR] Do you know SQL? That is, do you know how to write SQL queries to SELECT, INSERT, UPDATE, and DELETE records? [COLOR=Blue]The amount … Re: PHP help in creating profile thingy Programming Web Development by Troy If you want some personal tutoring, try posting in Daniweb's Web Scripting Job Offers forum. [url="http://www.daniweb.com/techtalkforums/forum94.html"]http://www.daniweb.com/techtalkforums/forum94.html[/url] I charge $25/hour for basic programming tutoring. I usually use MSN Voice chat and Windows Remote Assistance so I can show you on … Re: PHP help in creating profile thingy Programming Web Development by Toxikr3 Hi, I am sorry to bump this post, I don't know how old it is. I need help with this type of thing. I am working on something very similar. This is what I have done so far: I have a database(MYSql) I am currently working on a login and register system, and it is nearly finished. I have a main page of my site working. What I need I need to… Re: How to simulate mouse and keyboard input Programming Software Development by Ancient Dragon There is no "general" way to do it because it is operating system specific. C and C++ do not themselves have direct support for keyboards and mice. You could use ncurses which has been ported to both MS-DOS and *nix (there is not MS-Windows gui version of it). Re: How to simulate mouse and keyboard input Programming Software Development by pseudorandom21 If you're using Windows you will probably want to use "SendInput" in the Windows API