- Strength to Increase Rep
- +6
- Strength to Decrease Rep
- -1
- Upvotes Received
- 71
- Posts with Upvotes
- 57
- Upvoting Members
- 24
- Downvotes Received
- 8
- Posts with Downvotes
- 4
- Downvoting Members
- 4
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)
Re: 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. | |
Re: 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 … | |
# 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 … | |
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 … | |
Re: 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) | |
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? | |
Re: 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 … | |
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 … | |
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 … | |
Re: 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. | |
Re: 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 … | |
Re: 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 … | |
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 … | |
Re: Darn it VB.... | |
Re: 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, … | |
Re: 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"); … | |
=======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 … | |
Re: 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. | |
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 … | |
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 … | |
Re: 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. | |
Re: 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... | |
Re: I'm not 100% but wouldn't you need to invoke the "onClick" member? | |
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? | |
Re: 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 … | |
Re: [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 … | |
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. | |
Re: 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 … | |
Re: Could you not parse the spreadsheet via a DataTable first? SpreadSheet -> DataTable -> DB2 |