-
Began Watching Adding a "message box" to show progress of the routine
Group, Today I learned with `Me.Cursor = Cursors.WaitCursor` and `Me.Cursor = Cursors.Default` do. I've seen other programs, when running, a "message box" comes up and let's the user know what … -
Replied To a Post in Adding a "message box" to show progress of the routine
One of the many choices is the label tool, for example when i install a game, there's a label under the progress bar that changes its text along with the … -
Began Watching Cricket Game using Dice
hey guys, im trying to create a dice cricket game where u use 2 buttons, one for each innings and then use a random number generator for the number 1-6. … -
Replied To a Post in Cricket Game using Dice
how about storing your numbers in an array or my.settings? -
Gave Reputation to J.C. SolvoTerra in Vb.net - Games/Sim Projectile Motion
I love this stuff, brings back the good old days. It's not even a "Complete Game" still I spent a good five minutes pinging balls all over the place. -
Created Vb.net - Games/Sim Projectile Motion
VB.Net never meant for games! it's more recommended for software developement, but hey why not have some fun. If anyone out there is looking to create an Angry Birds Game-like … -
Began Watching Vb.net - Games/Sim Projectile Motion
VB.Net never meant for games! it's more recommended for software developement, but hey why not have some fun. If anyone out there is looking to create an Angry Birds Game-like … -
Began Watching what is the easiest language to begin learning as a programmer?
I want to start reading and learning on my own the different programming languages. I will be going into MIS degree soon. What is the easiest language to begin learning... … -
Replied To a Post in what is the easiest language to begin learning as a programmer?
In my opinion there is no easy language! let me put it this way, in every language there is a **basic** , **intermediate** and **advanced** level, you always start easy … -
Replied To a Post in Adding Ribbons.
Even if you find a ready tool you'll have to write code in it, so take that effort and create your own toolBar that will suit your needs. There's a … -
Replied To a Post in Maze Game.
I find this interesting, hope it help. [Click Here](http://www.dreamincode.net/forums/topic/121314-creating-a-dll-and-using-it-in-your-application/) -
Began Watching Adding Ribbons.
There are no Ribbon object in toolBox but I desire to add a ribbon instead of MenuBar or ToolBar like Office. I search everywhere in vb.NET2010. How do I add … -
Replied To a Post in Adding Ribbons.
Actually there is one in vb toolbox, it's "ToolStrip". -
Began Watching Maze Game.
Hello Everyone, I am creating the maze game in vb.net I found the way of creating the maze game is easy way. But now I want this to access the … -
Replied To a Post in Maze Game.
[Check This](https://www.daniweb.com/software-development/vbnet/code/483767/vb.net-simple-game#) in this link the levels are in a method. -
Began Watching Data doesn't retrieve!!!
Hey! I'm trying to connect my backend (Ms Access) to the front end (VB.NET 2010). I'm trying to retrieve data and I get these errors. I have two problems: 1. … -
Replied To a Post in Data doesn't retrieve!!!
You need to target the table inside the datatable: If i < dt.Tables(0).Rows.Count - 1 Then -
Replied To a Post in Save the Multiples File To Destination From Resources.
[BackgroundWorker Tutorial video](http://www.youtube.com/watch?v=jv4FdoaUMQE) Export your resources to a folder in the BackgroundWorker_DoWork method. and you can give a value to your progressbar in this method BackgroundWorker_ProgressChanged. -
Replied To a Post in Join 2 Access Databases
my bad i forgot it's c sharp thread. Your connection string links your program to only one database and in your query you are trying to select from both databases, … -
Began Watching Join 2 Access Databases
I need to join 2 access databases. I have tried using dataAdapters and then filling 2 different datatables. Then I used the merge method to join the datatables. The problem … -
Replied To a Post in Join 2 Access Databases
Actually you can take only the columns that you want instead of the whole database, change your command to something like this: Dim Command As New System.Data.OleDb.OleDbDataAdapter() Command = New … -
Replied To a Post in Even odd number
oops sorry. > without using % -
Began Watching programe that creates,save, open file and writes user's input to a file
private void btnCancel_Click(object sender, EventArgs e) { //setDirty(); this.Close(); } private void btnOk_Click(object sender, EventArgs e) { setDirty(); //openFileDialog1.ShowDialog(); saveFileDialog1.ShowDialog(); } private void btnBrowse_Click(object sender, EventArgs e) { OpenFileDialog openFileDialog1 … -
Replied To a Post in programe that creates,save, open file and writes user's input to a file
So..it's a code snippet? -
Began Watching Even odd number
Frnds, My questions is "how come to know whether the number is even or odd without using %,/,bitwise operator". -
Replied To a Post in Even odd number
if any number modulus 2 is zero then it's even otherwise it's an odd number so your condition would be if (Num%2==0) sop("EVEN"); -
Began Watching Save the Multiples File To Destination From Resources.
Hey Everyone, I forgot this simple code and messup. I am having almost 23 Files in my resources. (extension: .Targa Files) now When the User Click Extract Files, I need … -
Replied To a Post in Save the Multiples File To Destination From Resources.
Use a backgroundworker, [Click Here](http://stackoverflow.com/questions/13928938/progress-bar-for-copying-file-from-my-resources-vb-net) -
Began Watching Hangman
I need to create a program like Hangman... I did successfully the following: Bring a file into VB which has a list of 100 words --> ok Then, user enters … -
Replied To a Post in Hangman
The Problem is in your intPosition. Dim strSelectedword As String = "office" lblHiddenWord.Text = "" For intCount = 1 To strSelectedword.Length lblHiddenWord.Text &= "*" Next Dim intBad As Integer = … -
Began Watching 32/64 bit database driver error
Hi all, I am using the Microsoft.ACE.OLEDB.12.0 driver in a C# .NET program and there is an issue between using the executable file on 32 bit and 64 bit systems. … -
Replied To a Post in 32/64 bit database driver error
It's not the DLL, it's your program, you need to build it in a way to work on both systems. In your program project go to Build >> Platform >> … -
Began Watching minimum & maximum value
I have the following code: import java.util.Scanner; public class WhileLoop { public static void main(String[] args) { int number; int maxValue = Integer.MAX_VALUE; int minValue = Integer.MIN_VALUE; Scanner input = … -
Replied To a Post in minimum & maximum value
"the other way around": for(int i=1; i<=loop; i++){ System.out.println("Enter a number: "); number = input.nextInt(); if(i==1){ maxValue = number; minValue = number; } else{ if (number > maxValue) { maxValue … -
Began Watching Help with bubble sort.
Hello, I need help!!! I have a program that uses an array for the user to enter in 5 integers. After those integers are added I want to sort them … -
Replied To a Post in Help with bubble sort.
Just some side notes. change this while (Sum < 10 || Sum > 50) to this while (Sum > 10 || Sum < 50) and in line 27 to this … -
Began Watching Seconds to minutes help
My code has me stumped, My method is right...I think but the output begs to differ. Basically this code is supposed to convert seconds to minutes but the output is … -
Replied To a Post in Seconds to minutes help
for seconds you need the remainder: int seconds = second%60; -
Gave Reputation to Santanu Das in Retrieving All Tables in MS ACCESS
This is not a good job to create a table for every status. Add a field of the status, which describe the seat is for Regular, disabled or VIP's. and … -
Began Watching Preferred Method For Saving Program Settings
I have used several methods to save a program's settings in the past. * System Registry * INI files (Encrypted\Plain) * XML file as a resource or external file * … -
Replied To a Post in Preferred Method For Saving Program Settings
Same here, i use My.Settings. -
Began Watching Device location in the Network
How to get the position of a device that is connected to the network but there is no internet connection? The connection is wifi. I can't use GPS because it … -
Replied To a Post in Device location in the Network
There is a way to find the physical location of a computer, by using signals between router and a computer you can find the distance. Use the formula of Distance … -
Gave Reputation to Reverend Jim in Multiple Buttons If Else Condition
Because the action involves making a selection, wouldn't you be better off with either radio buttons or checkboxes instead of buttons? -
Began Watching best language for software developer?
i am a student of computer science , i like to be a software application developer , but i am confused still about be ** a java software developer or … -
Replied To a Post in best language for software developer?
I'll ask you this, Why not both?! -
Began Watching Sums of Number
Having trouble when executed. Can someone point me the right direction? Public Class Form1 Private Sub btnEnterNumber_Click(sender As Object, e As EventArgs) Handles btnUserInput.Click 'This will sum of the numbers … -
Replied To a Post in Sums of Number
Your strUserInput should be a string, so: Dim strUserInput As String -
Began Watching largest palendrome product
I am on euler project 4, the largest palendrome product of 2 3digit numbers. Here is the program, however it doesn't print a value. please help. package euler; public class … -
Replied To a Post in largest palendrome product
I agree with james, Thumbs up. for example String S1 = "Hello"; String S2 = "Hello"; String S3 = new String("Hello"); S1 and S2 they have one memory address with …
The End.