- 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)
65 Posted Topics
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:  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  and Captures  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 | |
Hey guys. I'm writing myself an online toolbox (for my code snippets). I have a "Snippets" table. My question is this. Would you save the snippet source in a Text column or would you have the snippet saved to a text file and the Snippet entry would reference the file … ![]() | |
Using .Net's SHA1 Crypto Service to compare hashes between a user's password and their stored hashed password. Simplez =0) | |
 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 these tables have an FK ImageID linked to the Image table's PK idImage. I'm wondering, if I set both relationship … | |
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 getting a little beyond a concept I had been taught from a young age. Am I doing this right. The … | |
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 and paste the form code and watch it run. (p.s it's in degrees, note minutes and seconds)  | |
Re: 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": true, "icon": "folder", "root": "app_folder", "contents": [{"rev": "5929d57df1", "thumb_exists": true, "path": "/flower.jpg", "is_dir": false, "client_mtime": "Mon, 15 Sep 2014 19:20:02 … | |
Re: 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 TimeSpan will return the hours worked and minutes in 1\10 intervals. Private Sub Button1_Click(sender As Object, e As EventArgs) Handles … | |
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 into .Net that I came across on my investigations. 1. Adjust Image Quality 2. Flip Image Horizontally 3. Flip Image … | |
Re: 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, with a picturebox (Change no properties) and the button. place the code in the button and load an image into … | |
Re: 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 are other alternatives. First there are a few DBMS or RDBMS <--- Learned that too. MySQL Workbench, MS SQL Server, … | |
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 data table? Using a standard object setup for data binding (iNotify etc.) you can easily update your program's image propertie's … | |
Re: I'm assuming... oddly once again you just want to pan the picturebox inside your panel, using the panel as a clipping device... Here, this is the panning code you need. Private mDown As Boolean = False Private oPoint As Point = Nothing Private offPoint As Point = Nothing Private Sub … | |
Hi WebDev Guys, Ok, I have a very general question as the title suggests. I am very much a back-end developer and have only dabbled in web development. I would consider myself a total ammature when it comes to Web Development though am confident after playing with PHP, JavaScript, JQuery, … | |
NOTE: The games GUI is not fully implemented, so changing it's image and difficulty is done manually in the Button.Click Event NOTE: Whether you download the VS2013 source file or copy and paste the code, you need to download, and extract the two image files to the project's "Bin\Debug" directory. … | |
>Take Heed There are lots of things to be aware of with the Windows Registry. In most cases the best thing to be aware of is that ideally you should avoid playing with it at all costs. Alas, we are what we are and we do what we do. My … | |
Re: (This isn't an answer, just reminising) I remember when I used to make oooooold games like packman etc (2d) the map data was stored in a simple 2d array. One of the easiest methods known to man. There were different arrays fo each level, one held floor\wall data, others held … | |
Re: I know this is an old thread Deep, but I started playing around with WPF a couple of months ago, within a day I'd managed to create a really nice navigation system. I strongly urge you to persue WPF in the future... Even if it's not WPF than XAML with … | |
What on earth is going on.I'm trying really hard to build a good reputation on this site putting a lot of effort into responses i tackle. Last night I recieved 3 more down votes and i cant even see what for. I thought they may have been residual votes from … | |
Re: just to make sure I'm not getting the wrong end of the stick here. I'd like you to play part in the following scenario. Post From :TheNoobestNoobEver Rep:0 Increase Rep:0 Decrease Rep:0 Question: I'm brand new to VB.Net, and for my school project I have been asked to run a … | |
Re: textbox.text = "msaccess data" =0) |
The End.