Re: Need Coding Help With A Project Programming Software Development by Dani …. I believe that Enzo only resurrected a 12 year old thread with the intent of spamming. You and I know that… and his infractions. However, no one else coming across this thread sees that or knows that, so the other 2000 people… reading this thread may look at his post through a completely different lens… Re: Fujitsu Windows Server 2019 Servers Rebooting at 11pm every day Hardware and Software Microsoft Windows by Dani … job done, I suppose. NuGG: So sorry about hijacking your thread with this whole discussion about the demise of DaniWeb! I… Re: Lots of new members but no one posts Community Center Meta DaniWeb by Dani … now in Google Search Central, but I'll update this thread if I happen to come across it. The problem, of… Re: How Can Small Businesses Effectively Compete in Digital Marketing? Digital Media Digital Marketing by christianjhon2 … to hear how you did it! Let’s keep this thread full of insights for fellow small business owners. [christian jhon… Re: How do you do keyword research for SEO? Digital Media Digital Marketing Search Engine Strategies by Reverend Jim I'm confused. In [this thread](https://www.daniweb.com/digital-media/digital-marketing/search-engine-strategies/threads/543418/why-doesn-t-my-website-appear-on-google-when-i-search-for-its-domain-name#post2302150) you recommend creating backlinks, but here you say Google banned them. What are some underrated React JS best practices? Programming Software Development by James_228 …, tools, or even code snippets. Let’s build a solid thread of modern React wisdom! Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani … and 30 days. (Some longer, some shorter) If a forum thread is 10 years old, and has not received a new… 9 years 10 months, we can feel comfortable caching that thread for non logged in users for a longer time, for… example, than a thread that is only a few days old. But yes, if… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Dani …;never mind" or something like that, making the entire thread useless for future visitors and disrespectful to the people who… discussing SXG seemed to be significantly off-topic for this thread. I am all for letting discussions flow and evolve naturally… of buried on the 2nd page of a lazy loading thread. Oh well. :-/ Re: Show computer name on a label Programming Software Development by Dani … introduced in my code? Can you please start a new thread in the Meta DaniWeb forum explaining exactly what you were… operating system. I don’t really want to conflate this thread with debugging DaniWeb. Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by Reverend Jim … to give kudos instead of reviving a multi-year old thread by adding a new post. Using the comment tool not…, it also gives points the the person who posted the thread you are commenting on. Re: Show computer name on a label Programming Software Development by Mr.M [Here is my code](Post in thread 'get computer name' https://www.tek-tips.com/threads/get-computer-name.1229373/post-4473307) Re: Hello Everyone, I'm Ray Brad Programming Software Development by Dani …').) Sorry, I just saw this now. Please [start a new thread](https://www.daniweb.com/community/contribute/2/javascript) if this… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon … discussing SXG seemed to be significantly off-topic for this thread. Additionally, the fact that Lighthouse audit results are an efficient… Re: How to Implement Lazy Loading for Faster Web Portals Programming Web Development by jkon …;never mind" or something like that, making the entire thread useless for future visitors and disrespectful to the people who… Re: Is linux your daily driver? Hardware and Software Linux and Unix by Dani I started this thread thinking about James, DaniWeb's sysadmin, who I was surprised to hear uses Windows as his daily driver, despite his proficiency in Linux. I believe he quoted things like Linux not being ideal for gaming. I'm macOS only these days. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim …. The post I was referring to was >In this thread, let's dive into the exciting advancements in the world… Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Reverend Jim 1. I thought we didn't have "forums" anymore. 2. Perhaps the OP posted in the wrong place. 3. Regardless, it was clearly a discussion and not a question. It's moot since the thread has been deleted. Re: Are we being played by AI? Let's Discuss! Community Center Meta DaniWeb by Dani …. I don’t mean to drop the ball on this thread. Re: Thread synchronization. Programming Computer Science by Yerbantherack Thread A prints and sends a message to thread B. Thread B prints and then sends a message to thread A. Any thread before printing checks for the message from other thread and prints only if they have received the message. Re: thread Programming Software Development by Narue … void exit(DWORD exitCode) { ExitThread(exitCode); } public: thread(HANDLE thread, DWORD timeout): _thread(thread), _timeout(timeout) {} ~thread() { CloseHandle(_thread); } DWORD exit_code() const { DWORD exitCode… thread Programming Software Development by SDH1 …lt;iostream> #include <windows.h> class Thread { public: Thread(); static void * EntryPoint(void*); int Start(); int Run(int… a){Arg_ = a;} private: int Arg_; }; Thread::Thread() {} void * Thread::EntryPoint(void * pthis) { Thread * pt = (Thread*)pthis; pt->Run( pt->Arg() );… Re: thread Programming Software Development by gerard4143 …> #define NO_THREADS 4 int thread_a[NO_THREADS]; class Thread { public: Thread(); static void * EntryPoint(void*); int Start(); int …){Arg_ = a;} private: int Arg_; }; Thread::Thread() {} void * Thread::EntryPoint(void * pthis) { Thread * pt = (Thread*)pthis; pt->Run( pt->Arg() … Re: thread Programming Software Development by gerard4143 After I include cstdio the program compiled and ran as expected..Actaully line 33 in your program might be incorrect. Your passing the address of dwArg to create thread which is changing as the loop iterates, this is probably what's causing the weird nummbers. Re: Thread Programming Software Development by apegram …private void Form1_Load(object sender, EventArgs e) { Thread demo = new Thread(new ThreadStart(this.ThreadProc)); demo.Start(); SetText("…;Main thread"); } private void ThreadProc() { while (true) { Thread.Sleep(1000); SetText(DateTime.Now.ToString… Thread Programming Software Development by Lolalola …"(New text)"; [CODE="C#"] Thread demoThread; public Form1() { InitializeComponent(); } private void …object sender, EventArgs e) { this.demoThread = new Thread(new ThreadStart(this.ThreadProcUnsafe)); this.demoThread.Start(); textBox1.Text… thread Programming Software Development by carsein Hello...I have question about thread. Why we have to dispose our thread? What happened if we don't do it? Can I only dispose() method to dispose my thread? Thanx:) Re: thread Programming Software Development by masijade Huh? What are talking about. Thread [i]has[/i] no dispose method. GUI elements normally do, … is going to continue long after the thread has been created, and long after the thread has finished its work, then set… thread Programming Software Development by chamnab i have some question to ask everyone . 1.what is thread ? 2.what is advantage to use thread ? 3.if you can ,please give me some tutorial about create and using thread . 4.thank for your answer Re: thread Programming Software Development by carsein Oh sorry..I must be confused because before this I read this article: [url]http://www.eclipsezone.com/eclipse/forums/t45697.html[/url] It is disposing component in thread-safe way. I must be confused by it. Thanks for your explanation by the way. thread ?? Programming Software Development by johans22 …\n",p->number); ExitThread(0); } int main() { DWORD thread; struct somestruct *p; p = (somestruct*)malloc(sizeof(struct somestruct)); p… t = CreateThread(NULL,0,(LPTHREAD_START_ROUTINE)&mythread,p,0,&thread); free(p); return 0; } [/CODE]