-
Replied To a Post in keeping Sortable order on refresh
Hi piers, the selector on your attempt to update the ids is not valid. Try like this: $('div.innercontainer') .attr('set_1', firstset); .attr('set_2', secondset); -
Replied To a Post in Finding Mouse position from a click outside of form
You're welcome. Just mark as solved when you make it work =) -
Replied To a Post in Continually Change Text Color onmouseover
Anyway, I played a little with that fiddle and came up with this: http://jsfiddle.net/L4nqhudr/1/ Is that what you want? -
Began Watching Continually Change Text Color onmouseover
In the random and continous manner that this fiddle changes the color of the blocks: http://jsfiddle.net/fenderistic/48KzD/ , how would I change the color for a block of words? At first … -
Replied To a Post in Continually Change Text Color onmouseover
I didn't understand much of your problem... If the jsfiddle does what you want, you can just change it for update 'color' instead of 'background', it should work normally for … -
Began Watching Need an Android App Development Tutorial Book
I am a newbie in Android App Development. I have designed basic apps like a simple notepad but I don't get pretty good tutorial books on how to do it. … -
Replied To a Post in Need an Android App Development Tutorial Book
What better way to learn than to run apps and see their code?! Every Android API version has a project name APIDemos, in there you'll find a tons of activities … -
Liked / Shared Can anyone please tell me why one of my error messages does not display?
I am suppose to display 3 error messages,Premium Channels is a required field,Customer Type is a required field and If a business checkbox is checked an error message is suppose … -
Began Watching using IsNull to get sum() in vb.net
hi guys, i have the following code: "select sum(( receiptDetails.retailprice - receiptDetails.purchaseprice)* receiptDetails.itemcount ) + ((customerReceiptDetails.retailPrice -customerReceiptDetails.purchasePrice)* customerReceiptDetails.itemCount) As Total from receiptDetails,customerReceiptDetails " am trying to get the gross profit … -
Replied To a Post in using IsNull to get sum() in vb.net
eetigu, just adding IsNull to your own logic it would be something like this: SELECT SUM((IsNull(receiptDetails.retailprice, 0) - IsNull(receiptDetails.purchaseprice, 0)) * IsNull(receiptDetails.itemcount,0) ) + ((IsNull(customerReceiptDetails.retailPrice, 0) - IsNull(customerReceiptDetails.purchasePrice, 0)) * … -
Began Watching Finding Mouse position from a click outside of form
What I am currently trying to do is have the user press a button, upon pressing that button, the cursor turns into a crosshair. Wherever the user clicks next is … -
Replied To a Post in Finding Mouse position from a click outside of form
Hi Rustatic. The .NET Framework doesn't allow you to do it directly, but you can add an 'Hook' using User32.dll. Here are some resources that should walk you trought it: … -
Created JavaScript String.format
Hi all. This is somewhat the equivalent of .NET String.Format(String, Args); Usages: 'Hello {0}'.format('DaniWeb!'); String.format('{0} {1} {2}', 'Hi', 'Again', 'Good Fella'); String.format('Hello {prefix} {name}', { prefix: 'Sr.', name: 'HeyHeyHey'}); I … -
Began Watching JavaScript String.format
Hi all. This is somewhat the equivalent of .NET String.Format(String, Args); Usages: 'Hello {0}'.format('DaniWeb!'); String.format('{0} {1} {2}', 'Hi', 'Again', 'Good Fella'); String.format('Hello {prefix} {name}', { prefix: 'Sr.', name: 'HeyHeyHey'}); I … -
Replied To a Post in Update program.
altjen, I don't have much more to explain. I never used NSIS and I've only used ClickOnce once, but it's pretty straight forward. If you can install software with 'next … -
Replied To a Post in Update program.
I can give you, but i'm not logging on much. But next time use private message to ask for someone contacts =) In anycase, in my opnion the best way … -
Replied To a Post in Update program.
Sure do, with NSIS you can program basically anything you want during the setup, and it already has a lot of plugins. I think you'd need this one: http://nsis.sourceforge.net/Check_online_for_Updates -
Replied To a Post in Update program.
I think the easiest way is to do it with ClickOnce. You will need an FTP to publish the app in, and an HTTP so your users can download it. … -
Marked Solved Status for Date of post inside post view
Hello all. Today when viewing a post with replies there's two displyed fields that deal with time: Discussion Span and Last Update. However, when viewing a post without replies yet, … -
Replied To a Post in Date of post inside post view
Oh my... I must be getting blind!! Really didn't notice it at all. I've been thinking about this for days and checked a lot of pots! =( Sorry! ^^ -
Began Watching Update program.
Hi everyone. I want to make a update option for my app. I have a idea how to do this but doesnt sound very logic. This is how it is: … -
Replied To a Post in Update program.
How do you publish your application? If you use the Visual Studio Wizard to publish it online, ClickOnce will handle updates for you and your users. About the connection string … -
Began Watching Application base class
Hi, and sorry for the title, I don't really know what else to call it, so I'll get right to my point. I've recently decided to use most of my … -
Replied To a Post in Application base class
Hi Suzie, It's nice that you decided to focus on a language, and it really saves time when you already got a lot done. But "base classes" are just the … -
Began Watching What to use as a timer in .net c#
I need a timer of some sort so that my program will send a batch of files every 10 seconds. Not sure if I can do this using threading? or … -
Replied To a Post in What to use as a timer in .net c#
>Personally I prefer a tool like Quartz, but you can use a regular timer. Does Quartz works normally with ASP.NET? I mean, if on Page_Load I set up a timer … -
Began Watching Best live chat
Hi, I have a website and quite a few members have suggested that adding a chat room would be a great idea. I'm searching for something I might be able … -
Replied To a Post in Best live chat
I don't think you'd wanna all this trouble, but the only time I worked with chats I ended up creating an XMPP server with Asterisk(Open Source). It already has those … -
Created Date of post inside post view
Hello all. Today when viewing a post with replies there's two displyed fields that deal with time: Discussion Span and Last Update. However, when viewing a post without replies yet, … -
Began Watching Date of post inside post view
Hello all. Today when viewing a post with replies there's two displyed fields that deal with time: Discussion Span and Last Update. However, when viewing a post without replies yet, … -
Gave Reputation to JorgeM in Creating a Simple CSS Navigation Menu
I have seen several posts through the years with questions about navigation menus. Menus can be built using different approaches. This example is easy to build and simple to integrate … -
Began Watching How to set different stroke color for routes in Google map
Hi.. I am using Google map to show the route path between the longitude and latitude points. Here the default stroke color of the route path is blue. I want … -
Replied To a Post in How to set different stroke color for routes in Google map
This is the basics for setting stroke color: directionsDisplay = new google.maps.DirectionsRenderer({ polylineOptions: { strokeColor: "red" } }); directionsDisplay.setMap(map); directionsService.route(request, function(response, status) { if (status == google.maps.DirectionsStatus.OK) { directionsDisplay.setDirections(response); } … -
Began Watching feedback form using c#
having problems with this codes. When tested it keeps giving me the error message "Your message failed to send, please try again. " using System; using System.Collections.Generic; using System.Linq; using … -
Replied To a Post in feedback form using c#
To see the real error, you could use: try { ... } catch(Exception ex) { //If the message failed at some point, let the user know lblResult.Text = "Your message … -
Gave Reputation to overwraith in Better than Split()?
So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So … -
Began Watching Better than Split()?
So I was recently working on a string program where the strings were easily megabytes long, and I ran into problems with there being out of memory exceptions etc. So … -
Replied To a Post in Better than Split()?
Thanks man! It's seem really usefull. I'll tryit sometime. -
Began Watching Simple android code lagging
Hello there! I'm trying to understand some basic android animation programming using Android Studio, and I have followed some tutorials on the internet. I already know some basic java programming, … -
Replied To a Post in Simple android code lagging
Did you try in an real android device? For me, even without graphics, simulators were always laggy and slow. About the graphics itself, I can't say much cause I've never … -
Began Watching display mysql results year then month then posts
i am new to php i need to create php code for automate monthly wise uploads files 2014 under sub category like months january(2014) under this uploads are grouped january … -
Replied To a Post in display mysql results year then month then posts
It depends in how you organize your uploads. If they're already in year/month folder you can only list them. If they're not organized, you need to get all the dates … -
Began Watching To make Multiple of Line for Label Control
Hello. I would like to ask on how to make a multiple of line for label control. I want to create the code, where when the user key in the … -
Replied To a Post in To make Multiple of Line for Label Control
You can just use the MultiLine option for the TextBox. It'll become like a textarea. -
Began Watching HTML and CSS project's
Hi all it's been a while scince i posted in DANIWEB, but i'm back ;) i've been learning and practcing HTML and CSS for a while and i was wondering … -
Replied To a Post in HTML and CSS project's
You can create a personal web site, a company web site, a blog or anything that does not require back-end logic. -
Began Watching Mysql data representation in charts
I have the followiing data in my database(mysql) [img]http://i.imgur.com/jy3ryVk.png[/img] i want to represent then in a simple bar chart row after row with 2 sec interval(looks like dynamic).I am using … -
Replied To a Post in Mysql data representation in charts
I'd go with [High Charts](http://www.highcharts.com/). It's easy and quite powerfull. -
Began Watching Retrieving files to send to db
Hi, I have a project where I have to retrieve a list of files and send each file to the database every 10 seconds. Want I was wanting to know … -
Replied To a Post in Retrieving files to send to db
How can you access depends on where will the files be. If the files were in the same machine, or even in the same network, and the process running your …
The End.