256 Posted Topics
Re: 1. backup 2. format 3. restore windows assuming you are having lots of problems with many applciations on your home computer | |
Re: yes javascript or perhaps flash. you could not achieve this with php | |
ive been asked by a company to help them with emergency work. it simply is converting photoshop designs into css templates does any one have any idea what i should charge for doing this as they have asked for a daily rate ? | |
Re: if i may ask why is using a semi colon at the end of an SQL statement a problem ? this is valid sql markup | |
Re: set your permissions to allow access to my documents. saying that i remember not being allowed access to a servers My Documents folder even with permissions set. use another file location i.e. c:\WEB APP FILES\ | |
Re: you can embed media player in your page. or build a flash mp3 player. there are probably flash players already out there which can be dropped right in if you arent very clued up on flash. Most use xml files though which isnt a problem if you can pass the … | |
Re: why not use css ? [URL="http://www.findmotive.com/2006/10/31/simple-css-image-rollover/"]http://www.findmotive.com/2006/10/31/simple-css-image-rollover/[/URL] | |
Re: sorry to plug myself here but i am a web designer and i charge quite inexpesively. that said web design does not have to be an expensive outing. i understand alot of companies will rip you off. go freelance and you can find yourself paying a small % of what … | |
Re: alot of companies sell their source code. (for a reasonably larger markup than they would sell software) but alot do especially when products get upgraded the previous software becomes 'old-hat' and you will find alot of business will purchase source code. But yes for a stable consumer product in the … | |
hello all, i have been setting up reports to work with our intranet web application but after attempting to make the reports dynamic in the data they retrieve i have tried using a dataset and an xml file both return this error when i attempt to load the report document. … | |
Re: wrong forum. seeing as your using a treeview control im guessing its asp.net try there. | |
Re: that is like asking us to perform open heart surgery whilst wearing a blindfold? can u post some sample code? | |
Re: 1. create a script with an array of image urls 2. use GET ie. [url]www.page.com?img=1[/url] method to post img number to page. on page load change the image based on this number. 3. use meta refresh or javascript to refresh after several seconds incrementing the GET img variable. and that … | |
Re: 1. open your new page window (make sure you save the window to a variable i.e. 'win') [CODE]var win = window.open(....);[/CODE] 2. from existing page check the new window youve opened to see if it is finished loading. If it has then call the function if not set timeout to … | |
Re: you could use html frameset this would keep any information you have active without clearing it as you would not need to refresh the page with the tables in. google html frameset for more info or if you r having trouble let us know. by the way alot of developers … | |
Re: i dont quite understand are you trying to do? dynamically create data in your first column based on what the user presses ? | |
Re: [url]http://www.php-mysql-tutorial.com/[/url] | |
Re: set the cookies expiration date to an earlier time than now. [CODE]// FUNCTION TO DELETE A COOKIE function deletecookie(name) { var expdate = new Date(); expdate.setTime(expdate.getTime() - 1); document.cookie = name += "=; expires=" + expdate.toGMTString(); }[/CODE] | |
Re: well in my opinion... 1) promotes messy coding habits 2) oop is lacking 3) error handling is poor thos are my main qualms. | |
Re: why not hide/show the iframe instead of creating a new instance each time. i.e. on page startup create a hidden iframe when openframe is called change the visibility and use document.frame.location = '.....' to change the url. if your using php also depending ont he amout of code the server … | |
Re: i dont know of any third party tabs but when i need tabs i use iframes. with a form for each page you want in each then use javascript to change the page. | |
im having trouble using the PUSH method to generate a report . this is my code. [CODE] Try cr1.Visible = False Dim myConnection As New SqlClient.SqlConnection myConnection.ConnectionString = "Data Source=someplace;Initial Catalog=somedb;User Id=someid;Password=somepass;" Dim MyCommand As New SqlClient.SqlCommand MyCommand.Connection = myConnection MyCommand.CommandText = "Select * from asset where assetid < 10" … | |
Re: [QUOTE=SheSaidImaPregy;453773]Hello, I need to access the database when a session unexpectedly ends or session times out. This is just for telling the database to update a field for when the user last logged in. The reason I need this is that it saves me tons of coding for other stuff … | |
Re: i work without contract on the terms that 30% is paid before work begins. further 60% on installation/transfer of said software and 10% following 2 weeks after has been fully implemented into system with no problems. DO NOT GIVE THEM ANY CODE!!! and do not send them the product without … | |
hello all, this probably isnt even the correct forum to ask but does anybody know whether it is possible to LOAD a CAD drawing into a flash movie and be able to manipulate it ? | |
Re: perhaps ask in the correct forum ? web developement/databases as the people that may know your answer may not look here. | |
Re: ? sorry can you rephrase that as i have no idea what you mean. if you know insertion and connection why cant you do it ? | |
Re: ???? without knowing what the program is that uses this i doubt anybody could help you ? | |
Re: [CODE]document.getElementById('button').disabled = true[/CODE] if you want to maintain the state when refreshing just use something like a cookie to hold the boolean flag | |
Hello all. Which is the best practice to use when creating dynamic links i.e. onclick events. [CODE]<a href="javascript:somefunction()">click me</a>[/CODE] OR [CODE]<a href="javascript:void(0)" onclick="somefunction()">click me</a>[/CODE] i realise the first is not an 'event' but i have a web app which is displaying 6000 of these links all at one time and … | |
Re: you cannot hide these items after the browser has loaded the page. You would have to use a window.open('url', 'windowname', 'height=600,width=800,status=0,toolbar=0,menubar=0,resizable=1,scrollbars=1') | |
Re: pseudo code is a DESCRIPTION based on an algorythm. It is used so that programmers can see what is happening. It is good as it allows programmers to understand tasks at a glance i.e. [CODE]' VB CODE Dim str as string = "heya" Dim str2 as string = "oh no!" … | |
Re: im pretty certain when linking to a site outside of your domain there becomes problems with javascript. therefore i dont believe you can get any properties from the page | |
Re: what are you looking to implement? Just HTML and CSS. Or other web related languages i.e. javascript, php, even asp and .net? | |
i am a web designer. i have been asked to create a web app for use on a company intranet. the problem is i have a treeview (those that dont know asp a simple menu structure) on my page which allows the user to pick records they wish to view. … | |
Re: [QUOTE]Can I place a <h1>, <h2> etc inside a Div?[/QUOTE] answer: yes [QUOTE]I understand I cannont place a <p> inside a <h1> or <h2>, is this correct?[/QUOTE] answer: correct. it is not valid html4.01 [QUOTE]I understand I cannot put a <ul> inside a <h1> or <h2>, is this correct?[/QUOTE] answer:correct … | |
Re: use the following at the end of your code [CODE]BufferedReader in = new BufferedReader(new InputStreamReader(System.in)); in.readLine();[/CODE] it will pause your command prompt and wait for an input. | |
![]() | |
Re: [COLOR="Green"][QUOTE=michael.ngobeni;418726] document.FormName.myname[COLOR=red][B]+x+[/B][/COLOR].value = 'Test';[/QUOTE] replace with [CODE] if (document.getElementById('myname' + x)) { document.getElementById('myname' + x).value = 'Test'; }[/CODE][/COLOR] HMM WHY DID I NOT SEE EVERYONES POSTS 2 MINS AGO ? DANIWEB THREW A BRAIN FART OR I AM A LEPER | |
Re: use javascript if you are calling another browser window as you cannot pass data to another browser window. The server cannot see browser windows and therefore cannot distinguish where to send any information this way. javascript is your only option if this is what you want to achieve. | |
Re: [url]http://aspalliance.com/articleViewer.aspx?aId=144&pId=[/url] theres a good website with alot of basic tutorials on. just do the ones you find interesting and youll pick up the basics in no time. the msdn website helps too | |
Re: are you using the grid mode or flow layout. personally always use the non grid method as absolute positioning is bad! | |
Re: [CODE]$this->[/CODE] is reffering to the current class instance. it allows you to differentiate between objects and can help speed up compile time as the compiler knows that $this-> is referencing an object in the document e.g. [CODE] var $num1; function set_num($num1) { $this->num1= $num1; } [/CODE] not only does it … | |
Re: im pretty sure this is because the user control wont have focus as it is simply a control whereas the MAIN FORM will have focus. Simplest way i can think of doing this is to put your methods to listen for the keypresses in your main form. Make your methods … | |
Re: NO CLIENT SIDE SCRIPTING how you can create a site and rely on your users to have the correct spec is beyond me. Its like going to a pub and having to take your own beer. | |
i understand that this can be done the problem is i cant find any good tutorials or sample code and i dont really know where to start. Could anybody help please ? looking to mail merge with a ms word doc 97 - 2003 and my database |
The End.