Posts
 
Reputation
Joined
Last Seen
Ranked #586
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
98% Quality Score
Upvotes Received
69
Posts with Upvotes
61
Upvoting Members
33
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
7 Commented Posts
~134.47K People Reached
About Me

Optometry/Computer Science

PC Specs
*cpu : 3.60 GHz i7-3820 *motherboard : intel DX79TO *memory ram : Kingston HyperX t1 Black series 12…
Favorite Tags
Member Avatar for Reverend Jim

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 …

Member Avatar for KomalBhatt
9
3K
Member Avatar for oussama_1

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 …

Member Avatar for joy_731
1
3K
Member Avatar for vegaseat
Member Avatar for LastMitch
Member Avatar for Reverend Jim

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

Member Avatar for mariopepper
3
3K
Member Avatar for IsaacMessi10

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 …

Member Avatar for ersinkecis
0
2K
Member Avatar for اشرف_1

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 …

Member Avatar for basit_3
0
2K
Member Avatar for Papa_Don

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"

Member Avatar for §AE§
0
3K
Member Avatar for Moaid

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.

Member Avatar for janissantony
0
202
Member Avatar for abelLazm

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

Member Avatar for James_40
8
9K
Member Avatar for <M/>
Member Avatar for oussama_1

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 …

Member Avatar for Warrens80
1
366
Member Avatar for lyndata

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: …

Member Avatar for danielpeterson
0
192
Member Avatar for mattster
Member Avatar for vivekH

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");

Member Avatar for vivekH
0
269
Member Avatar for MatthewVb
Member Avatar for necrovore
0
191
Member Avatar for Ashveen96

You need to target the table inside the datatable: If i < dt.Tables(0).Rows.Count - 1 Then

Member Avatar for Ashveen96
0
335
Member Avatar for Deep Modi

[Check This](https://www.daniweb.com/software-development/vbnet/code/483767/vb.net-simple-game#) in this link the levels are in a method.

Member Avatar for J.C. SolvoTerra
0
1K
Member Avatar for lithium112

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)

Member Avatar for lithium112
0
236
Member Avatar for lilita
Member Avatar for Santanu.Das
Member Avatar for oussama_1
0
161
Member Avatar for Deep Modi

Use a backgroundworker, [Click Here](http://stackoverflow.com/questions/13928938/progress-bar-for-copying-file-from-my-resources-vb-net)

Member Avatar for Deep Modi
0
352
Member Avatar for aurgiwilllearn

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])

Member Avatar for mridul.ahuja
0
181
Member Avatar for rgrgrg

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 …

Member Avatar for oussama_1
0
174
Member Avatar for Jerp_1

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.

Member Avatar for oussama_1
0
164
Member Avatar for Soutta
Member Avatar for Soutta
0
250
Member Avatar for engrjd91

"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

Member Avatar for oussama_1
0
238
Member Avatar for Gl753
Member Avatar for J.C. SolvoTerra
Member Avatar for Toby_1

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 …

Member Avatar for Toby_1
0
162