65 Posted Topics

Member Avatar for Mike Bishop
Member Avatar for rianbattle
Member Avatar for rianbattle
0
2K
Member Avatar for filipgothic

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 …

Member Avatar for J.C. SolvoTerra
0
312
Member Avatar for kimangel

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.

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

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 …

Member Avatar for J.C. SolvoTerra
1
404
Member Avatar for Start4me

If you mean something like this... ![1f7df5a709ed290e8a87f9ee08a132b2](/attachments/large/4/1f7df5a709ed290e8a87f9ee08a132b2.png "1f7df5a709ed290e8a87f9ee08a132b2") 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 …

Member Avatar for Reverend Jim
0
2K
Member Avatar for Jeline_1

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.

Member Avatar for Santanu Das
0
2K
Member Avatar for JOSheaIV

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?

Member Avatar for ddanbe
0
170
Member Avatar for J.C. SolvoTerra

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 …

Member Avatar for J.C. SolvoTerra
1
693
Member Avatar for shahid_650

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 …

Member Avatar for J.C. SolvoTerra
0
349
Member Avatar for IT_Techno

I think you need to add a reference to the Flash library. Or copy the DLL to the projects bin\release folder.

Member Avatar for J.C. SolvoTerra
0
204
Member Avatar for Pavan_6

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 …

Member Avatar for J.C. SolvoTerra
0
199
Member Avatar for Deep Modi

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.

Member Avatar for Deep Modi
0
3K
Member Avatar for AliGulSoomro1

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() …

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

-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 …

Member Avatar for J.C. SolvoTerra
0
517

The End.