JJ
how to download file using wpf ? [FTP]
I will implement Ftp Client, but i don't know how to download Files like csv files and If filedownload is stop by any issue like socket disconnect, then after issue resolved, the ftp client can Continuosly download from stop point,
is there any matierial or tutorial?
Im using dotnet 8.0 wpf, not dotnet Framework (I know dot net 8.0 is not supported Ftp library right? but I have to making ftp client using dot net 8.0
7 replies
heart beat in console program
I have a code that implements multi-threaded socket communication with c++, and I want to add an additional heart beat code. However, when the server is waiting for a client message through recv for each thread, how does make run the heart beat? If you let me know the logic or hint, I want to try it.
recv enter infiniteloop, and waiting until recevie message from client.
i wanna make heart beat code. but It can't since recv.
this is all code: https://ideone.com/TWRvnB
20 replies
❔ how to exexcute Window program ( WPF)
Hi I made To do list application using wpf. It is ok that execute it in bin file - Debug, Release 's exe file.
so I upload program in my blog. but after I download it and then when excute, It can't be execute. how to solve this problem?
https://github.com/Jlim01/StickyNotes.App this is my code. you can download and then execute it
https://boot-my-camp.tistory.com/12 this blog is my blog and I upload my to do list program. ( problem, if you download it , you can't execute it maybe)
I tried turn off windows defender firewall, but It can't execute still
21 replies
❔ [Window]Visualstudio suddenly knock down..
Description: A .NET application failed.
Application: ServiceHub.IndexingService.exe
Path: C:\Program Files\Microsoft Visual Studio\2022\Community\Common7\ServiceHub\Hosts\ServiceHub.Host.Dotnet.x64\ServiceHub.IndexingService.exe
Message: Failed to read environment variable [DOTNET_STARTUP_HOOKS], HRESULT: 0x800700CB
this is error message in window's EventViewer. suddenly my Visualstudio program is closed autometcally.
this problem is related about memory?
because My memory goes up to 90 % ,
8 replies
❔ how to use List that have struct type ( WPF)
public struct Linq
{
public Window win;
public TextBox textBox;
}
private void newWindow()
{
Window win = new Window();
TextBlock t = new TextBlock()
List<Linq> a = new List<Linq>();
a.Add(win, t);
}
I wanna input struct Linq (TextBlock and Window class object) to List
23 replies