No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
10 Posted Topics
Hi everyone, i am in need of ideas and want a bit of advise...i want to make a serial port sniffer which will be able to read the data goin in and out of the serial port between two other programs..... im not sure how i will be able to …
Hi I'm having a test suite in python and i would like to email the result through my company server. I used a similar code but the code seems to be hung while waiting for a response from server during socket.connect() call. I traced the code and found that it …
Hi everyone... Im starting c sharp scripting today and i wanted to write a script using which i can open the notepad application and write a string into it... This is my code... [CODE] using System; using System.IO; using System.Diagnostics; using System.ComponentModel; namespace Process_StandardInput_Sample { class StandardInputTest { static void …
Hi Im using MPC8313 board provided by Freescale. the problem is i have added usb ehci feature and now im not able to use the usb device.... can anyone help me by telling me the things i need to look after while implementing ehci feature for usb.... thanks please tell …
hi this reply mite not help you in the direction of solving your problem, but i would like to give a suggestion. It is always helpful for everyone when the subject of the thread has some detail of the doubt...helps the person who wants to help you identify ur area …
[QUOTE=dinilkarun;878859] Python is not able to recognise the .search function. AttributeError: 'str' object has no attribute 'search' [/QUOTE] yes...that would be the response to find the available methods for string class..try help(string) at the python prompt... that shud help Peace...
im not sure if this is the right place to post this doubt.. i have installed this cint interpreter 5.15 think is i dont want those many options and i want to reduce it to the bare minimum...but the thing is im not very strong in c/c++ and this whole …
wxGlade is very useful and friendly. We can generate the code of our design in many languages. i also very new to python and i found wxPython and wxGlade very useful.... also one suggestion use the SPE editor for script development that is also very useful....
hi im trying to write a python script for a telnet client. So far im able to establish a connection with a server. My problem is that i want to print (at the client) all the activities at the server end. Let me put it this way. Suppose i send …
[code] for line in test: [/code] this is what is wrong in the code.... here line will take each character seperatly.... now try this [code] list_words=test.split(' ') [/code] now list_words will contain the words in the sentence now if you compare it, you would get the desired output.... :)
The End.
Deepak.G