Muhammad Ali
Muhammad Ali
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
like this.Invoke((MethodInvoker)delegate { progressBar1.Value = (int)num; });
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
for that you have to use Invoke method of windows form to merge threading communication.
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
but you will might face an issue of cross threading.
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
same you can do for the updateProgressbar loop
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
I think you should try Task.Run(()=> shat()) If there is any sort of thread blockage it will handle by its own.
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
okay, one more question. is shat producing music in a loop? until I press stop?
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
okay. Let me figure it out.
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
okay
29 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
can I see updateProgressbar1 code?
29 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
I never read about truncation. So, I don't know about it. Let me check what it is.
59 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
ummm. but he wants to round it to 2 digits only...
59 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
datatypes are like containers to put a value. It based on you what you put inside. It is not data types duty to perform logic on your value.
59 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
No datatype will handle this.
59 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
you have to use Math library functions Floor or Ceil for this purpose
59 replies
CC#
Created by Pszczółka Erina on 3/1/2025 in #help
Number With Decimal Point
I never used float but decimal provides you more precise value in c# by using celing and floor software based functions. but double use binary operations and provide you accurate value in most efficient way.
59 replies
CC#
Created by mustaf on 3/1/2025 in #help
why does the audio stop playing even on a seprate thread
1st of all why are using thread? 2nd where you placed your above code? inside program.cs or inside form? when you use Thread.sleep it sleeps the current thread. its mean if that thread is handling your audio, it will never work. it will work again after 10 seconds and I think that is happening in your scenario.
29 replies
CC#
Created by KARTOOS on 2/27/2025 in #help
Logging unhandled/fatal exception in .net core 8
Sorry, I didn't read the replies. yes it is same.
14 replies
CC#
Created by Moebytes on 2/27/2025 in #help
class constructor in c#
It is better to use when you are doing only DI. It make it looks more cleaner.
27 replies
CC#
Created by KARTOOS on 2/27/2025 in #help
Logging unhandled/fatal exception in .net core 8
Go for global exception handling.
14 replies