A Sub Main is n ot always necessary. I find that for hte really small projewcts that I do that a Sub Main is a complete waste of time and that all of the...
dear all is there any who can send me the pdf file of the book named: asp.net programing with microsoft visaul basic .net from microsoft press.? thanks in...
To all, I have a question I hope one of ya'll can help with. My eldest is interested in programming and graphics for PC and Video games but I am not sure what...
... For what I've seen, Maya may be what you're looking for. Try here: www.alias.com/eng/index.shtml A bit difficult, with a long learning curve, but...
VB is a good start...a couple of others I've run across too would be great... Leopard SiMPLE- this one has an entire website/story/games to go along with it. ...
Hi Brian, We can develop games in any language, but each language has its own benefits, and difficulties. What I would ask first, is how well his mind is...
WOW ! Way to go Vasco ! You nailed it. Did not realize that they were making all of that available to students for free. Amazing. When you first mentioned...
... Darn ! I went 2 whole days without getting any demerits < g > Steve ... From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com] On Behalf...
Steve, I just showed my eldest the responses and she was miffed at being called a boy but felt better after the correction and your response. Have a good one....
Hi Brian, ... It's something one gets used to in this industry. I occasionally have recruiters express surprise at finding out that I'm a girl, when you think...
... I don't write a Sub Main unless I want the application to be able to control multiple instances of my main form. Otherwise, if there is only one instance...
Sorry Brian, When discussing "our eldest" I default to male/boy/man without additional information. In my neck of the woods, the fathers around here refer...
No big Steve. I thought it was funny that everyone automatically assumed my "eldest" was male. I would normally refer to her as my treasure except she is a...
I was wondering about the $$ part...I know that Maya is very expensive...which is why I suggested the two that I did....both are free and good starting points...
... That is always the way it seems. Both of my boys were trying at times. If they had been perfect, Mom would have taken the credit < g > Steve ... From:...
How do you clear out a loaded ListView1 box??? I get an error when I try to do this: listview1.items(listview1.selectedindex).remove The err message says that...
you would need to use ListView1.ListItems.Remove(i) or ListView1.ListItems.Clear the first will remove one item at a time the second will clear the entire...
You end up using clear! rick farnkopf ... From: helpwithvb@yahoogroups.com [mailto:helpwithvb@yahoogroups.com]On Behalf Of Bidski Sent: Friday, December 02,...
Hi Steve ... Thanks, it's always nice to have someone's approval on something you do. Thanks! ... No, no emails yet. Maybe it's my ISP that's having some...
Hello all, Last project! I am writing a program using a user control to calculate in miles the distance between 2 cities. Here's the catch, the user enters...
Good Evening Scott, Good to hear from you again. Is this VB Dot Net ? lblDistance.Text = (distance * 68) should be something like this: lblDistance.Text =...
Use a Format function Format(00.00, lblDistance.Text) = (distance * 68) I think....that's off the top of my head and not looking at several of my projects I...
... I ask that, because I think your math will have to be a touch more complicated, unless the Dot Net Libraries offer you an easy solution to this problem. If...
Steve, I am using VB.Net. The cordinates are put in using the form 38 N by -74 W. I used the context you suggested and it works perfectly. Thank you! ...
Steve, It's funny that you mentioned the calculations. I used calculations given to me in the problem description. After completing the project I tested it ...