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

    Replied To a Post in Interfaces, The Basics. Have I Got It Right?

    How on earth have I not come across `ReadOnlyCollection<>` before? Every day's a school day. ReadOnly... Always made me laugh, you can't assign a new X to it, but you …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Interfaces, The Basics. Have I Got It Right?

    I also just noticed this: ` public List<TyrePressure> Wheels { get; private set; }` Does that do what I think it does, allows the local member to be set internally …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Gave Reputation to deceptikon in Interfaces, The Basics. Have I Got It Right?

    > My main focus of this question is the use of objects within Interfaces, is this common practice, or even acceptable? Your interfaces contain properties rather than objects, which is …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Interfaces, The Basics. Have I Got It Right?

    Great Deceptikon, as per usual (How have you been btw). I am going to spend much more time discecting your detailed response for future referance when designing a structure. The …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Edited Interfaces, The Basics. Have I Got It Right?

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

    Edited Interfaces, The Basics. Have I Got It Right?

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

    Edited Interfaces, The Basics. Have I Got It Right?

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

    Edited Interfaces, The Basics. Have I Got It Right?

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

    Created Interfaces, The Basics. Have I Got It Right?

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

    Began Watching Interfaces, The Basics. Have I Got It Right?

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

    Replied To a Post in Select Rows That "Sum Of" Equate To Required Value

    It's ok, I was probing for a SQL function or routine that may have provided the solution to this problem. Ok, plan B then.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Select Rows That "Sum Of" Equate To Required Value

    Please don't worry about the formatting of the numbers as these images are just for display purposes
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Edited Select Rows That "Sum Of" Equate To Required Value

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

    Edited Select Rows That "Sum Of" Equate To Required Value

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

    Edited Select Rows That "Sum Of" Equate To Required Value

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

    Edited Select Rows That "Sum Of" Equate To Required Value

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

    Created Select Rows That "Sum Of" Equate To Required Value

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

    Began Watching Select Rows That "Sum Of" Equate To Required Value

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

    Replied To a Post in How to click button within a Iframe in a WebBrowser Control.

    Bugger. That's beyond my knowledge I'm afraid. Maybe you could post that response in web development and ask about security within iFrames. I think the VB side is ok.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in How to click button within a Iframe in a WebBrowser Control.

    Ok, this is going to hit every <a> tag in the iframe with invoke onclick, but give it a shot Dim theElementCollection3 As Windows.Forms.HtmlElementCollection 'This line now includes access to …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in How to click button within a Iframe in a WebBrowser Control.

    If this is your own HTML source you can give the <a> tag an id. in this case "Test" then use the following code. Dim theElementCollection3 As Windows.Forms.HtmlElement theElementCollection3 = …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Began Watching How to click button within a Iframe in a WebBrowser Control.

    Hi ive been trying to click a close button within a iframe within a webbrowser control.. my code works in WebBrowser.Document not Reading Outterhtml="x" Try WebBrowser1.Document.GetElementById("bannerClose").InvokeMember("Click") Catch ex As Exception …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in How to click button within a Iframe in a WebBrowser Control.

    I'm not 100% but wouldn't you need to invoke the "onClick" member?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Google Polymer

    Hopefully you should be able to see a tall blue header with two buttons (with splash effect). When you scroll down, the header should shrink down and the text is …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Edited Google Polymer

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

    Created Google Polymer

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

    Began Watching Google Polymer

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

    Replied To a Post in Mouse events, timer and circle

    BASIC VERSION: for example, if your area was a rectangle (RX,RY,RW,RH) and the box is 10,10,10,10 then If Mouse.X > RX and Mouse.X < RX + RW And Mouse.Y > …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in How to read magnetic card

    Did you know that the only data stored on a bank card is the information that is actually printed in plain view on the card. PIN, Address etc aren't in …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in My Respects.

    Can this be moved onto the correct thread diafol?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Began Watching What's up with Windows 10?

    I hear rumours that Windows 10 is on the way. Is this true? What happened to Windows 9? Does anybody out here have any ideas?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in What's up with Windows 10?

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

    Began Watching How to read magnetic card

    Hi Dw I'm currently doing my research on card development and processing. I've found out that this card has three tracks but only track 1 and two are encoded and …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in How to read magnetic card

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

    Created My Respects.

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

    Began Watching My Respects.

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

    Began Watching calendar approach vb net

    Dear forum i would like some advices regarding a calendar in vb net and mysql(wamp).. So my question is to suggest some approaches to achieve this result. I have thought …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in calendar approach vb net

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

    Replied To a Post in Import Excel File to DB2

    Just out of interest Xuexue. How did you end up doing this?
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Import Excel File to DB2

    ddanbe has provided two great examples of reading the Excel sheets. And [This Link](http://www-01.ibm.com/support/knowledgecenter/SSEPGG_9.7.0/com.ibm.swg.im.dbclient.adonet.ref.doc/doc/DB2BulkCopyClass.html) directly from IBM shows you how to parse a DataTable into DB2 it's in C# but …
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Marked Solved Status for Text Data Type or Separate Text File

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

    Replied To a Post in Text Data Type or Separate Text File

    Thanks Diafol. Just what I needed to know.
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Created Text Data Type or Separate Text File

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

    Began Watching Text Data Type or Separate Text File

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

    Began Watching Import Excel File to DB2

    How can I upload the data from an Excel Spreadsheet to my database in DB2? Thanks! :)
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Replied To a Post in Import Excel File to DB2

    Could you not parse the spreadsheet via a DataTable first? SpreadSheet -> DataTable -> DB2
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Edited Comparing Password SHA1 Hash

    Using .Net's SHA1 Crypto Service to compare hashes between a user's password and their stored hashed password. Simplez =0)
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Created Comparing Password SHA1 Hash

    Using .Net's SHA1 Crypto Service to compare hashes between a user's password and their stored hashed password. Simplez =0)
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Began Watching Comparing Password SHA1 Hash

    Using .Net's SHA1 Crypto Service to compare hashes between a user's password and their stored hashed password. Simplez =0)
  • Member Avatar for J.C. SolvoTerra
    J.C. SolvoTerra

    Began Watching Mouse events, timer and circle

    HI, VB.net i drew a circle and an arc in the form (resolution to my laptop screen size) I want timer one to be switched on when the mouse hoves …

The End.