[Solved] Run progress bar until being logged in, because sometimes internet speed is slow and some times it is fast. (C#, Windows Form Application) [closed]

private async void button1_Click(object sender, EventArgs e) { await TimeConsumingOperation(); } public async Task TimeConsumingOperation() { progressBar1.Visible = true; progressBar1.Style = ProgressBarStyle.Marquee; await Task.Delay(10000); progressBar1.Visible = false; } 1 solved Run progress bar until being logged in, because sometimes internet speed is slow and some times it is fast. (C#, Windows Form Application) [closed]

[Solved] How to run gcc compiler from my qt application? [closed]

You can run any program from Qt5 and capture it’s standard output using the QProcess class. The official documentation with examples is here: http://doc.qt.io/qt-5/qprocess.html So what I would do then is simply make a GUI with 2 QTextEdit widgets, one for the code and one for the compile/run output. Documentation for QTextEdit is here: http://doc.qt.io/qt-5/qtextedit.html … Read more

[Solved] Inno setup compiler How to set launching image during app loading

I have gotten solution to my question above 🙂 . Since I used wxpython for my GUI, there is a demo code on SplashScreen and AdvancedSplash things available within wxpython demo software. By the way @TLama, thanks for point to me the technical name of this functionality. Here are the working codes; #For wx.SplashScreen bitmap … Read more