Search Results

Search found 4 results on 1 pages for 'elvispt'.

Page 1/1 | 1 

  • Running Windows 8 Consumer Preview to Pro

    - by elvispt
    Currently I have Windows 8 Consumer Preview installed I tried running the Windows 8 Upgrade Assistant, and it tells me, after checking for compatibility, that I can buy Windows 8 Pro for 29.99euros. Will I have any issues with this? Will I be able to perform a clean install from the downloaded file? I heard that I could not get Windows 8 Pro at this price, only If I had Windows 7 installed. The bottom line is, what kind of issues can I expect if I decide to go down this path? Will it ask me later for a key of Windows 7 to validate? Thanks.

    Read the article

  • Delete Grub and OpenSuse but keep Windows 7.

    - by elvispt
    Hi. Here is my problem. I have OpenSuse installed alongside Windows 7. Grub is the boot loader from where I access OpenSuse and Windows 7. I want to delete Grub and also the OpenSuse partitions. My first, failed, approach was to insert the Win7 DVD, choose Repair your computer and then enter the commmand prompt. I then typed "bootrec /fixmbr" and restarted. It didn't worked. Grub was still there, so was Windows7. I then tried using "bootrec /fixboot and /rebuildbcd and neither worked. So what can I do to fix this? I remember when I was using WinXP this was much simpler. I would just type fixmbr and that was it. Any clues? Thank you.

    Read the article

  • List overwriting data on all positions

    - by elvispt
    I created a class with 3 fields: class Gente { int _ID; string _nome, _sexo; public Gente() { _ID = 0; _nome = ""; _sexo = ""; } public int ID { set { _ID = value; } get { return _ID; } } public string Nome { set { _nome = value; } get { return _nome; } } public string Sexo { set { _sexo = value; } get { return _sexo; } } } Then I declared a List from that class and an object from that class so that I can be able to add to the List. List<Gente> Alunos = new List<Gente>(); Gente professor = new Gente(); The first time I do the Alunos.Add(professor); to the list it correctly sends the information to the 0 position. But when I do it second time it overwrites everything on position 0 with the new data besides adding the new data to a new position, 1.

    Read the article

  • Closing a form and then call another one.

    - by elvispt
    Hi. I want to close the current form I'm on (MainForm) and then opening a second one (Form). I've tried: private void buttonStartQuiz_Click(object sender, EventArgs e) { this.Close(); Form2 form2 = new Form2(); form2.ShowDialog(); } Or adding the this.Close(); after the ShowDialog also doesn't work. Any hints? Thank you.

    Read the article

1