Menu
Menu
DaniWeb
Log In
Sign Up
Read
Contribute
Meet
Search
Search
About 1,000 results for
threading
- Page 1
Re: threading module behaving weirdly
Programming
Software Development
15 Years Ago
by lllllIllIlllI
… to our code [code=python] import
threading
class first_time(
threading
.Thread): def __init__(self):
threading
.Thread.__init__(self) def run(self):…use it. so [code=python] import
threading
class first_time(
threading
.Thread): def __init__(self):
threading
.Thread.__init__(self) def run(self):…
Re: threading problem
Programming
Software Development
15 Years Ago
by woooee
Threading
is not necessary. You can just use a while loop … > 0: print self.guesses_left print 'bye bye :)' ## self.t =
threading
.Thread(target=count, args=(self.root,)) ## self.t.setDaemon(True…
Re: Threading or pyHook?
Programming
Software Development
15 Years Ago
by shadwickman
Threading
is for running multiple things at once. Such as having a thread run to update a GUI while another performs some sort of data manipulation. So,
threading
is much different than what you're after.
Threading help...
Programming
Software Development
15 Years Ago
by sravan953
…code here: [CODE] import os import
threading
import urllib import time a=0 class launch(
threading
.Thread): def start_now(): try: urllib.…t work: [CODE] import os import
threading
import urllib import time a=0 class launch(
threading
.Thread): def start_now(): try: print(&…
Threading
Programming
Software Development
13 Years Ago
by Creatinas
…found how to make non-blocking gui with
threading
: [CODE] class SearchThread(
threading
.Thread): def __init__(self): super(SearchThread, self…handle on function from my other file. i tried
threading
.Thread(target=[B]My function[/B]), but then …m bit(very :D) confused with all of the
threading
.. Yes i red all the articles i found, and…
Threading
Programming
Software Development
15 Years Ago
by hajjo
… loop from 3001 to 6000 is it worth it do
threading
for this? I want to speed it up.
threading
Programming
Software Development
15 Years Ago
by nazgulsecret
hi...can anyony help me how to access a existing textbox using
threading
..i need it for auto complete functionality...... plz S.O.S.......
Threading
Programming
Software Development
14 Years Ago
by adobe71
How can I use "double" in "System.
Threading
.Thread.Sleep(int)".
threading
Programming
Software Development
14 Years Ago
by seanbp
… locking really automatic? Am I misreading the documentation? [CODE]from
threading
import Thread make_thread = lambda fn, *args: Thread(None, fn, None…
Re: threading
Programming
Software Development
14 Years Ago
by griswolf
Agree it [B]might[/B] be better, depending on what you really need. Threads and processes are similar enough that early Linuxen used "light weight processes" to do
threading
(and for all I know, maybe they still do); do obviously Python can do something similar.
threading
Programming
Software Development
14 Years Ago
by mohdniyaz
Describe the process and working of
threading
????
Re: threading
Programming
Software Development
14 Years Ago
by lolafuertes
You can start [URL="http://www.yoda.arachsys.com/csharp/threads/"]here[/URL], [URL="http://www.albahari.com/
threading
/"]here (5 articles)[/URL] or[URL="http://www.codeproject.com/KB/threads/threadinginnet.aspx"]here[/URL] for basic concepts and examples. Hope this helps
Threading question...sort of...
Programming
Software Development
14 Years Ago
by Tarkenfire
…what I mean. This: [CODE]class RevoiceThread(
threading
.Thread ): def run (self): print "…CODE]import ircbot import time import irclib import
threading
print "Mehbot v0.0.2 - August…a' ) #more sketcy work #class forcepingThread (
threading
.Thread ): class RevoiceThread(
threading
.Thread ): def run (self): print "Remember…
Threading Problem
Programming
Software Development
16 Years Ago
by TriceD
… = "Blablabla" Dim ThreadX As New System.
Threading
.Thread(AddressOf doSomethingElse) ThreadX.IsBackground = True ThreadX.Start()… AndAlso ThreadX.ThreadState <> System.
Threading
.ThreadState.Stopped System.
Threading
.Thread.Sleep(1) End While Return ret…
Re: Threading Problem
Programming
Software Development
16 Years Ago
by Ramy Mahrous
… the class [code=vb.net] Dim ThreadX As New System.
Threading
.Thread(AddressOf doSomethingElse) ThreadX.IsBackground = True ThreadX.Start() While ThreadX… '4- x.closeSomething() [/code] Or you can read more about
threading
, talk to thread from another, etc.. it may help [url…
Threading and gtk.main()
Programming
Software Development
17 Years Ago
by marf
…initializer. I basically want to start a
threading
process, and still have the main program… [code=python]#!/usr/bin/env python import
threading
, os try: import gtk import gtk.glade….exit(1) class CommandOutput(
threading
.Thread): def __init__(self, command):
threading
.Thread.__init__(self) self.command…
Re: Threading Problem
Programming
Software Development
16 Years Ago
by TriceD
….Aborted AndAlso ThreadX.ThreadState <> System.
Threading
.ThreadState.Stopped System.
Threading
.Thread.Sleep(1) End While [/CODE] would ensure that the…
threading module behaving weirdly
Programming
Software Development
15 Years Ago
by sravan953
… today I just wanted to work on
threading
, and only
threading
: [code=python] import
threading
class first_time(
threading
.Thread): def print_first_time(self): print("…
Re: Threading question...sort of...
Programming
Software Development
14 Years Ago
by Beat_Slayer
Mate, I believe that all you need to do, it's to use my example of timer, and use it to call the function to voice, instead of the
threading
being the voice function, the thread will calll the object voice after that time. Hope is clear enough. Cheers and Happy coding.
Re: Threading question...sort of...
Programming
Software Development
14 Years Ago
by Tarkenfire
Oh no, that did indeed worked, but I need to implement
threading
to handle multiple, simultaneous devoicings, see the bot will be going into a channel that at it's peak, has about 600 people in it, so the possibility of more than one person getting devoiced at the same time was too great.
Re: Threading question...sort of...
Programming
Software Development
14 Years Ago
by lrh9
… isn't a bad language, even when it comes to
threading
. The 'vibe' I'm getting from the modules you are…
Re: Threading question...sort of...
Programming
Software Development
14 Years Ago
by lrh9
… this: [code]def run_async(fnc): def newfnc(*args, **kwargs): thread =
threading
.Thread(target=fnc, args = args, kwargs = kwargs) thread.start() return…
Re: Threading question...sort of...
Programming
Software Development
14 Years Ago
by Tarkenfire
… isn't a bad language, even when it comes to
threading
. The 'vibe' I'm getting from the modules you are…
Threading, Delegates and the Invoke method.
Programming
Software Development
17 Years Ago
by Sebouh
… As New newThread(Me) [*] Dim t As New
Threading
.Thread(AddressOf nt.ThreadCode) [*] t.Start() [*] End…(AddressOf main.CreateMessageBox) [*] End Sub [*] [*] Public Sub ThreadCode() [*]
Threading
.Thread.Sleep(2000) [*] '********************************************* [*] sendInform() (VS) main.Invoke(sendInform)…
Threading Module confusion
Programming
Software Development
16 Years Ago
by EAnder
… in main UpdateLabels().start() File "C:\Python30\lib\
threading
.py", line 446, in start if not self.…: [code=Python] #Python 3k from tkinter import * from
threading
import Thread import mouse#Third Party found at http://www… [/code] Any help with the error message and the
threading
module would be greatly apreciated.
threading problem
Programming
Software Development
15 Years Ago
by alex-VX
…python]# -*- coding: cp1252 -*- #user/bin/python! import
threading
import os from Tkinter import * from time import * …inloged = True self.root.destroy() self.t =
threading
.Thread(target=count, args=(self.root,)) self.t.setDaemon…
Re: threading problem
Programming
Software Development
15 Years Ago
by Gribouillis
…._kwargs = kwargs self._tempo = tempo def _run(self): self._timer =
threading
.Timer(self._tempo, self._run) self._timer.start() self._target…(*self._args, **self._kwargs) def start(self): self._timer =
threading
.Timer(self._tempo, self._run) self._timer.start() def stop…
Threading & Thread: speed performance between modules
Programming
Software Development
15 Years Ago
by baskar007
… is any speed performance or difference between Thread module and
Threading
module? 2: Is there is any other major difference between… Thread module and
threading
module? I used thread module for my download manager project…
Re: Threading and gtk.main()
Programming
Software Development
17 Years Ago
by marf
… when I press a button, however it still ignores the
threading
aspect. meaning the output will be like ls crap.... Finished…
Re: Threading or pyHook?
Programming
Software Development
15 Years Ago
by kolosick.m188
pyHook is easier.
Threading
is much different. For an explanation of
threading
see [url]http://www.devshed.com/c/a/Python/Basic-
Threading
-in-Python/[/url]
1
2
3
17
Next
Last
Search
Search
Forums
Forum Index
Hardware/Software
Recommended Topics
Programming
Recommended Topics
Digital Media
Recommended Topics
Community Center
Recommended Topics
Latest Content
Newest Topics
Latest Topics
Latest Posts
Latest Comments
Top Tags
Topics Feed
Social
Top Members
Meet People
Community Functions
DaniWeb Premium
Newsletter Archive
Markdown Syntax
Community Rules
Developer APIs
Connect API
Forum API Docs
Tools
SEO Backlink Checker
Legal
Terms of Service
Privacy Policy
FAQ
About Us
Advertise
Contact Us
© 2025 DaniWeb® LLC