• Member Avatar for Mike Askew
    Mike Askew

    Began Watching fetch log file from Fingerprint Reader

    I am Using a fingerprint Scanner for attendance posting. My aim is to copy the attendance log files from the fingerprint reader machine.the machine is connected to one of the …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in fetch log file from Fingerprint Reader

    > I am not using the sdk provided by the vendor There is your first issue. You will need to use it and write seperate classes depending on which scanner …
  • Member Avatar for Mike Askew
    Mike Askew

    Gave Reputation to pritaeas in API CV Data Error

    > thought that by leaving them the way we store them in our own back-end Your back-end implementation shouldn't be exposed. Let app developers make up their own mind. I …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in API CV Data Error

    Never noticed the education bit actually, good spot. Either way the value is still not right
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in API CV Data Error

    Either / Or.. something doesn't line up :D
  • Member Avatar for Mike Askew
    Mike Askew

    Created API CV Data Error

    Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching API CV Data Error

    Running Dani's profile as an example I get the JSON back containing: "education":[ { "key":"education", "value":"B.S. Computer Science", "organization":"Hofstra University", "start":"September 2000", "end":"December 2005", "description":"I majored in Computer Science and …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Pure C# to VB.Net Converter

    Hello All, I went through many websites and did not find any converter that could purely convert C# syntax to VB syntax. However there are many converters available on the …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Pure C# to VB.Net Converter

    As this was ressed.. some of us on the forum know a bit of both languages and can help you if needed. I will normally look at conversion topics when …
  • Member Avatar for Mike Askew
    Mike Askew

    Gave Reputation to Ketsuekiame in changing password whats the error

    As a note, you should also wrap the command in a using statement too ;)
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in changing password whats the error

    As Ketsuekiame said, you already open the connection on line 39 and don't shut it then, hence the exception you see being thrown. A good practice here is to use …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching changing password whats the error

    using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; using System.Data.OleDb; namespace WindowsFormsApplication1 { public partial class Form2 : Form { OleDbConnection con …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in changing password whats the error

    What error do you get and on which line does it occur? It is difficult to help when you provide us with minimal information regarding the error.
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    Forgot about this over the weekend. You may need to play with intellisense and see what is actually available to you from the API. Again can't offer much more help …
  • Member Avatar for Mike Askew
    Mike Askew

    Gave Reputation to Ketsuekiame in Binding DropDownList's SelectedIndex to 0 if value does not exist

    > Ketsuekiame: > It seems that you dont understand what the thread starter is asking. > > What he wants is when selectedvalue does not exist in the list of …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Apply Microsoft Office's theme to my windows application

    Is it possible to implement theme of Microsoft Office in my windows application. I mean when anyone changes theme of Microsoft Office it should also make change the theme of …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Apply Microsoft Office's theme to my windows application

    Also here: [Stack Overflow](http://stackoverflow.com/questions/21096722/apply-microsoft-offices-theme-to-my-windows-application) Watching this out of interest
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching C# Printing

    Any one please help me. i done a little project using thermal printer. Now my Tl ask me to convert it to Dot Matrix printer. Can u send any sample …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in C# Printing

    > am not able to arrange text in proper manner in text file. can you please tell me how to do it...? Make a new thread and we could tell …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Binding DropDownList's SelectedIndex to 0 if value does not exist

    > Set your combobox Text property to the default value you want to display. > If the selected index doesn't exist in the DB, set your SelectedIndex on the combo …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    I have no clue about how the scanner you are working with functions. So cannot help debug issues with it. I simply did the code convert. What error does it …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    As this is university work you should really have tried doing it with the conversion tools but I had little to do for 15 mins and was interested to see …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in C# Excel Interop Manipulation

    Functioning code for those interested. private void button1_Click(object sender, EventArgs e) { string FileName = @"D:\FooBar.xlsx"; Excel.Application xlApp = new Excel.Application(); Excel.Workbooks xlWBs = xlApp.Workbooks; Excel.Workbook xlWB = xlWBs.Open(FileName); ProcessChanges(xlWB); …
  • Member Avatar for Mike Askew
    Mike Askew

    Marked Solved Status for C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Gave Reputation to jhoisington in C# Excel Interop Manipulation

    You are modifying the object valueArray, not the actual values in the workbook. Locking the file until you kill off Excel has been an annoying feature of Excel for years. …
  • Member Avatar for Mike Askew
    Mike Askew

    Edited C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Edited C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Edited C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Edited C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Created C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching C# Excel Interop Manipulation

    I've been toying with some code for the last thirty mins to try move a substring from one cell to another. In debug I can see the correct contents being …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Code Posts

    (Off topic? if so, sorry) Why are my posts here not color coding when I use the 'Code' or 'Inline Code' entries? E.g.: var x = 1; function callme(y) { …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Code Posts

    One is very confused.
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching how to do a star pyramid with C# using textbox to read and display ???

    how to do a star pyramid with C# using textbox to read and display ???
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in how to do a star pyramid with C# using textbox to read and display ???

    Can you show an example of what you wish to do. Also what code have you got so far? I am not paid to write your code for you.
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    You're welcome to post the code, I personally haven't touched VB.Net in years so may not be able too. Someone else maybe could.
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Reset button to reset contents of textboxes

    Hi there guys I just want to know how I can create a reset button that will erase all the contents written by a user in textboxes? I am creating …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Reset button to reset contents of textboxes

    Would be better to start a new thread. By a single instance do you mean like one line or in one method?
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    Have you tried experimenting with the provided libraries? Their site also confirms it supports C# so you may just need to get the correct libraries.
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Can you help me? "how do I connect the fingerprint with c #"

    i'm working on the final project in my university. But i don't know how to connecting fingerprint tool with my application.. i have a SDK from my fingerprint tool, but …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Can you help me? "how do I connect the fingerprint with c #"

    Are you sure the tool is compatible with C# then? The producer of the fingerprint tool sadly gets to decide how you connect to their products and so if the …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Binding DropDownList's SelectedIndex to 0 if value does not exist

    i try to fetch the data from the database and display text in the dropdownlist i got the error message `'dropdownlist' has a selectedvalue which is invalid because it does …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Binding DropDownList's SelectedIndex to 0 if value does not exist

    Please provide the code you are working with
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Reply via email

    > Do you mean you're going to turn it on again then? :) Nope, meant turn it off (Was currently turned on) as it wasn't what I thought it would …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Reply via email

    Ok so we just got the concept wrong :) I'll turn it off again then, the idea would have been nice if implemented in the same way the current notifications …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching Reply via email

    OK ... spent all last night squashing bugs ... now it's here for prime time!! Please go into your member profile and select the option to receive mailing list-style notifications. …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in Reply via email

    Did I miss something in how this works? Assumption was that it would be like the usual notification emails but allows you to reply to the thread via the email. …
  • Member Avatar for Mike Askew
    Mike Askew

    Replied To a Post in How To Maintain label Value After PostBack With Out HiddenField, Session.

    > i think you can add value of label in query string . and on page load event just check if it is post back then get the value from …
  • Member Avatar for Mike Askew
    Mike Askew

    Began Watching How To Maintain label Value After PostBack With Out HiddenField, Session.

    In ASp.net Page I Need To Know How To Maintain The Value Of A Particular Label Assign By the HTML Button Click. after Postback Done. with out converting label to …
  • Member Avatar for Mike Askew
    Mike Askew

    Stopped Watching What movie have you seen lately?

    Hi I watch a few movies the past weekend, just to relaxed and not think about work. I saw a few movies. I saw: **The Raid Redemption** - The best …

The End.