-
Replied To a Post in Mouse events, timer and circle
Are the colours of the object solid? If so maybe you could check the point under the mouse. Other wise it'd be a mathmatical hit test. -
Marked Solved Status for ON DELETE CASCADE
 In the above model I have an Images table which holds all the filenames relevant to the image. I have two relationship tables (Image_Has_People and Image_Has_Event). Both of … -
Gave Reputation to David_50 in ON DELETE CASCADE
Delete cascade prevents orphans, not childless parents. If you delete the parent, all children get deleted. Deleting children is just life. You can develop a trigger that for child deletes, … -
Replied To a Post in ON DELETE CASCADE
So am I right in assuming, you preferance is: - Delete Image Entry from Images - Check Image_Has_People for entries with the deleted idImage -- Delete Relevant Images - Check … -
Created ON DELETE CASCADE
 In the above model I have an Images table which holds all the filenames relevant to the image. I have two relationship tables (Image_Has_People and Image_Has_Event). Both of … -
Began Watching ON DELETE CASCADE
 In the above model I have an Images table which holds all the filenames relevant to the image. I have two relationship tables (Image_Has_People and Image_Has_Event). Both of … -
Began Watching How to short an array by recursion
This conception I get from a post on CodeProject by [Heriberto Lugo](http://www.codeproject.com/Tips/837177/Recursion-for-Beginners-Sorting-Ten-Numbers-Withou). But that was for only 10 numbers. Then I had an idea to use it in vb. There … -
Replied To a Post in How to short an array by recursion
I'm really confused by this, by Short do you mean sort, and if you mean sort, can't you just do this Dim iVals As Integer() = {1, 9, 3, 10, … -
Replied To a Post in Have I really Got This Right?
I think The tables may be missleading. The Album Table is the main table which will be queried when looking for photos eg SELECT idPhoto FROM Album WHERE idEvent = … -
Replied To a Post in Have I really Got This Right?
Is the category table you talk of not my "Event Table" in the model? The crosswalk bit (I'm not sure what that is) but is it something like: idPhoto idTag … -
Edited Have I really Got This Right?
Hi guys, I'm currently on the pretty cool Database development path. I've quickly got to terms with basic SQL with individual tables, and various queries. Now things seen to be … -
Edited Have I really Got This Right?
Hi guys, I'm currently on the pretty cool Database development path. I've quickly got to terms with basic SQL with individual tables, and various queries. Now things seen to be … -
Created Have I really Got This Right?
Hi guys, I'm currently on the pretty cool Database development path. I've quickly got to terms with basic SQL with individual tables, and various queries. Now things seen to be … -
Began Watching Have I really Got This Right?
Hi guys, I'm currently on the pretty cool Database development path. I've quickly got to terms with basic SQL with individual tables, and various queries. Now things seen to be … -
Replied To a Post in A Circular Clocky Progressy Thing With Rings
This wee snippet is for inspiration not solution. Planting the seed of solution can often be more effective than providing a solution its self dont you think -
Created A Circular Clocky Progressy Thing With Rings
I was just mucking around with a progress feature for some software, and thought I'd just put this wee demo up of a clocky type progress thing =0) Just Copy … -
Began Watching A Circular Clocky Progressy Thing With Rings
I was just mucking around with a progress feature for some software, and thought I'd just put this wee demo up of a clocky type progress thing =0) Just Copy … -
Replied To a Post in VB.net and Google Geocode JSON
My Pleaseure. -
Replied To a Post in VB.net and Google Geocode JSON
If thae parsing fails, you wont have any results so trying to access MyResults.Results(0) will "result" in an error as a result object hasn't been added to the results list. -
Replied To a Post in VB.net and Google Geocode JSON
Ok, the first part of the structure is ok, so here's the Geometry bit: >The Complete Code Is At The End In geometry you have a few properties, let's make … -
Replied To a Post in VB.net and Google Geocode JSON
Of course you can. Am I right in assuming that you've got a good idea of what's going on, you're just having difficulty in matching the structure? I'll keep my … -
Replied To a Post in Calculate Hours Worked Function Help
Note: The calculation at line 16 rounds to the nearest integer (up or down). assuming you are going to allow rounding up (Not very business minded I know), you may … -
Began Watching Calculate Hours Worked Function Help
Here is a VB 6 fuction I used to calculate number of hours worked given a start time and an end time (24 hour format). This function worked even when … -
Replied To a Post in Calculate Hours Worked Function Help
If you're going to point out the difference between VB6 and VB.Net, it may be useful to provide some useful methods provided by .Net. This simple function using Date,Time and … -
Created Basic Image Manipulation Flip, Rotate and Quality
After trying to manipulate PNG files and failing miserably discovering that the standard GDI doesn't provide support for any PNG parameters decided to provide some basic image manipulation functions built … -
Began Watching Basic Image Manipulation Flip, Rotate and Quality
After trying to manipulate PNG files and failing miserably discovering that the standard GDI doesn't provide support for any PNG parameters decided to provide some basic image manipulation functions built … -
Replied To a Post in VB.net and Google Geocode JSON
You're welcome. I hoped it's helped. -
Replied To a Post in VB.net and Google Geocode JSON
# Sorry, I'll try that again... # ------- Looking at your provided JSON string it looks like the property name is long_name >"long_name" : "Sunderland" for example, if you set … -
Replied To a Post in VB.net and Google Geocode JSON
Looking at your provided JSON string it looks like the property name is long_name >"long_name" : "Sunderland" for example, if you set your structure up correctly you would access it … -
Edited BlowFish Class
# BlowFish? # BlowFish was the brain child of Bruce Schneier back in 93. Since BlowFish was released to the public domain, Bruce Schneier has released new encryption algorythems, TwoFish … -
Created BlowFish Class
# BlowFish? # BlowFish was the brain child of Bruce Schneier back in 93. Since BlowFish was released to the public domain, Bruce Schneier has released new encryption algorythems, TwoFish … -
Began Watching BlowFish Class
# BlowFish? # BlowFish was the brain child of Bruce Schneier back in 93. Since BlowFish was released to the public domain, Bruce Schneier has released new encryption algorythems, TwoFish … -
Replied To a Post in convert color image to grayscale
I just don't get this one Jim, apart from a whole bunch of un-needed code... batoolhussain's, yours, and even: Dim pic As Bitmap = New Bitmap(PictureBox1.Image) Dim gray = New … -
Began Watching convert color image to grayscale
hi everyone .I have this code to convert color image to grayscale image but the problem is that the image after converting does not display on the picturebox2 . I … -
Replied To a Post in convert color image to grayscale
There is no reason why this code shouldn't work. To speed things up a little move `PictureBox2.Image = gray` outside of the two for-next loops. try creating a new form, … -
Replied To a Post in VB.net and Google Geocode JSON
Though instead of typing out all those properties like that just for a couple of bits of data you may just want to structure your properties like this Public Property … -
Began Watching VB.net and Google Geocode JSON
hi, i am receieving a repsonse from googles json api that has the formatted_address but i want to extract the city and county from either the formatted_address which is displayed … -
Replied To a Post in VB.net and Google Geocode JSON
Have you tried parsing the JSON into an object structurte? here is a JSON string from a DropBox list files Query: {"hash": "2e50103f8605f7639f7da0fd2e934fe4", "thumb_exists": false, "bytes": 0, "path": "/", "is_dir": … -
Replied To a Post in Vb.net with SQL
I almost forgot to mention LINQ too... really cool, powerful stuff. This is amazing, you can query XML, SQL, Object Structures, Lists, Collections etc [Click Here](http://msdn.microsoft.com/en-us/library/bb763068.aspx) -
Began Watching Vb.net with SQL
Please Help me with my problems as follows below : 1 What is the connection string to connect database to vb.net 2 How do i INSERT UPDATE DELETE AND SEARCH … -
Replied To a Post in Vb.net with SQL
I've just gone through all this myself. It was great. Here were my steps for my particular approach. (Links Below) Note: This was just my recent research into MySQL, there … -
Edited DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Edited DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Edited DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Edited DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Created DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Began Watching DataBinding: PictureBox Image to Object.Bitmap
Did you know that you can data bind a bitmap to a PictureBox's image property, and the source image doesn't have to be in a binary format stored in a … -
Tweeted 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 … -
Replied To a Post 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.
The End.