Posts
 
Reputation
Joined
Last Seen
Ranked #276
Strength to Increase Rep
+5
Strength to Decrease Rep
-1
90% Quality Score
Upvotes Received
71
Posts with Upvotes
57
Upvoting Members
24
Downvotes Received
8
Posts with Downvotes
4
Downvoting Members
4
16 Commented Posts
~63.3K People Reached
About Me

Live, Love, Code

Interests
IT, Outdoors... IT Outdoors
PC Specs
Intel i7-4770 @3.4Ghz, 16Gb Ram, 2x2Tb SATA3, Win 8.1 64Bit, NVidia GF GTX 760 (4Gig)
Favorite Tags
Member Avatar for oussama_1

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.

Member Avatar for joy_731
1
3K
Member Avatar for Ancient Dragon

One morning a woman gets up to find her clothes full of powder. "What's this?" she asks her husband. "Slim Fast", he replies, "Maybe it could help you lose weight". The next morning, as the husband is getting dressed, he notices a pile of powder in his underwear. "What's this …

Member Avatar for jkon
4
4K
Member Avatar for J.C. SolvoTerra

# 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 and ThreeFish. BlowFish is an increddibly popular and very strong algorythem. Because it conforms to Kerckhoffs's Principal [Explained Here](http://en.wikipedia.org/wiki/Kerckhoffs's_principle), even …

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

There are many examples of compressing files in VB.Net. So many of these examples are using third party libraries which is just not neccesarry. People were saying that files and archives exceeding 4Gb couldn't be used... I hate restrictions and decided to "Stick it to Microsoft" To get a better …

Member Avatar for Cristhian_1
1
2K
Member Avatar for djjeavons

https://www.daniweb.com/software-development/vbnet/threads/480190/importing-excel-file-to-report-viewer-in-vb-net Here's a vb.net version... you need everything upto fill(dt)

Member Avatar for vivek_sharma
2
2K
Member Avatar for J.C. SolvoTerra

Hey, I was just wondering, If you have any old screen dumps of DaniWeb roughly around the time when it kicked off. I'd love to see what now and then looks like in comparison. Do you think you have anything Dani?

Member Avatar for Aeonix
0
360
Member Avatar for XP78USER
Member Avatar for TnTinMN

Hi Jo 2, I've just spotted this, and thought I'd point out a much simpler way of doing this 'Load your image file, essentially locking access to it Dim BMP As Bitmap = Bitmap.FromFile("C:\Users\Jay\Desktop\test.jpg") 'When assigning to your picture box, create a new bitmap PictureBox1.Image = New Bitmap(BMP) 'Dispose of …

Member Avatar for J.C. SolvoTerra
0
6K
Member Avatar for J.C. SolvoTerra

Oh No, not another LockBits demo. Well hopefully this demo may also give you a little in site into actually playing with, and calculating some simple effects as well as understanding the advantages of LockBits as apposed to GetPixel and SetPixel. # A Useful Note. # It is important to …

Member Avatar for J.C. SolvoTerra
5
665
Member Avatar for J.C. SolvoTerra

I was wondering if there was an existing method within the .Net frame work which will copy every nth element of an array to a differant array with an initial offset e.g. Original Source Array (Bytes) 11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30 Original Target Array 00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00,00 Source Offset 1 Source Step 3 Target Offset 3 …

Member Avatar for overwraith
0
2K
Member Avatar for Rohith_1

Have you figured this out yet? You seem to have quite a few things to research but if you still need some help just say.

Member Avatar for hericles
0
264
Member Avatar for jez9

Wow, I didn't know GoTo was still valid, please stop that. Well first of all, the flow of this entire operation is a little shaky, however looking at this: If LVProduct.Items(w).SubItems(4).Text = LVProduct.Items(w).SubItems(5).Text Then GoTo Here End If If LVProduct.Items(w).SubItems(4).Text = LVProduct.Items(w).SubItems(5).Text Then GoTo there End If Both conditions are …

Member Avatar for jez9
0
210
Member Avatar for no123

The File.OpenRead, is as you have pointed out locking the file access mode to read only, you should probaly just use Open, which is read\write. When writing your stream, the position within the stream doesn't seem to have changed position, so any writing will occour from the first byte, overwriting …

Member Avatar for cgeier
0
291
Member Avatar for J.C. SolvoTerra

First of all I'd like to say great work on the addition of drafting articles before commiting to editorial however one question. The last two samples I published (Removed tick from "This is a working draft") seems to make the pending article unaccessible, I recently found out that the articles …

Member Avatar for J.C. SolvoTerra
0
349
Member Avatar for Nguyen_4
Member Avatar for Rustatic

When you found GetCursorPos in ther User32.dll, did a little bell not tinkle to the sound of maybe SetCursorPos? =0) I'm a cheeky chap Public Declare Auto Function SetCursorPos Lib "User32.dll" (X As Integer, Y As Integer) As Boolean Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click SetCursorPos(50, …

Member Avatar for J.C. SolvoTerra
0
271
Member Avatar for Nguyen_4

Ok, Let's assume the following table: ![Demo1.png](/attachments/small/4/11422b4e9fa621d6cba041ed1de14cca.png "align-center") And the following code in your Form1 class: SqlConnection sqlCon; SqlCommand sqlCmd; String conString = "Server=SOLVOTERRA-HP;Database=Birthdays; Integrated Security=true"; DataTable dTable; //DGV Cell Content Clicked Event private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e) { //Clear Previous Binding dateTimePicker1.DataBindings.Clear(); //Reset New Binding dateTimePicker1.DataBindings.Add("text", dataGridView1.DataSource, "Birthday"); …

Member Avatar for J.C. SolvoTerra
0
328
Member Avatar for J.C. SolvoTerra

=======Download The Full Solution Below======== This will be my last VB.Net soure as I've made the move to C#. For a recent job application I was given the technical test to create a horse race simulator which would calculate the odds of a runner winning a race of up to …

1
873
Member Avatar for Trench37716

Without going too far in to this have you tried serializing your data response into an object structure, or using LINQ? If serializing or LINQ doesn't make any sense then don't worry too much about it, I may be missunderstanding your requirement.

Member Avatar for J.C. SolvoTerra
0
324
Member Avatar for J.C. SolvoTerra

Hello Dear DaniWeber's. I've been away for some time, and have recently made the transition from VB to C# (Finally). Using C# has opened my eyes to many things that I had either not fully understood, or had a lazy attitude towards. I find myself visiting the core of OOP …

Member Avatar for DaveAmour
0
265
Member Avatar for J.C. SolvoTerra

Firstly, Hi Guys, sorry I've been away so long, I've taken on quite a large project and just haven't had the time for anything. I am having difficulty completing my query. I initially have two tables UserWallet ![b4eb49cf9784417d61d6a5d56c089da9](/attachments/small/4/b4eb49cf9784417d61d6a5d56c089da9.png ) and Captures ![40061e6629b7d4577f1cf2405e54ab01](/attachments/small/4/40061e6629b7d4577f1cf2405e54ab01.png ) So far my query creates a new …

Member Avatar for J.C. SolvoTerra
0
195
Member Avatar for Akhila_1

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.

Member Avatar for Akhila_1
0
433
Member Avatar for ddanbe

I wonder if it has something to with the whole 10, X, ONE trend that seems to be upon us. 9... just doesnt shout NEXT GENERATION like 10... though i imagine it wont be long after when there's a 10.1 10.2 10.n...

Member Avatar for ZZucker
1
405
Member Avatar for TheGuy831
Member Avatar for J.C. SolvoTerra

Sorry guys, I'm just really excited about this. My very first use of Polymer Tags (Need Chrome) [Live Core-Header-Panel](http://www.mysnippets.solvoterra.com/) Looking forward to developing with this. What are your thought's on the fast aproaching Polymer Tags?

Member Avatar for J.C. SolvoTerra
0
115
Member Avatar for Santanu.Das

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, 6, 2, 8, 5, 7, 4} Array.Sort(iVals) If you wanted to reverse the sort order Public Class ReverseComparer : Implements …

Member Avatar for David_50
0
521
Member Avatar for Mr.M

[Wiki](http://en.wikipedia.org/wiki/Magnetic_stripe_card) Seems to provide useful information, more specifically "Each track can either contain 7-bit alphanumeric characters, or 5-bit numeric characters." It also provides information to each byte depending on the card. Baring in mind, depending on the card, and what is written to it, the values can be any alpha-numeric …

Member Avatar for Mr.M
0
203
Member Avatar for J.C. SolvoTerra

Hi guys, I've just read this months Digest and want to offer my repects to Ancient Dragon, Melvin Stober. A sad loss to the community, and indeed to those who knew him personally. Much love to his family. See you on the other side Bro.

Member Avatar for pritaeas
1
96
Member Avatar for dimitris.dimitri.73

Apart from third party controls. I think must of the work here would need to be done, either as a collection of controls built into a user control (Not recommecnded as it will become clunky and unreponsive pretty fast) or actually build your own version using GDI+. Basically, what you …

Member Avatar for J.C. SolvoTerra
0
211
Member Avatar for xuexue

Could you not parse the spreadsheet via a DataTable first? SpreadSheet -> DataTable -> DB2

Member Avatar for J.C. SolvoTerra
0
390