aidun <33
aidun <33
CC#
Created by aidun <33 on 7/8/2023 in #help
❔ how could I make very nice looking apps in c#
saw some on the website
18 replies
CC#
Created by aidun <33 on 7/8/2023 in #help
❔ how could I make very nice looking apps in c#
nvm
18 replies
CC#
Created by aidun <33 on 7/8/2023 in #help
❔ how could I make very nice looking apps in c#
do you have any examples so i can see what it looks like?
18 replies
CC#
Created by aidun <33 on 7/8/2023 in #help
❔ how could I make very nice looking apps in c#
what would you say is the best
18 replies
CC#
Created by aidun <33 on 7/8/2023 in #help
❔ how could I make very nice looking apps in c#
i would like to add ive only used winforms
18 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
still
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
nothing
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
nothing
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
designer for splashscreen
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
stil
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
nothing
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
under timer2 tick?
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
where do I put this?
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
I suck at this
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
like I said
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
uh how would I do that
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
$codegif
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
thats the whole code
62 replies
CC#
Created by aidun <33 on 4/9/2023 in #help
❔ Progress bar value from 0 to 100 over 3 seconds for my splash screen
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; using System.Drawing.Text; using static System.Windows.Forms.VisualStyles.VisualStyleElement; using System.Reflection.Emit; namespace WindowsFormsApp2 { public partial class SplashScreen : Form { Point lastPoint; public SplashScreen() { InitializeComponent(); } private void SplashScreen_Load(object sender, EventArgs e) { timer2.Start(); } private void timer1_Tick(object sender, EventArgs e) { this.Close(); } private void timer2_Tick(object sender, EventArgs e) { if (progressBar1.Value < 100) { progressBar1.Value += 1; } else { timer2.Stop(); } } } }
62 replies