-
Replied To a Post in MsgBox Help
oops, wrong thread -
Replied To a Post in VB 8 cloak program
Ok. Though thinking about it there is only 11. 12:00 is the start point 11:59 is the end point there are 60 minutes in an hour but they go from … -
Replied To a Post in VB 8 cloak program
Sorry its 12 if you count the the stary and end podition. Its only 11 if you dont count the start position. Ignore previous post about it 13 -
Replied To a Post in VB 8 cloak program
Ok so starting at 12 isn't being counted as hands over each other... i suppose if you start at 12 and end at 12 technically they're over each other 13 … -
Replied To a Post in VB 8 cloak program
Is this for a school project? If it is I'll provide you with the solution but make it into a kind of tutorial to help you understand exactly whats going … -
Replied To a Post in VB.Net Form Theme.
... I've not taught myself yet hahahaaaa (not enough to teach). In addition, I'm pretty old school. Instead of using blends clever ui all the effects and storyboards are in … -
Replied To a Post in VB 8 cloak program
Make sure though, if you are using Now, you covert the 24hr hour to a 12hr hour. -
Replied To a Post in VB 8 cloak program
Ok. Well if your not too fussed about the accuracy of the physical hands you could simply do If Now.Minute = Now.Hour x 5 then OverCounter +=1 This is basically … -
Began Watching VB.Net Form Theme.
I am creating the program, But I am tired with the regular form look. I want some theme that can change the look of my program. Last I Used the … -
Replied To a Post in VB.Net Form Theme.
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 … -
Marked Solved Status for Preferred Method For Saving Program Settings
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 * … -
Replied To a Post in VB 8 cloak program
Note: this isn't the most effective way to draw on to the form, just a quick example. -
Began Watching VB 8 cloak program
Greetings, I need help with basic cloak, which counts how many times will small and big pointer on the cloak cover each other, with first one starting at 12 cloak. … -
Replied To a Post in VB 8 cloak program
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 … -
Replied To a Post in code for moving a message box position
Apologies, it looks like I posted entirely the wrong link. http://www.vbforums.com/showthread.php?329373-MsgBoxEx-Extended-Message-Box but unfortunately it is still a lengthy process and requires subclassing -
Gave Reputation to Santanu Das in Retrieving All Tables in MS ACCESS
This is not a good job to create a table for every status. Add a field of the status, which describe the seat is for Regular, disabled or VIP's. and … -
Replied To a Post in Preferred Method For Saving Program Settings
Can anyone provide links/source to good working examples design and run time. Creating, editing and general management of the settings namespace. I'm currently pottering about with MSDN... -
Replied To a Post in Preferred Method For Saving Program Settings
I totally agree reverend jim. For much larger data sets i do prefer it. I tend to write a mutable class to allow the easy ammendments of new variables. But … -
Replied To a Post in Preferred Method For Saving Program Settings
Note: Serializeable objects must be public. -
Replied To a Post in Preferred Method For Saving Program Settings
Here's a simple set of settings\Data. Much more in-depth structures can be used. Imports System.IO Imports System.Xml.Serialization Public Class Form1 <Serializable()> _ Public Class Settings Private _Name As String Public … -
Replied To a Post in Preferred Method For Saving Program Settings
I can see how a database would be very useful for much larger projects that may have shared resources and settings. -
Replied To a Post in Preferred Method For Saving Program Settings
I too am a stickler for serializing XML or even a basic INI. Have never used the My.Settings object, though now I will fully research it as it's probably the … -
Gave Reputation to deceptikon in Preferred Method For Saving Program Settings
> What's your preferred method for saving your program's settings? It depends on the settings and the complexity of the program in my case. For simpler things, I prefer app.config. … -
Gave Reputation to Reverend Jim in Preferred Method For Saving Program Settings
I find it easiest to use My.Settings. I don't know if there is an industry standard but I prefer to avoid the registry whenever possible. -
Tweeted Preferred Method For Saving Program Settings
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 * … -
Replied To a Post in Zooming the picture in a panel
It's 2013. Is everything ok? -
Edited Preferred Method For Saving Program Settings
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 * … -
Created Preferred Method For Saving Program Settings
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 * … -
Began Watching Preferred Method For Saving Program Settings
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 * … -
Began Watching Zooming the picture in a panel
I have this code: If e.Delta <> 0 Then If e.Delta <= 0 Then If PictureBox1.Width < 500 Then Exit Sub 'minimum 500? Else If PictureBox1.Width > 2000 Then Exit … -
Replied To a Post in Zooming the picture in a panel
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 … -
Replied To a Post in importing excel file to report viewer in vb.net
Yeah, I thought Jeline 1 might be able to figure it out from those articles... Ok, I'll do it... 'Imports System.Data.OleDb 'Imports Microsoft.Reporting.WinForms Private Const EXCEL97 = "Provider=Microsoft.Jet.OLEDB.4.0; _ Data … -
Began Watching importing excel file to report viewer in vb.net
hi everyone im really new to report viewer in vb.net and i wanto import the data from an excel file to the reportviewer in vb.net can anyone help me out? … -
Replied To a Post in importing excel file to report viewer in vb.net
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. -
Replied To a Post in Determine Next Event Using DateTime and TimeSpan
Thanks Reverend Jim. Yeah, I got kinda carried away explaining things. Doh! -
Tweeted Determine Next Event Using DateTime and TimeSpan
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 … -
Edited Determine Next Event Using DateTime and TimeSpan
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 … -
Edited Determine Next Event Using DateTime and TimeSpan
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 … -
Created Determine Next Event Using DateTime and TimeSpan
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 … -
Began Watching Determine Next Event Using DateTime and TimeSpan
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 … -
Began Watching Tips for Better UI Designing
I have been developing window form applications for probably the last 4 or 5 years, and have drasticially improved my UI designing, which I am rather proud of, as it's … -
Replied To a Post in Tips for Better UI Designing
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? -
Began Watching best language for software developer?
i am a student of computer science , i like to be a software application developer , but i am confused still about be ** a java software developer or … -
Replied To a Post in best language for software developer?
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 … -
Began Watching code for moving a message box position
Hi expert, Just want ot ask the correct code format for moving message to a new location. MsgBox "Do you want to save?", vbYesNo, 10, 10 Thanks -
Replied To a Post in code for moving a message box position
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. -
Began Watching problem when create setup project with visual studio 2010
I have this problem when I add new project -> other projects -> visual studio installer -> Setup wizard to create setup project after finish it gives me this problem … -
Replied To a Post in problem when create setup project with visual studio 2010
I think you need to add a reference to the Flash library. Or copy the DLL to the projects bin\release folder. -
Marked Solved Status for ok. that's me leaving daniweb
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 … -
Replied To a Post in ok. that's me leaving daniweb
ah, ok. That really does help with my concern. Infact that's perfect. Thanks.
The End.