-
Edited Huffman Tree Decompression
Hey Guys, I am building app using a huffman tree, and am building this java program to just test a few things and I am having some trouble. I have … -
Replied To a Post in Looping for certain count for curl post
Is it perhaps a limitation of the service? -
Edited Special seperating character + Is this function vulnerable to 0-byte expl.?
**1.** Is there a character, that can be written/read by system (C#/.NET), but can't be written by any standard keyboard (European, Nordic, Slavic, Cyrlic, Arabic, Mongolian, African, Greek and Mandarin). … -
Edited harddrive
hi ther i reccently had a problem with hp laptop so i than toke out the hard drive put it in a usb connecting case and format it and and … -
Replied To a Post in Looping for certain count for curl post
I suggest you debug and step through the code line by line to see what is happening. -
Replied To a Post in Same problem
What issue? -
Replied To a Post in Looping for certain count for curl post
Spotted. This: $phone_list[0] .= $rowRestore['recphone'] . ','; should be: $phone_list[$index] .= $rowRestore['recphone'] . ','; -
Replied To a Post in Random Facts
> Are there other countries besides Belgium, where the following contest takes place? Yes, The Netherlands... -
Replied To a Post in cxgrid Row Grouping
I don't understand, can you explain? -
Replied To a Post in cxgrid Row Grouping
https://www.devexpress.com/Products/VCL/ -
Replied To a Post in Dynamic "enum" display
> Would have worked. But Dictionary<> is limited to ID (key) and value (string) Key and value can be anything you want. Try this: Dictionary<int, Dictionary<string, string>> user_array = new … -
Replied To a Post in Meaning of ^[0-9][0-9]*$ in shell script
Actually: [^0-9] excludes characters. ^ at the start means the start of the string. ^[0-9][0-9]*$ means a string starting with 0-9, followed by any amount of 0-9's (and nothing else). -
Replied To a Post in Looping for certain count for curl post
Show your changed code. -
Replied To a Post in How Many "List Tags" in HTML Commonly?
`ul` and `ol` are common. -
Replied To a Post in How Many "List Tags" in HTML Commonly?
`dl`, `ol` and `ul` -
Replied To a Post in Looping for certain count for curl post
> $block is taking the entire numbers, not the number which we are trying to limit to 10000 I don't understand what you mean, can you explain? -
Replied To a Post in Issues with $_SESSION when adding $_POST values
Why not put the entire array in it at once? $_SESSION['MyPostArray'] = $_POST; Not a practice I'd recommend, but it works. You can do your sanity checks when you actually … -
Replied To a Post in Copy assignment and inheritance.
> So, you get one also... :-( @rubberman: an eye for an eye? Not what I expected from you. -
Replied To a Post in HELLo to all
Welcome to DaniWeb. -
Replied To a Post in Undefined index
You do not check if something is actually posted. -
Replied To a Post in Looping for certain count for curl post
Instead of this: $phone_list = ""; while($rowRestore = mysql_fetch_array($resultRestore)) { $phone_list .= $rowRestore['recphone'].","; } Do this: $phone_list = array (); $index = 0; $count = 0; while ($rowRestore = mysql_fetch_array($resultRestore)) … -
Replied To a Post in use of command
http://www.unix.com/man-page/linux/0/touch/ -
Edited Different privacy policies(Not on daniweb, relax!)
I was using this chat service for over 2-3 years now. Recently, I read their privacy policy and it says they can just do anything with data * They can … -
Edited Different privacy policies(Not on daniweb, relax!)
I was using this chat service for over 2-3 years now. Recently, I read their privacy policy and it says they can just do anything with data * They can … -
Replied To a Post in How do I display XML using XSLT and filter it?
You could do hat by making use of [a parameter](http://www.w3schools.com/xsl/el_param.asp). -
Edited Installing VB6 Applications on VISTA or Windows 7
**Modifications Required for VB6 Applications to Work on Vista/7** Thanks to Hassan Basri in VBForums **Application Changes** - Remove SendKeys calls and replace them with API code. - Use the … -
Edited Installing VB6 Applications on VISTA or Windows 7
**Modifications Required for VB6 Applications to Work on Vista/7** Thanks to Hassan Basri in VBForums **Application Changes** - Remove SendKeys calls and replace them with API code. - Use the … -
Replied To a Post in How do I display XML using XSLT and filter it?
Did you change the XSLT? It should do the filtering of the XML, and afterwards the entire output is added to the example div. See [this link](http://www.w3schools.com/xsl/xsl_if.asp) for example on … -
Replied To a Post in Error: GetUserName
Have you tried `Identity.Name` ? -
Replied To a Post in show td of a table according with the selected item in the combobox
With jQuery this might do it: $('select').on('change', function() { // get selected value var value = $(this).val(); // hide all $('td[name="Nome"]').addClass('hidden'); // unhide column where text matches selected value $('td[name="Nome"]').filter(function(){ … -
Replied To a Post in generate anchor tag dynamically in code behind
> how to add Onclick in ancher tag in html htmlanchor.Attributes["onClick"] = "myOnClick();"; -
Edited installing OBOE in MAC OS 10.9
I am mostly following this post to install OBOE in MAC OS 10.9: https://projects.coin-or.org/OBOE/wiki/MacosxOboe However, in step 4: I tried to install LAPACK++ with failure [from this source][1]: I type … -
Edited Best way to declare paths
Hi again. I am on the part where I am ready to publish my .cs program and tried to install it to my friends pc when I noticed it doesnt … -
Replied To a Post in Allow me to introduce myself :)
Welcome to DaniWeb. -
Edited Multi Choice Quiz (20 Random Questions)
Hi people I need some advice off you please. I'm creating a quiz for the website that I'm creating for my portfolio to help me to get a graduate job. … -
Edited Change timezone in godaddy mysql server
I need to change the timezone of mysql to 'Asia/Calcutta'. I am on shared goaddy hosting. Please tell me how to do the same -
Edited Easiest way to implement this in Java
I've have a String String s = " ~ ( A || B ) && C "; A B C can take 0,1,x they follow Boolean Arithmetic w.r.t 'x' Boolean … -
Replied To a Post in robots.txt disallowing certain query stings...
Query strings aren't mentioned in the [spec](http://www.robotstxt.org/norobots-rfc.txt), so if you're lucky a crawler will do something with it, but don't count on it. Perhaps it can be done with rewrites, … -
Replied To a Post in Unable to open PHP file
> Please guide me what to do? Might be best to try the Adobe forums. -
Replied To a Post in visual studio 2008 and css 3 support
No, it's possible. As long as you install them from old to new in order. -
Replied To a Post in id and classes in asp.net
> Why not? I mean once I check in firebug that the id is that, can it possibly change? Not as long the ASPX stays the same. If you add … -
Replied To a Post in visual studio 2008 and css 3 support
> So presumably if I can use VS 2008 I could use 2013 as well, as in, it's not that much different, as far as you know? Should be no … -
Replied To a Post in visual studio 2008 and css 3 support
I think instead of trying to get this integrated in 2008, upgrading to the 2013 version would be much easier. They now offer a nice [Community edition](http://www.visualstudio.com/products/visual-studio-community-vs) of Visual Studio. -
Replied To a Post in id and classes in asp.net
> Can the panel have a class? Yes, `CssClass` just like other controls. > Do I target that id? You can, but you'll need to use something like this: <%= … -
Replied To a Post in Updating iframe values in mysql table column
UPDATE videos SET embed = '<iframe src="http://example.com" height="504" width="921" frameborder="0" scrolling="no"></iframe>' WHERE id IN (5727,5723,5665) -
Replied To a Post in Rewrite rule get variable
> Rewrite rule get variable problem What's the problem? -
Replied To a Post in Group by query in linq
What do you need? A SQL query or LINQ? SQL would be something like this: SELECT P.ProductName, O.CustomerId, SUM(P.Quantity) FROM Product P, Order O WHERE P.OrderId = O.OrderId GROUP BY … -
Edited Serializing an object with no attributes
I can serialize an object if it's class definition has attributes. So if I have an object whose class does not have attributes, do I serialize the attributes importedi in … -
Replied To a Post in Love Poems
The Ancient Mariner is one I like a lot. -
Replied To a Post in Help Sanitizing SQL requests
Can you show some code you are using now?
The End.