Search:
Type: Posts; User: ideru
Search :
Search took 0.07 seconds.
September 14th, 2012 01:52 AM
I am currently playing around with uPnp. I made a small Control Point program to check the content of the selected media server.
I was finally able to connect to the server but I don't know what...
September 1st, 2011 07:27 PM
@ olivthill2 , thanks for the tip. strcspn , gave me the correct position of the character. I was not able to include it in the post, but the temporary variable "tmp" was initialized using memset and...
August 31st, 2011 10:32 PM
It has been a while since I did some parsing in C, so I am trying to get it all back :o
I have a specific string that I need to parse. Basically get the specific string of length M starting at...
August 30th, 2011 07:44 PM
hello. I want to do a connection test on DHCP.
I am trying to execute the following function:
ifdown eth0
ifup eth0
then afterwards check if connection to DCHP server was successful. I...
August 29th, 2011 12:58 AM
I am doing a network connection test program but I have no idea how to do the DHCP.
For dns, gateway I am using ping command called by popen.
For DHCP , i was told to to a dhcp...
August 10th, 2011 02:08 AM
try it like this:
void print()
{
vector<New_class>::iterator it;
for( it = tp2.begin() ; it < tp2.end(); it++ )
{
August 10th, 2011 01:29 AM
I am trying to mount our wi-fi driver on one of the mtd, if possible dynamically.
So my question is , Is there a way to know which of the mtd in /dev/mtdX currently free? :confused:
November 1st, 2010 11:34 PM
Hello Everyone, I kinda lost already at what I am doing
Here is the situation:
I need to display document in word format or print it programmatically.
Right now displaying and printing is...
March 24th, 2010 09:40 PM
wow.. congrats peej
and congrats hannes..
lots of happiness guys..
March 24th, 2010 09:33 PM
omg this thread is still alive?? and i'm posting in it..
need to finish my sql query.. darn , i hate it..
March 24th, 2010 02:07 AM
basically you want to rank your data based on the number of access right..
This might be a bit of help:
http://weblogs.sqlteam.com/jeffs/archive/2007/03/28/60146.aspx
March 24th, 2010 01:41 AM
I can't look at your sql but I assume that for each dealer code you can have only one dealer name right?
then use group by dealer code and compute what you need to compute
check the example here:...
September 11th, 2008 11:28 PM
If you look closely, the sample code that seeguna posted is actually a binary search code :)
September 11th, 2008 10:26 PM
oh okay my bad, you did not suggest a BST ..:rolleyes:
but its good the OP can now have some options on how to solve the problem ..
September 11th, 2008 10:18 PM
as I have mentioned the DocumentFilter works well if the character encoding is ROMAN Letters.
the problem is when the input FULL_WIDTH, JAPANESE CHARACTERS.
example you have the same string...
September 11th, 2008 02:09 AM
i agree with _uj
first try to create the BST then do a search right and left ..
you can create a node base on the index or make a node with the value and the index
and when you traverse your...
September 11th, 2008 12:41 AM
are trying to compute the running time for the search?
if you want to get the O(log n) running time for a search algorithm, you need to get to know BST ( Binary Search Tree )
or generally a...
September 11th, 2008 12:16 AM
The best Ive tried so far is Rational Rose..
September 11th, 2008 12:04 AM
I'm using the JFormattedTextField.
I set it document filter to my specific size, it works with normal alpha numeric character.
My problem right now is when the input is a combination of...
September 10th, 2008 07:40 PM
@Norm, the combobox object was created during the initialization and is used during insertion of items to it.
Right , Ive noticed that the behavior of addItems is inconsistent.
this is how...
September 4th, 2008 02:24 AM
For the purpose of discussion and learning for a newbi like me :D
I have a JComboBox in my window , and will fill it after retrieving some values from the Database. I use "addItem" to insert...
Greetings
I was able to use this code here as a reference for getting the newly created file name. But my file name contains some 2-Byte character ( Japanese Characters ) , so when I got the new...
@shekar: already check that, but not what Im looking for.
IDR_MYMENU MENU
BEGIN
POPUP "&File"
BEGIN
MENUITEM "E&xit", ID_FILE_EXIT
END
POPUP "&Stuff"
BEGIN
MENUITEM "&Go", ID_STUFF_GO
Click Here to Expand Forum to Full Width