594 Posted Topics
Re: [QUOTE=MidiMagic;424144]Firefox has a built in spellchecker. But it won't work with the whizzywig editor. And somehow my account keeps getting changed back to whizzywig without my permisssion. And I detest the bumbling tooltips.[/QUOTE] I installed firefox 2.0 and the spell checker works with the editor for me. | |
Re: We are all predestined to die (certainly in the physical sense). But, in the intervening period we can exercise free will, so how we arrive at that point is not fated. And of course we don't know how long that intervening period is going to be. There is certainly bias … | |
Re: I like the member certificates they're really funky. And I like the syntax highlighting where you can specify the language in the code tag. | |
Re: Oh for goodness sake! 1. The Americans did land on the moon, there are laser reflectors placed on the moon for getting exact distance measurements and possibly other experiments I don't know what, but they're there and it can't be disputed. 2. Extraterestrial Civilisations It is very difficult to comprehend … | |
Re: Need to see your code to be certain how to help. Me I'd add an id and runat="server" attribute to the table to make it a server side System.Web.UI.HtmlControls.HtmlTable control and use the tabeid.visible = true/false property to turn it on and off server side. | |
Re: For Firefox get ChatZilla [URL="https://addons.mozilla.org/en-US/firefox/addon/16"]https://addons.mozilla.org/en-US/firefox/addon/16[/URL] It works great. | |
Re: I put Heinz Ketchup on just about anything ! But it *has* to be Heinz. | |
Re: I haven't programmed a lot of C but to the best of my knowledge: [code] unsigned char ucBufr = NULL; [/code] 1. This is not a null pointer, it's a char variable (1 byte set to 0). >I know that after function statements local variables which are defined in the … | |
Re: It's the order that the sums and increments are executed. In each expresion you listed there are different addition operations to be done and depending on what order you do them effects the result. i++/++i is shorthand for i = i + 1; If you place the ++ before the … | |
Re: with css you can set the cursor [URL="http://www.w3schools.com/css/pr_class_cursor.asp"] http://www.w3schools.com/css/pr_class_cursor.asp[/URL] Whether it works depends on the RichTextBox control you are using. Is this a web application? or a windows.forms application? If windows.forms I'm not really the man for that. | |
Re: Whohoo you can count me in, what about the Microsoft campus in Reading ? but London's cool with me too. (I'm easily pleased he he) Come on UK members where are you all lurking ??? | |
Re: [QUOTE]Any idea WTH is going on?[/QUOTE] -Code creep. -Victim of it's own success. -leaky abstraction (trying to abstract away the fact that http is conectionless, which is like saying windscreen wipers mean it's not raining anymore mr driver, no really, it isn't!) -Proxy servers (You cached/stripped my what? gee thanks … | |
Re: I'm surprised no-one thought of: [code] var textBoxArray = document.getElementsByTagName("input"); for(var i = 0; i < textBoxArray.length; ++i) { if(textBoxArray[i].type == "text") { textBoxArray[i].value = "test"; } } [/code] All previous solutions rely on: a. Knowing how many inputs there are. b. Knowing the naming convention. Shoot me down if … | |
Re: If you mean Windows, then you are best searching for C Windows API to find links like this one: [URL="http://www.fastgraph.com/help/first_c.html"]http://www.fastgraph.com/help/first_c.html[/URL] | |
Re: You have to concatonate a TSQL string first and then execute it dynamically. [code] declare @tsql nvarchar(4000) declare @dbName varchar(32) set @dbName = 'dbName' set @tsql = 'use ' + @dbName + '; ' set @tsql = @tsql + 'select * from table' exec sp_executesql @tsql [/code] When using the … | |
Re: I took MCSE in the windows NT4 days (before Win2k and active directory) I was lucky in that the company paid for a boot camp with Informatics Group (A microsoft approved training centre) It was 2 weeks and you take the exams as you go. It was good because the … | |
Re: Add a template column to the gridview, put a repeater control in it, put a button in the repeaters empty template, When it's clicked bind the repeater to the additional data. | |
Re: [QUOTE=sasindagi;414164]hi, i wanted to send 2 different email that is 2 different email address,with to different messages in asp.net c# 2.0. by using Cc i can send to different email Address but how to different messages[/QUOTE] This doesn't make sense. You can't send two *different* email bodies to two addresses … | |
Re: Bearing in mind I haven't studied employment law since..ooh 1994 this cannot be relied on as 100% accurate. Also I'm having to make some assumptions because: What country did this take place? What are the specifics of the contract between Party A and Party B? Assuming UK: 1. Was the … | |
Re: You mean AJAX ? [code=javascript] ////////////////////////////////////////////////////////////////////////// // // Author: Holly Styles // Copyright: Weblogik 2006 // // Description; basic AJAX framework for ASP.NET projects // // Usage: // Implement two functions to handle successfull and failed requests. // In your page create an instance of responseHandler(fnSuccess, fnFail) // passing references … | |
Re: are you sure javac is missing. Remember you need to add the path to javac.exe to your %PATH% (windows) or $PATH (linux) environment variable. for example type echo %PATH% at a windows command prompt, and see if the path to the bin directory inside where you installed J2SE is present. … | |
Re: [QUOTE=WolfPack;366389]I like chatting, and tried the Daniweb chat room an year ago. There were not many users, so I gave up. :([/QUOTE] Not seen you on MSN recently ? | |
Re: [QUOTE=Designer_101;405558]hi, my name is Reece, i have learnt, javascript, css, php, xhtml, html and loads of graphic stuff. Im 14 and my teacher said for me to learn asp, but im sure there is no difference, is there??[/QUOTE] Well I tried your contact page, but it stopped accepting input after … | |
Re: I learned BASIC on Texas Instruments hardware too. Not on the calculator but one of their early home computers [URL="http://en.wikipedia.org/wiki/TI-99/4A"]TI-99/4a[/URL]. I did some basic on an Acorn Electron in my early teens. Then I didn't program for many years, but always owned and used computers throughout, owning an Atari 512 … | |
Re: 01001111 01100100 01101101 01101111 01110111 00100000 01100110 01110100 01110101 01100101 00100000 01100001 01111010 01110001 00100000 01110011 01110001 01110001 01110111 01100101 00100001 Whoever cracks it and posts first gets some rep. | |
Re: [CODE] withdrawalTextBox.Text = String.Empty depositTextBox = String.Empty [/CODE] | |
Re: When editing text: (especially code syntax) End key takes you to end of line, home to the beginning of it. shift + end selects a whole line/sentence shift + ctrl + end selects whole document/spreadsheet ctrl + left arrow/right arrow moves one word at a time When doing forms or … | |
Re: Already a member of Facebook. Joined the group and made a post. | |
| |
Re: Increasing technological compexity and our ability to deal with it (perhaps more now than ever) could be the difference between us joining the extra terrestrial club of civilisation winners or becoming a historic anomoly, a miniscule blip in the vastness of the cosmos. Now is NOT the time to faulter … | |
Re: Yeah I've had trouble getting him through doors ever since the steamroller incident. EDIT -> His name's Kite. | |
Re: [QUOTE]...and yet another reason why newbies should be notified of how the post and tep systems work[/QUOTE] It's all here in the forums if you search for it. That's what the whole forum things all about. Hey Rashakil my a_rse is itchy why wasn't I notified ? (sorry I couldn't … | |
Re: Ads? what ads? why does everybody moan about the ads? I haven't seen ads on DW for months :) Anyway I'd rather have ads and free membership than no ads and have to cough up every month. | |
Re: is the XP machine with Sql server running windows firewall? or Norton or <fill in firewall here> ? If so you need to allow TCP/IP connections on port 1433 Also althoiugh you're using Sql Login, Sql Server iuses mixed mode by default (windows and sql login) meaning windows authentication is … | |
Re: From build menu choose "Publish Website". Select a folder on your local hardrive, I publish all mine to C:\Deploy\<project name> (put your own project name here) Then when it's finished just FTP the whole lot up to your hosts server. If you have a database there maybe more work to … | |
Re: Use an ArrayList, then iterate backwards [code] using System; using System.Collections; using System.IO; namespace SortedList { class Program { static void Main(string[] args) { ArrayList stringList = new ArrayList(); StreamReader stringReader = new StreamReader("c:\\OptionList.txt"); string option = ""; while ((option = stringReader.ReadLine()) != null) { stringList.Add(option); } stringReader.Close(); stringReader.Dispose(); stringList.TrimToSize(); … | |
Re: My favourite body in the heavens is Europa, because it has the strongest chances of having oceanic life deep under the ice. So I voted for Jupiter as it's because of Europas' close orbit around jupiter that heated oceans below the ice are a possibility. [QUOTE]I agree with Ancient Dragon. … | |
Re: Just have a button on the page. For the button click event handler have something like: [code=vbnet] For Each item As DataGridItem In DataGrid1.Items Dim checkbox As CheckBox = CType(item.FindControl("<your checkbox id here>"), CheckBox) If checkbox.Checked Then string data = item.Cells(1).Text 'Do something useful End If Next [/code] I use … | |
Re: We need to see your code to be more helpful. But basically you need an event handler for the datagrids ItemCommand event. Use the DataGridItemEventArgs object that is passed as a parameter to the handler to determine which link was clicked and the empno it represents, query the database and … | |
Re: [code] Select t1.StockCode, sum(t1.QtyNeeded) QtyNeeded, sum(t2.QtyProduced) QtyProduced, max(t2.Date) [Date] from Table1 t1 join Table2 t2 on t1.StockCode = t2.StockCode group by t1.StockCode order by t1.StockCode [/code] Hmm that won;t work cos it's many to many. Have to think a bit more. | |
Re: Customer: 'Hi I'm trying to print something' Support: 'Ok put your mouse over the printer and..' Customer: 'Will the poor little fellow be ok? I dropped him by accident' Support: 'Eh..????' | |
Re: Did you set your id column as a primary key in the external database? This prevents the generate sql statements being available as it can't generate sql for tables that don't have a primary key. | |
![]() | Re: Http is conectionless, so you will need to use client side javascript. Use the setTimeOut function to poll the server by sending an ajax request using the XMLHttpRequest object available in most script enabled browsers, or new ActiveXObject("Microsoft.XMLHTTP") in IE browsers. ![]() |
Re: ASP (Active Server Pages) is the older of the two technologies. ASP uses VBScript or JScript which are interpreted languages. ASP.NET uses a framework that uses many more langugages (VB, C#, J# ..) and is much more Object Oriented and type safe. and has a cleaner division between client and … | |
Re: Whats the home page set at? put it to blank in internet options and see how long it takes to load then. | |
Re: How are you generating the HTML table ? PHP, ASP, ASP.NET ? Basically though yes you can store the string '<a href="somepage">click me</a>' in a nvarchar field for example. | |
Re: To me this looks like the debugger is trying to attach to the process. This can be caused if you have both framework 1.1 and 2.0 on your machine and an IIS virtual folder configured for framework 2.0, but you are trying to debug with VS 2003. Or some such … | |
Re: Havung set up your command object and added the parameters, you have neglected to call [inlinecode]command.ExecuteNonQuery()[/inlinecode] to actually execute the procedure. Do take note on Jamello about datatypes. The data in your textboxes are all strings. We don't know what your Sql Server table columns datatype is (you don't tell … |
The End.