I am not new to programming, but I am new to VBA and still kind of a rookie with Access 2002. I am working with a table (oh yeah, I’m still learning the VBA/Access lingo – if anything in this post looks really weird I am probably calling it the wrong thing). The table holds info about the...
I don't know of any simple way to get data from the keyboard, but this is what I always do:
InputStreamReader isr = new InputStreamReader(System.in);
BufferedReader stdin = new BufferedReader(isr);
Without gettting too technical, the first line converts a byte stream into a character stream...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.