65 Posted Topics
Re: Have you seen this? [Click Here](http://www.idautomation.com/barcode-faq/2d/maxicode/) | |
Re: do you mean a clock that counts every time the minute hand is over the hour hand? if so... your answer should actually be 12 Any way, just for a giggle. Here's some classic clock maths. Copy and paste this code into your form. The forms title will count the … | |
Re: Doesn't look too easy in VB6 I'm afraid, a quick google search turned up this http://www.vbforums.com/showthread.php?17725-About-Constents-in-Msgboxs It looks like subclassing to me. | |
I have used several methods to save a program's settings in the past. * System Registry * INI files (Encrypted\Plain) * XML file as a resource or external file * XML app.config etc. I'm wondering either: 1. What's your preferred method for saving your program's settings? 2. Is there a … | |
Re: If you mean something like this...  Then I believe I can help. If you are still around and you haven't figure it out then let me know. I'm going to paste the code any way for other people to get a rough idea of whats happening behind the … | |
Re: Here's two examples of what you are looking for. They certainly have clues MSDN [Click Here](http://msdn.microsoft.com/en-us/library/ms251839(v=vs.90).aspx) DIC [Click Here](http://www.dreamincode.net/forums/topic/243741-using-excel-in-vbnet/) I hope they help. | |
Re: do you mind if I ask you what UI environment you are using, eg Winforms or WPF? Or are you asking specifically about layout, navigation etc? | |
I'm currently working on a collection of sub-projects, one of which was a backup manager. I needed to be able to allow the user to specify a backup time and a repeat interval. After thinking about the solution, decided it would be best for the user to provide an Initial … | |
Re: I'd like to throw my 2 cents in here. I totally agree with oussama_1 regarding the .Net side. I chose VB, to this day I regret not choosing C#. It shouldn't take me too long to traverse when I'm ready, but for all the arguments for and against VB.Net and … | |
Re: I think you need to add a reference to the Flash library. Or copy the DLL to the projects bin\release folder. | |
Re: Ok, I thought I'd play with this. I updated your CSV to check the program, My CSV is like this (Baring in mind, this isn't an effective CSV reader as CSV value may contain commas etc" Heres My Version of the CSV team1,team2,win hawks,celtics,1 hawks,knicks,1 hawks,76ers,0 hawks,lakers,0 hawks,celtics,1 76ers,celtics,1 76ers,lakers,1 … | |
Re: Hang in there Deep Modi. I think i've found how to extract contents of a Wad file. Give me time to familiarise myself with it and I'll see what I can do. | |
Re: I find this method really useful. AllowedCodes also holds values for Delete, BackSpace, Home, End, Numeric Keypad Numbers, Standard Numbers etc. Private Sub TextBox1_KeyDown(sender As Object, e As KeyEventArgs) Handles TextBox1.KeyDown If Not (KeyAllowed(e.KeyCode)) Then e.SuppressKeyPress = True End Sub Private Function KeyAllowed(Key As System.Windows.Forms.Keys) As Boolean Console.WriteLine(Key) Dim AllowedCodes() … | |
Re: -Hi Bud, It looks like you are writing all the file bytes at once strr.Write(file, 0, file.Length) Typically when you want to generate a progress you need to write chunks of the file eg... Using fs As New FileStream(localFile, FileMode.Open, FileAccess.Read, FileShare.None) 'This is the buffer that will hold the … |
The End.