Forum: VB.NET Jul 23rd, 2008 |
| Replies: 2 Views: 600 for i = 0 to 100
me.top -= 1
next |
Forum: VB.NET Jul 21st, 2008 |
| Replies: 1 Views: 2,032 I am having trouble defining the get/set for an array in a class I have created.... how do you get/set arrays within classes? basically I have an array with x and y as width/height for a map i am... |
Forum: VB.NET Apr 16th, 2008 |
| Replies: 14 Views: 13,385 Or just do this:
if Isnumeric(String) then
do_stuff_here
end if |
Forum: VB.NET Jan 23rd, 2008 |
| Replies: 2 Views: 973 Show us a code snippet you have of the code that makes him move around and we can go from there. |
Forum: VB.NET Jan 23rd, 2008 |
| Replies: 2 Views: 529 Whenever I get stuck on an issue, I google the crap out of it until I find something I can use (maybe code from another language i can try and port, or code from a program that isn't quite what i... |
Forum: VB.NET Jan 8th, 2008 |
| Replies: 2 Views: 485 List of names issue:
Public Function Random_Name()
Dim i as integer
Dim name as string
Randomize
i = int(rnd * 100) + 1 '1 to 100 |
Forum: VB.NET Dec 28th, 2007 |
| Replies: 2 Views: 1,162 Honestly I'm not sure what you're talking about, are you creating some sort of a program to connect to an outside server?? Please elaborate for more clear troubleshooting. |
Forum: VB.NET Dec 27th, 2007 |
| Replies: 3 Views: 748 I'd be willing to bet it has something to do with the control's focus. You might make sure that it keeps focus after clicking other stuff as it will not accept keystrokes without having focus. |
Forum: VB.NET Dec 9th, 2007 |
| Replies: 2 Views: 1,787 Ok I know you can dynamically create forms at runtime but that's a ton of extra code to set up buttons/etc and I really don't want to have to go that route, is there a workaround? Just want a console... |
Forum: C# Dec 7th, 2007 |
| Replies: 7 Views: 1,684 After doing some research on using console.readkey(), it turns out this is exactly what I needed! Thank god .net 1.1 isn't the standard anymore as things like this were very limited back then. Thanks... |
Forum: VB.NET Dec 5th, 2007 |
| Replies: 14 Views: 13,385 you could always set up a select case statement for every time the user inputs a value and just set up the case statements to accept only numbers. |
Forum: C# Dec 5th, 2007 |
| Replies: 7 Views: 1,684 Ok but won't that require the user to type in "f9" or whatever then hit enter? I want to bypass that like you would in a form. |
Forum: C# Dec 5th, 2007 |
| Replies: 7 Views: 1,684 It's not a form though, it's a console app, any way to do it through a console app? |
Forum: C# Dec 5th, 2007 |
| Replies: 7 Views: 1,684 Is there a way to accept keystrokes through c# in a console app? Basically I want to apply macros/the f-keys to my program, thanks. |
Forum: VB.NET Dec 4th, 2007 |
| Replies: 0 Views: 432 Is this possible in a console app? I know how to do it on a form but not really sure in a console app. |
Forum: VB.NET Dec 4th, 2007 |
| Replies: 2 Views: 1,787 Ok I've changed my project to a window forms app, and changed the start up object to Form1. Now it's throwing this EM: 'Starting a second message loop on a single thread is not a valid operation. Use... |
Forum: VB.NET Dec 4th, 2007 |
| Replies: 2 Views: 1,787 Can anyone give me an idea of how to run a console app and a windows form at the same time? Basically it's a game I'm creating and I want the console window to be the main game screen and the form... |