KushMishra 38 Senior Technical Lead

I think you may try what "cgeier" has suggested. Hope that would help you.

KushMishra 38 Senior Technical Lead

Hi, I think to read some text file you may use FileStream concept and then you may parse that text file in order to search a particular value.

KushMishra 38 Senior Technical Lead
strRusty_gal commented: Thanks +2
KushMishra 38 Senior Technical Lead
KushMishra 38 Senior Technical Lead

Hello, it would be a bit confusing if someone provides their own code for this as you may face problems again when integrating back in your application so it would be great if you could possibly post in your code here so as to get a quick reply and also understand the error reason you are facing.

KushMishra 38 Senior Technical Lead

Instead of writing the following :-

void InitButtonActions() {
    parent.OpenButton.Click += new EventHandler(delegate { CurrentControl.Add(); }); 
}


public TutorialControl CurrentControl {
    get { return currentcontrol; }
    set {
        if (currentcontrol == value)
            return;
        currentcontrol = value;
    }
}

Try swapping both and write as :-

public TutorialControl CurrentControl {
    get { return currentcontrol; }
    set {
        if (currentcontrol == value)
            return;
        currentcontrol = value;
    }
}


void InitButtonActions() {
    parent.OpenButton.Click += new EventHandler(delegate { CurrentControl.Add(); }); 
}

It may help you because now the CurrentControl has been initialized and it may not throw any error if you do CurrentControl.Add()

KushMishra 38 Senior Technical Lead

Hi, it seems like your CurrentControl is of type TutorialControl and then you are calling a method Add() from this class but we don't have any idea what is the error you are getting in CurrentControl.Add(); and moreover the members of that class are not visible here.
So, it would be better for us to help you out if could possibly paste your code and so that someone could take a closer look on the same.

aatish2327 commented: good suggestion +0
KushMishra 38 Senior Technical Lead

Hi,

Check if your partition is password protected (like Bitlocker Encryption etc.)

aatish2327 commented: nice attempt to solve the question +0
KushMishra 38 Senior Technical Lead

Hello Dee, In my point of view .Net should be preferred because its a new technology and obviously a new technology comes with some new enhancements and .Net provides you the security,robustness,reliability and faster web pages although I don't know much about PHP but still its very obvious to think that why most of the programmers have switched to .Net from PHP.
There may be many articles on the Internet and its just like a question : Whether you want to eat an orange or an apple?
What does it matter to you if you're getting something to eat and the major point is that you're not empty stomach after eating either of the two fruits i.e., your same work is done with both of the technologies.So, decision is yours whether you choose an old language or a new one.
Hope that helps.
Thanks.

KushMishra 38 Senior Technical Lead

are you sure that

allow users="?"

....I think it should be

deny users="?"
KushMishra 38 Senior Technical Lead

Hello,

Actually you're facing a very common problem in SQL.........My opinion to you is that you should replace the spaces by "CamelCasing" or just by "Underscores"......If you're using a datagrid or gridview etc. to display those items,just go to their properties and write in the "AlternateDataString" column or something likewise........
Hope this helps ya.......