- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 8
- Posts with Downvotes
- 5
- Downvoting Members
- 6
- Interests
- VB.NETWeb DevelopmentJavaVB6
- PC Specs
- OS: Microsoft Windows 7 64-bitCOMPUTER: HP Pavilion dv6CPU: AMD Phenom II N620 Dual-Core 2.8 GhZRAM:…
36 Posted Topics
| |
I know the basic idea of PPC is that you put adverts on your site and then you get paid for it. What i want to find out is 1. What part do you get paid for? (so is it jsut for the amount of time its online, they clicks, … | |
Re: All you really need is a few conditionals with your events in between as such: [CODE]dim attempts as integer attempts = 0 private sub Login() if attempts <= 3 then if username = "username" and password = "password" then 'login else attempts = attempts + 1 end if else 'contact … | |
Re: Previously had: 3 rabbits 2 guinea pigs 3 cats 1 dog 5 goldfish 2 hamsters Currently have: 2 dogs 2 cats Wow i've had waaayy too many pets :p | |
Re: Wow talk about overcomplicating. If there's one useful thing in programming its keeping it simple. try this instead: [CODE]Public Class Form1 Dim MyX As Integer Dim MyY As Integer Dim writer As System.IO.StreamWriter Private Sub Form1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Click Call Timer1_Tick() End Sub Private … | |
Re: A simple way to do this is by creating a boolean variable and a while loop as shown: [CODE] Dim PauseState As Boolean Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown PauseState = false End Sub Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) … | |
I am working on creating a basic battleships game in .NET, I have got all the functionality working however i have never used .NET for any networking applications. All i need to do is send a co-ordinate to the other player when they click on a given square. the co-ordinates … | |
What i need to do is parse an integer to a "library" of co-ordinates. This integer allows for a random co-ordinate to be chosen. The "Library" i mentioned is shown below Public Function Hit(ByVal rnd As Integer) Select Case rnd case 0 return "(0,0)" case 1 return "(0,1)" End Select … | |
I am currently working on a project that has hit a bit of a snag. I have the following string; <td class="bld"><span id="ref_12590587_l">5,304.48</span> I want to cut this string so that only the "5,304.48" is remaining. I would also then like to remove the comma. Thanks | |
Re: Even tho i've only been on this site for under a month it only seems polite to wish you a Happy Birthday :p | |
Hey guys, I have just finished a very simplistic game where the object of the game is to move out of the way of a falling block. Still only version 1 so don't expect much but your welcome to have a go and post any feedback on this thread. Looking … | |
Basically im trying to make a game where shapes fall from the sky and the user controls the sprite to avoid them. I have it working but only with 1 block falling at a time. I am using the paint method to draw my shapes. I was wondering how to … | |
Re: anyone here into Minecraft. The java based building game? | |
Re: If i'm honest saying that C++ is dying is ridiculous. You look at any large scale business software and its most often coded in C/C++. Java is kinda the new kid on the block looking to compete with C++ but due to its infancy its still got a long way … | |
Re: I have to admit the most addictive game i've played which was developed with flash has to be [B]N_v14[/B] | |
Re: how about 01100100 D 01100001 A 01101110 N 01101001 I 01110111 W 01100101 E 01100010 B | |
Basically i'm looking at doing a computer science degree then going on to work in the IT industry. I was wondering what the best languages to know are as i really cannot be bothered learning loads. Trying to limit it to maybe 3 or 4 with a decent knowledge of … | |
Re: Hey guys. I was at loughborough university (england) looking round their computer science course. They had a few displays on one of which was a self built helicopter which they had programmed to be controlled by an iphone. It was really cool. It used a camera mounted in the helicopter … | |
Re: I have only ever used books for VB6 and i transferred my skill set over to VB.NET. I have however used "Sams Teach yourself in 24 hours" for Java which i did not find very helpful. It seemed to me that the method of explaining WHY you are using operations … | |
Hey guys just wanting to get an idea of peoples opinions on Open-Source software as i know many people have very different opinions. The sort of thing im looking for is: Advantages for your personal use Disadvantages for your personal use Whether you agree with Open-Source If you ever use … | |
I was thinking of making a program which creates a console in which it sends a ping to an domain, in this case "www.google.com". then read this into my vb application. Probably looking to read each line into a listbox, this way i can add a parser to only take … | |
Basically the time old question of who would win. Just decided to put a very geeky twist to it. Just looking to see if people think C++ is better/worse then C :icon_lol: | |
So basically i've been thinking really about the different programming languages as i have been looking at computer science courses at university. A lot of the courses use java as their main programming language. It got me thinking, is Java the future of programming and if so why? I am … | |
Re: Use vb 2010 express. its free and it has a good intellisense which is extremely useful. I would recommend buying a book on VB for beginners as this will give u a foundation....then u can learn as you use the software using forums online. Its very logical. Just experiment good … | |
I'm looking to further my VB skills but have a writers block on what to create. So if you have any idea or suggestions which i could use for my next project please post a reply. Thanks | |
Re: I don't know if its possible to literally call over the menu strip control. but if you create a module called MenuStrip you can add your code into it which can then be called from different forms. so you would have to create a new menu strip for each form … | |
Have just finished my first attempt at a playable and interesting game in VB. Originally started in VB 6 i decided to re-write and expand in VB 2010. Just wondering if anyone has any ideas or comments on how it could be expanded/improved. :) | |
I am trying to insert a piece of html code into a web browser control in vb 2010. i have tried the [COLOR="Green"]webbrowser1.documenttext[/COLOR] function but cant seem to get the browser to run the html code. can anyone help? thanks | |
Re: [QUOTE]You have to work on the event "Form_KeyDown()". By reading each "keycode" and then playing a specific sound using the "Microsoft Multimedia Control"[/QUOTE] KSS is correct but just to show you what he means i've written a short piece of code [CODE] Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e … | |
Re: Had a look at your code and think ive found a solution but ive coded it in a separate project with Pseudo Code to explain whats happening. PM me for feedback. [CODE]Dim UserShapeX As Integer 'shape1 x control Dim UserShapeY As Integer 'shape1 Y control UserShapeX = Shape1.Left + Shape1.Width … | |
Re: Why do you want to open the 2nd form in the 1st form? Surely it's better to just close form1 and open form 2? | |
Re: You say you didnt even consider java because its too slow however by using multiple threads you would be able to make an efficient game. games such as Runescape and minecraft (two very successful games) are programmed in Java. Java is used in many business arenas as it is cross … | |
Re: Its basic Trigonomentry to find the location of the point as long as you know 3 things. 1. the origin - (x, y) 2. the angle - t 3. the radius - r and your trying to find the co-ordinates (a, b) of the cirumference of a circle to locate … | |
|
The End.