• Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in MsgBox Help

    oops, wrong thread
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 * …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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. …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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...
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Preferred Method For Saving Program Settings

    Note: Serializeable objects must be public.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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. …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 * …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Zooming the picture in a panel

    It's 2013. Is everything ok?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 * …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 * …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 * …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Zooming the picture in a panel

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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? …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Determine Next Event Using DateTime and TimeSpan

    Thanks Reverend Jim. Yeah, I got kinda carried away explaining things. Doh!
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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 …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    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.