- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 69
- Posts with Upvotes
- 61
- Upvoting Members
- 33
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
Optometry/Computer Science
- PC Specs
- *cpu : 3.60 GHz i7-3820 *motherboard : intel DX79TO *memory ram : Kingston HyperX t1 Black series 12…
159 Posted Topics
| |
Re: Have you noticed this pattern in every episode of any tv show - Previously on.. - New issue/new villain - Series introduction (short video) - Commercials - Things are getting worse - Commercials - The hero have no chance what so ever of saving the day - Commercials - The … | |
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 or a Simulator for throwing an object, you've come to the right place, this code will give you great start/push … | |
![]() | Re: Perfume: The Story of a Murderer. beautiful story |
Re: try adding the windows Explorer Browser, its much faster itll do the job.. just add your extension filter to it and set it to thumbnails. download Microsoft.WindowsAPICodePack.Shell.dll gd luck | |
Re: Public Class Form1 Dim Seconds As String Private Sub Button1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles CloseButton.MouseDown Seconds = 0 CloseLongTimer.Interval = 1000 CloseLongTimer.Start() End Sub Private Sub CloseLongTimer_Tick(ByVal sender As Object, ByVal e As EventArgs) Handles CloseLongTimer.Tick Seconds += 1 End Sub Private Sub CloseButton_MouseUp(ByVal sender As … | |
Re: Typically in a program you find something called "Preferences" or "Option" or "Settings" this is the user section, the user own choice of inputs. use this in your program so you can get for example the access file path and password to use it in your connection string. so you … | |
Re: 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 progress, from "copying files to.." to "installing x.." to "installation complete". Label.text = "String" ![]() | |
Re: They are all good, but from experience i recommend maya, it's great software just create your models and drop them in unity. and btw unity 3d have a lot of features that already exist in maya and 3d max. | |
Re: Granted: surprise surprise, it says in the contract "Gogle" and you didn't notice, you my friend just bought a small plumber company in mexico.. congratulation I wish to be a mentalist | |
Re: fête de la musique. What is your favorite password? | |
Here's Some of my habits that i picked up over the years, How about you? - Refresh every 5min - my fingers are on "A", "W" and "D" keys - bite my nails while coding - i had a fan problem once, and after fixing it i kept my habit … ![]() | |
Re: 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 and then you build your way up. Besides your choice highly depends on what do you want to do (ex: … | |
Re: 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"); | |
Re: how about storing your numbers in an array or my.settings? | |
Re: You need to target the table inside the datatable: If i < dt.Tables(0).Rows.Count - 1 Then | |
Re: [Check This](https://www.daniweb.com/software-development/vbnet/code/483767/vb.net-simple-game#) in this link the levels are in a method. | |
![]() | Re: 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 System.Data.OleDb.OleDbDataAdapter("select ColumnName from TableName", yourConnection) ![]() |
Re: So..it's a code snippet? | |
Re: Actually there is one in vb toolbox, it's "ToolStrip". | |
Re: Use a backgroundworker, [Click Here](http://stackoverflow.com/questions/13928938/progress-bar-for-copying-file-from-my-resources-vb-net) | |
Re: Just some side notes. change this while (Sum < 10 || Sum > 50) to this while (Sum > 10 || Sum < 50) and in line 27 to this if (integers[j] > integers[j + 1]) | |
Re: 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 = 0 Do Until intBad = 10 Or Not lblHiddenWord.Text.Contains("*") Dim Entry As String Entry = InputBox("Guess a letter") If Not … | |
Re: 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 >> New >> X86. | |
Re: Your strUserInput should be a string, so: Dim strUserInput As String | |
Re: "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 = number; } if (number < minValue){ minValue = number; }}} Good luck | |
Re: for seconds you need the remainder: int seconds = second%60; | |
Re: Same here, i use My.Settings. | |
Re: 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 tow labels (S1 and S2) and they are equal, but S3 creates another address in the memory and for that … | |
Re: 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 Calculation. [Router Calculator](http://www.tp-link.com/en/support/calculator/) | |
| |
Re: Your code will not loop the sound! is this code placed inside a loop? if yes add break; to it. | |
Re: Your problem is in the invoice class, instead of setting your variables properly you are giving them a value of 0. so change these: public void setPartNumber(String pNumber){ pNumber = partNumber; } public void setPartDescription(String pDesc){ pDesc = partDescription; } public void setQuantityPurchased(int qPurchased){ qPurchased = quantityPurchased; } public void … | |
Re: The application startup path is not the location of your resources folder. here's a better way to do it: image1.image = my.resources.yourImageName | |
Re: Add this to line 88 YourDatagrid.DataSource = ds.tables(0) | |
Re: Ok here's couple of things you can try: * Find out what the error is by adding this code: Try 'your code here Catch ex As Exception MessageBox.Show(ex.Message & " - " & ex.Source) End Try * Go to your project properties >> publish >> then check the "application files" … | |
Re: There's a short way to do it, change button1_click to this: Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Try Dim cn As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\Users\pant.16\Desktop\Projects\Microsoft - MSV\Microsoft - MSV\bin\Debug\MSVDB.accdb") If cn.State = ConnectionState.Open Then cn.Close() End If cn.Open() '' ''____________________________________________ '' If MsgBox("Confirm Submit?", MsgBoxStyle.YesNo Or MsgBoxStyle.Question) … | |
Re: I have a beard (you can see it in my profile pic), for about 8 years.. i'm 26 now and i don't consider myself as a hairy guy, i mean i can barely see the hair on my chest and for that i can't get my beard to grow big … | |
Re: Put the if statement at the bottom of your code If (hours >40) grosspay= (40 * rate) + ((1.5 * rate)*(hours-40)); | |
Re: Your question seems to be answered [Here](http://stackoverflow.com/questions/26008633/switch-questions-array-printing) | |
Re: @stultuske Logically the sum here is a variable, for ex: Sum of the Addition of 1 2 3 4 is 10 @OMDYD Try this String output="Sum of the Addition of "+num1+" "+num2+" "+num3+" "+num4+" is "+Sum; | |
Re: Try this: if Not YourConnection.state = ConnectionState.Open Then 'promot user end if | |
Re: Use Control.Parent = Panelx example : button1.parent = panel1 the button1 is now attached to panel1, so that when you hide or move the panel the control in it(button1) will behave the same. | |
Re: For input letter+number: r = Integer.parseInt(choice.substring(1, 2)) - 1; c = (int) (choice.charAt(0) - 'A'); and for the part "loop for once" i didn't understand but as far as i know, there's no such a thing, you want to loop once; just write the code without a loop. hope this … | |
Re: First of all, DateTimePicker have nothing to do with DateTime they are two seperate things. Second, the problem is in your method,you see you have a method(deliveryTime_ValueChanged) and when this method is called or triggered it'll run the code inside of it (deliveryTime.MinDate = DateTime.Now.AddHours(1);) and the problem is that … | |
Re: You need to return all possible combinations, so you need a method that returns a multidimensional array. Ok let's start with the main method; we will create a sample array with the list and then the 2D array that calls the method: public static void main(String[] args) { int a[] … | |
Re: Yes, you can improve it: int [][] arrayOfSets = new int[5][5]; and that's it, an array of type int will have a 0 in each cell by default. | |
Re: What did you write in the cmd? | |
Re:   |
The End.