Jump to content

v0nN3umann

Member
  • Posts

    36
  • Joined

  • Last visited

Awards

This user doesn't have any awards

Profile Information

  • Gender
    Male
  • Location
    Germany
  • Interests
    Programming
    Software Development
    Hardware
    Digital electronics
    Audio Gear
    Electronic Music
  • Occupation
    Software Engineer (.NET)

System

  • Operating System
    Windows 10; Ubuntu 18.04

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace ZFX_News { public partial class Form1 : Form { public Form1() { InitializeComponent(); timer1.Start(); } private void Timer1_Tick(object sender, EventArgs e) { progressBar1.Increment(1); //try something like this: //check if the value of your progress bar is the same as the maximum if(progressBar1.Value == progressBar1.Maximum){ //stop timer because you wont need it anymore timer1.Stop(); //create and show new form Form2 frm2 = new Form2(); frm2.Show(); } } //This event is fired if the Progress Bar is clicked, I don't think this is what you wanted private void ProgressBar1_Click(object sender, EventArgs e) { } } } I think this is the solution to your problem. But I'm pretty sure that it was already answered in your last post.
  2. <h2 style="display:inline">Total price </h2><h1 style="display:inline"/> Should also work. But I would use a separate CSS-File for the styling
  3. I agree. But in my experience it can be a little bit more difficult to use a mac for some courses. For example if you have a mac-specific problem and the teacher only knows windows. But this shouldn't happen regularly.
  4. IMO it is not practical to use a windows server in a small network like this. It just takes too long to configure everything and if your windows server fails, noone can login anymore. If you really want to do it, maybe try this: https://blogs.technet.microsoft.com/canitpro/2017/02/22/step-by-step-setting-up-active-directory-in-windows-server-2016/
  5. Yes, if you have two strings with the exact same data, both are references to the same object on the heap. But if you change a string, a new object is created and the reference is altered to that object. String str = "ABC"; //Basic String str += "A"; //New Object is created, old object exists until garbage collection
  6. It looks like there is something wrong with your installation of Visual Studio Tools for Unity. Maybe try to reinstall it, and make sure that all paths of your Visual Studio installation are correct. Open Visual Studio Installer and make sure you added Unity Game Tools (might be labelled differently, I'm not sure about that name)
  7. Right now I don't have a NAS server.
  8. Yes, FreeNAS makes it a lot easier. For storage solutions it's easy to use and fast to configure everything. However if you want to have full control over all settings, it can take a little bit longer to configure.
  9. We did simple OS programming in university and I really don't want to do that again. Yes it is nice to see how everything works. But it is really hard not messing up completely.
  10. For Coding nobody will ever need a high resolution monitor. If you can read text on your monitor the resolution is good enough - the first monitor i used for coding was 640×400? And the most performance is needed to run your IDE. I've seen web developers still working on a mid 2013 macbook air. There's really no point using high end hardware if last gen hardware is more than good enogh. For local testing you may need better hardware but if you're just starting out I wouldn't recommend spending much money on hardware.
  11. This should work: https://www.ghacks.net/2019/04/17/fix-chrome-blocking-keyboard-multimedia-keys-from-working/
  12. Last time I used ESXi it was still called ESX. But I remember that installing any OS isn't that hard. Just get a windows server iso and install it.
  13. Is the VM still working when you log in with RDP and can you try to push the CPU utilization?
×