-
Replied To a Post in How do you become qualified to get work as a web designer?
[Envato](http://www.envato.com) is really nice, I never published anything, but I bought a pretty Adobe After Effects template and a great song to go in the background. Works wonders. About w3schools … -
Began Watching How do you become qualified to get work as a web designer?
Hello everyone, I am in the process of breaking into the web design field, and there's something that has me puzzled. In most areas of IT, there is usually some … -
Replied To a Post in How do you become qualified to get work as a web designer?
Certifications may help but I don't think they are essential at all. What gives you credit on the web is what you have done for the web. If you have … -
Began Watching dialog box using jquery or javascript
Hello, I want to open and dialog box on onclick of image. for that , i had written below onclick code to call function and pass parameter to it. this … -
Replied To a Post in dialog box using jquery or javascript
Hello there. If you seeking help in a JS forum, try to post the final HTML and JS code. Not PHP code. About the dialog, try using jQuery UI, it's … -
Began Watching Home Network for Database Access
Hi There, This comes under a few forums on DaniWeb, so I've guessed and posted it here... I have two computers, both connected to the internet and running Windows 7 … -
Replied To a Post in Home Network for Database Access
Mattster, yes, you can access SQL Server with C# in your home, office or internet. The PC with SQL Server installed must have the firewall settings to permit the connection. -
Began Watching Display function output within an anonymous function
I am trying to output the SELECTED TEXT within my javascript code. I created a function that will get the selected text and I just want to output it when … -
Replied To a Post in Display function output within an anonymous function
Use editor.insertContent( '[tooltip class="' + e.data.listboxClassName + '" title="' + e.data.textboxtooltipName + '"] ' + getSelectionHtml() + [/tooltip]'); And you getSelectionHtml function should return the text. function getSelectionHtml() { var … -
Replied To a Post in help me to fix an incorrect json
You're welcome. Just mark as solved =) -
Replied To a Post in help me to fix an incorrect json
I don't think you can have line breaks inside a string. -
Began Watching help me to fix an incorrect json
Hi, i have an angularjs app that doesn't work becouse of an incorrect json, i've test it the problem is that i have to work with it, could you help … -
Replied To a Post in help me to fix an incorrect json
Use a JSON validtor to help you find the problem(s). http://jsonlint.com/ http://jsonformatter.curiousconcept.com There's lots of others. -
Began Watching use highlight property in Validation
Hello, I want to use highlight / blick in validation. below is the validation function. I have just focused that fields but i want to highlight that fields and on … -
Replied To a Post in use highlight property in Validation
Check out the comments if(document.getElementById('prof_level-'+validation_index).value == '') { alert("Please Profecency level "); // If prof_level-'+validation_index is the ID, then you missed the # ('#' is the jquery selector for ID) … -
Began Watching HTML 5 app on andriod
i have just made a game using HTML 5 and Javascript on my PC but now i want to run my game in my android phone .. can anyone help … -
Replied To a Post in HTML 5 app on andriod
Do you have it published somewhere? You can just type the url in the browser and see if it works. If you want to publish local for tests only, whar … -
Replied To a Post in problem with embedding google maps in my flash website
Do you have this published somewhere for me to check it out? I'm having a hard time trying to figure it out. -
Replied To a Post in Can I set onClickListener to another class ? (Android, Java)
LNU1, ListViewActivity onClick is not an OnClickListener object, it's an method. On ListViewActivity, create a listener like public OnClickListener myClick = new OnClickListener() { ... }; And then use `ctx.myClick` -
Began Watching Generics class as object
hi,I have a classB which is in location "test\folder1\generics1" and Class2 which is generic class in another folder for eg test\folder2\ and when i create object for class2 which should … -
Replied To a Post in Generics class as object
Something like this? namespace generics1 { public class B { public void methodA() { } } public class A<T> { // Hold reference to B public T myObject {get; set;} … -
Began Watching Update textbox from seperate thread
I'm simply trying to keep a log list for my application events. I'm trying to send text to the log from a seperate thread with the following code: Imports System.Threading … -
Replied To a Post in Update textbox from seperate thread
It's printing twice because you're calling it twice.. Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load worker1 = New Thread(AddressOf test) ' Logging "test" for first time worker1.Start() … -
Replied To a Post in Remove spacing only around table
You could remove the left and bottom border with css. border-left: none; border-bottom: none; -
Began Watching Can I set onClickListener to another class ? (Android, Java)
There are two classes: - ListViewActivity extends Activity, - MyAdapter extends BaseAdapter. MyAdapter overrides the getView method and creates an item in ListView, which drawn in ListViewActivity. I want to … -
Replied To a Post in Can I set onClickListener to another class ? (Android, Java)
It's not important in wich class your listener is, what's important is in wich context it'll run. This is not exactly what you are doing, in part because I didn't … -
Began Watching Remove spacing only around table
Hi there I have a problem on my website and I don't if I will explain it right, but I want to remove the spacing around the table and not … -
Replied To a Post in Remove spacing only around table
Yeap, I can't understand =x Try drawing maybe? -
Began Watching tab event on text boxes
Hello, I want to disable tab event from input box on form for that i tried: <script language="JavaScript"> // disable tab event on form $(window).keydown(function(event){ if(event.keyCode == 9 ) { … -
Replied To a Post in tab event on text boxes
You have to append the listener to the input: $("input").keydown(function(event){ if(event.keyCode == 9 ) { event.preventDefault(); return false; } }); -
Began Watching remove readonly attribute of input box
Hello, I have created input bonxes and filled values inside it. and made it read only using below code: <? foreach($certificated_data as $c) { ?> <tr id=<?echo $tr_id; ?> > … -
Replied To a Post in remove readonly attribute of input box
You should really take in consideration what Taywin and Airshow said. Nevertheless, try this: //make all fields disbaled $("#youTableID").find("input:text").attr("readonly", true); // make only this tr editable $("#tr-"+(disable_row)).find("input:text").removeAttr('readonly'); And when generating … -
Began Watching JQuery+PHP+MySQL question.
After very little success in using JQuery .post methods I wanted to try asking this here before giving up. I am serving a couple JS based games on a site … -
Replied To a Post in JQuery+PHP+MySQL question.
What kind of error are you getting? Try using developer console to analyse the http request(often in *Network* tab). Also, use the $.ajax method so you can get an error … -
Began Watching OnMouseOver Transition/Fade
I am attempting to make a transition/fade effect when a user hovers over a link. I am trying this technique... however I cannot figure out how to do this technique. … -
Replied To a Post in OnMouseOver Transition/Fade
The code seems alright... I tried this and it worked <a href="#resume"> <img src="http://i.msdn.microsoft.com/dynimg/IC86155.gif" onmouseover="this.src='http://arquivo.devmedia.com.br/artigos/Renato_Groffe/GAC/GAC4.jpg'" onmouseout="this.src='http://arquivo.devmedia.com.br/artigos/Renato_Groffe/GAC/GAC3.jpg'" alt="RESUME" /> </a> What browser are you using? Does it throw any errors? -
Replied To a Post in problem with embedding google maps in my flash website
It's not clear for me yet... Is your map inside an HTML Page using JavaScript functions? -
Replied To a Post in problem with embedding google maps in my flash website
Wich Google Maps API are you using? ActionScript or JavaScript? If you are using JS, try destroying before the page is closed with ***onbeforeunload*** event. Another way is to call … -
Replied To a Post in How to display the data by using dropdown list
Go get it man! You'll probable have some problems, but there's always a way. Use developer console to debug the ajax request params and return. Good luck =) -
Began Watching Help to Solve this Gridview Value
Dear All Statement 1 doesn't get its new value it retrives the existing value only i want it to get new value i am entering on RowUpdating event TextBox mytext … -
Replied To a Post in Help to Solve this Gridview Value
You should use the DataGrid events for editing, like CellEndEdit or CellValueChanged. http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellvaluechanged(v=vs.110).aspx http://msdn.microsoft.com/en-us/library/system.windows.forms.datagridview.cellendedit(v=vs.110).aspx -
Began Watching save sql query to database for creating reports
I have a question about how to set up a page in php to allow the user to create reports from a mysql database and display in a grid on … -
Replied To a Post in save sql query to database for creating reports
I'd started by the simpliest thing...letting the user write the SQL query. After you have the writing, saving, editing and viewing the query working good, then you can create an … -
Began Watching problem with embedding google maps in my flash website
Hi, I am trying to develop a website using adobe flash. So far so good. I am currently trying to embed google maps in my flash website and its a … -
Replied To a Post in problem with embedding google maps in my flash website
Are you removing the embed map when you exit the page? All of yours pages are in frames? Anyway... why are u developing an website in flash? -
Began Watching Add to cart method via ajax
Hello Guys, I coded the following and worked 100% perfectly but I want to do it ajaxly ! how to make all of this sending by ajax with animation(fadeIn,fadeOut) this … -
Replied To a Post in Add to cart method via ajax
This post should help you get started with AJAX http://blog.teamtreehouse.com/beginners-guide-to-ajax-development-with-php -
Replied To a Post in How to display the data by using dropdown list
Oh, sorry for the delay. I suggest you use jQuery and to do it nicely. This guide should get you throught it: http://blog.teamtreehouse.com/beginners-guide-to-ajax-development-with-php -
Replied To a Post in Cannot select SQL query with DAL to show in message box
That's exactly what I posted. =) -
Replied To a Post in Cannot select SQL query with DAL to show in message box
That's probably because your method returns an int. Try this: public string Execute_SQL(string select) { ConnectiontoSQL(); string Query = "select " + select + " from jobSearch where searchID = …
The End.