Get Away From The Windows Form Look And Feel To More Of A 'game' Feel?
Jul 17, 2010
I'm wanting to make my UI like that of games such as the old Sim City (yes I have a sim application i've been working on)How can I get away from the windows form look and feel to more of a 'game' feel?WPF is one option, is there anything else?
View 3 Replies
ADVERTISEMENT
Sep 19, 2011
I've been able to change the Look And Feel of my GUI, is there a way to do this in Visual Basic?
View 3 Replies
Feb 17, 2012
I am looking for recommendations with regards to any tips and suggestions on the improvement of the look and feel of windows forms designed in vb.net studio.I was used Krypton but my trial ran out and I am looking for other packages, tools or ways to improve the look of my forms.
View 5 Replies
Jul 9, 2009
My website look and feel is not 100% the same in Internet Explorer 8 as it use to be with Internet Explorer 7. My site is created with VS 2005 and ASP.NET 2.0.
How can I fix this?Is there a way to fix this?
Edit:For those who want to see my website, it is Located Here - Some borders are diff. and the Email/Username text box in the Login Control in WAY at the top and actual Login Control width is less now.
Edit:Those who view my site from now on will not see what I am talking about from now on since I made some changes to the site and fixed the problems.
View 10 Replies
Mar 4, 2009
Anyone who could provide me a direction to start with?
View 4 Replies
Mar 3, 2009
Anyone who could provide me a direction to start with?
View 3 Replies
May 5, 2010
how can i make my program feel if any device or usb device plugged into the computer or unplugged.url...
View 3 Replies
Feb 16, 2011
I'm trying to make a simple fruit machine game for windows mobile device.
I can create the game easily enough and flip through pictures in a picture box to display the correct symbol.. but what I'd like to do is do a proper spinning reel, but have no idea where to even start.
What I have is a list of images in an imagelist (or individual files) - what I'd like is them attached to each other and moving downwards, preferably as though it were going around a drum but just them moving would be a start.
View 7 Replies
Jun 10, 2012
So I pretty much built the game, that was the easy part. I am having trouble entering a name on my first form(startup) and keeping track of the score on second form(game) and displaying it both combined on the first page with the current users score. Also the way it set up now if you are running the game for the first time it says can't find LowScores.Text. Start Up
CODE:
CODE:
View 6 Replies
Oct 18, 2010
i am suppose to create "a windows form game called Yahtzis which uses five dice and three throws to create a score" .
The problem is that i don't even know how to start it can anyone shed some light.
View 2 Replies
Jun 9, 2010
how can i check what windows the client has on his pc...xp/windows7/vista
View 1 Replies
Feb 28, 2009
Say I wanted to show Form1 by pressing ctrl+h ingame it would show and when i press it again it would hide. but when it shows, it overlays the game.
View 6 Replies
Jul 12, 2009
I' m trying to make a form always on top also in a Client Game...
View 9 Replies
Oct 29, 2011
I am getting Errors: Operator '<' is not defined for types 'System.Windows.Forms.Button' and 'Integer'.
Operator '>' is not defined for types 'System.Windows.Forms.Button' and 'Integer'.
Value of type 'Integer' cannot be converted to 'System.Windows.Forms.Button'.
And my program does not work!
Below is my code..............
Private Sub ProgressBar1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles ProgressBar1.Click
ProgressBar1.Value = TextBox1.Text
End Sub
[CODE]...
View 11 Replies
Mar 14, 2010
I'm doing a game. I have a form I want to display the game scores on and another form I have that calculates the scores. How do I make variables work from the first form on the second?
Lets just call one form frmStats and the other frmMain, do you get what I mean?
View 2 Replies
Sep 22, 2011
Can I play a Java Game in my visual basic form?
I wan't to create a OS and add minecraft to it ...
View 1 Replies
Jun 9, 2010
I am making poker game using webform in visual basic?However , i am stuck now. I don't know how to random the cards
[Code]...
View 4 Replies
Aug 15, 2010
I had created a windows forms application in vb.net. It contained several windows. Now the users of that application are telling me to display all in one main form. They want to see all the details in one form. I had implemented MDI but they want something like tabs. On different tabs different forms should be displayed. How shall I implement this.
View 4 Replies
May 4, 2011
What I am trying to accomplish is this: I want to be able to press the F5 key on my keyboard, while playing a PC game, to show (bring forward, focus, etc.) my program. My 3 attempts so far have failed. Any idea on how I could accomplish my goal? Similar posts on other forums say to set the form's key preview to true and use on keyPress... which failed.
View 1 Replies
Feb 12, 2011
So I'm developing a game and it's a little heavy on some systems, so here's what I would like to do when the game opens (pseudo code):
Show Splashscreen
Load GameForm
When GameForm Is Completely Loaded
Splashscreen Close
Show GameForm
How is this done in actual VB code?
View 4 Replies
May 29, 2012
So I'm developing a game and it's a little heavy on some systems, so here's what I would like to do when the game opens (pseudo code):
Show Splashscreen
Load GameForm
When GameForm Is Completely Loaded
Splashscreen Close
Show GameForm
How is this done in actual VB code?
View 2 Replies
Jul 23, 2008
I know how to make a single picturebox, but I need to make more different pictureboxes. Example: I want to make a picturebox every time snake and food crash (I'm making snake with pictureboxes, yes). But for that, I need a code that will make a new picturebox with different name every time they crash. For example When they first crash, the code should make a picturebox called snakepart(1) next time they crash it should make snakepart(2). Something like that.
View 1 Replies
Jun 24, 2011
I've tried so many ways to get rid of picture boxes for my space invaders game, yet it's not working. The bullet hits the alien, the alien goes invisible (which it should) but it doesn't go to a new location or get disposed. And the bullet then intersects with it again but because it's invisible the user just see the bullet reset out of no where and the score gets added which it shouldn't.
Code:
If Bullet1.Bounds.IntersectsWith(AlienArray(0).Bounds) Or Bullet2.Bounds.IntersectsWith(AlienArray(0).Bounds) Or Bullet3.Bounds.IntersectsWith(AlienArray(0).Bounds) Or Bullet4.Bounds.IntersectsWith(AlienArray(0).Bounds) And AlienHitArray(0) = False Then
[code]....
So, basically my question is how do I remove aliens (pictureboxes) off the board or disabled the picture box in space invaders when they are hit. (my bullet collision works fine).
View 8 Replies
Dec 27, 2011
Trying to dynamically add Alien objects (Picture boxes) to my game form. The picture boxes are invisible when I run the game. All of the other controls for the picture box seen to work just fine. Movement, Alien Shots ,etc, etc. [code]
View 5 Replies
Feb 9, 2011
How do I keep my picture box from leaving the form screen and how do I make it 'bounce off the walls" when it hits one edge of the form?
View 4 Replies
Dec 6, 2008
im making a 2D game which involves things to paint onto the form at different times. how can i do this? ive tried this
[code]...
View 19 Replies
Jul 30, 2008
Redrawing rectangles on a Form? I have a problem repainting my form, I'm creating a "Bouncing block" Type of game , the Ball as a PicturBox, the Bar as A Picture Box And the Breakable "Targets" as An Array of Rectangles created in my forms Paint event using "e.Graphics.FillRectangles(Brush, rectsF)". It Looks a little like this:
Top of my Form(in the MainForm class):
Dim Brush As New SolidBrush(Color.Red)
Dim rectsF() As Rectangle
[Code].....
View 1 Replies
Sep 2, 2011
I am very much a beginner to VB.net and I'm still flicking through tutorials, learning basic stuff however I need to make a program fast and need help with it. I need to know how to make the form open a game save,whether that be for PC, Xbox or anything else.
View 3 Replies
Aug 22, 2009
How can I make a form stay above a game? Something like a D3D/OpenGL game
View 12 Replies
Dec 19, 2008
I have a FPS game i built using FPS creator that works fine but i want to run it inside my form. Like so for example:
View 2 Replies