594 Posted Topics
Re: Choose 'Compile and Run' from the Execute menu item. I would have recommended Visual C++ Express debugging is easier (but that's just my opinion) :) EDIT: Cripes i'm slow sometimes !!!! | |
Re: A static class can never be instantiated as an instance in memory. It is just a collection of static functions and member data. so: [code] myclass class = new myclass() //causes compiler error [/code] but: [code] myclass.someMethod() //this is ok [/code] All member variables and methods must also be static … | |
Re: Hi Clive Welcome to DW. Hope you get that Acer lappy singing in the end. :) | |
Re: Sql Server 2000 or 2005 ? I ask as it depends what GUI to use for the following TSQL code. Sql 2000 Start->Programs->Ms Sql Server->Query Analyser File->Connect click OK, select the database name in the drop down box, paste the code in, clcik the green play icon in the toolbar … | |
Re: You need to put strings in double quotes. The sql string argument to the SqlCommand constructor needs to be quoted. [inlinecode]myCommand = New SqlCommand([COLOR="Red"]"[/COLOR]UPDATE task SET ... [/inlinecode] don't put @ in front of the webserver control instances (you are confusing them with TSQL parameters) [code] myCommand = New SqlCommand([COLOR="Red"]"[/COLOR]UPDATE … | |
Re: You can install it separately. [URL="http://www.microsoft.com/downloads/details.aspx?FamilyID=d09c1d60-a13c-4479-9b91-9e8b9d835cdc"]http://www.microsoft.com/downloads/details.aspx?FamilyID=d09c1d60-a13c-4479-9b91-9e8b9d835cdc[/URL] | |
Re: Need more information. I'm sorry but I can't make sense of what you want. You say subtract, but don't you mean add? Example get the date from the database for the order, order requires three days shipping so add three days to the order date and that's the completion date. … | |
Re: You don't give us very much to go on. I can only share a similar experience. My first ever project invloved an MS Access database application. I had no experience with that at all, so I got the Using Access97 book from Microsoft Press and started at page 1. For … | |
Re: One of the hardest things for any developer is getting started. It's known as 'Analysis Paralysis' I find that one of the best techniques for breaking this impasse is to prototype. Take what you've proposed in your last post and do it anyway this can often be the catalyst that … | |
Re: Whoops you got a link wrong. Should be: [URL="http://www.w3schools.com"]www.w3schools.com[/URL] | |
Re: Yes Kb not all monitors support all resolutions and colour depth. Right click your desktop (all programs closed or minimised) Select properties, on the settings tab drag the screen resolution down a notch, and the colour quality. Click apply. If that doesn't work go back into the settings tab and … | |
Re: 1. Don't mix HTML 4 transitional and XHTML style attributes. This will put browsers into quirks mode and your DOCTYPE will be ignored. 2. Keep your styles separate; in style tags in the head; or a separate stylesheet file with .css extension. This should work in anything including IE 5.5 … | |
Re: Untested but this should be close if not perfect. Basically you need to group up the order table to reduce it to just the most recent (max) date for each customer id (this is a sub-query) then you can join in the customer and order tables for the rest of … ![]() | |
Re: [QUOTE]How can we check if web page is open or not using vb.net??[/QUOTE] i usually find MY.EYES are best for this, VB.NET sucks. | |
Re: Sorry couldn't resist. I still don't like VB syntax yetch! [code] 'Import the namespace required Imports System.Text.RegularExpressions Module Module1 Sub Main() 'The string data I have doubled up the quotes from your post 'so they are in memory as if come from your Access DB Dim searchString As String = … | |
Re: There's no competition, be a programer/developer. Why? Because as a programer, you program the computer to do your job for you. Then you can hang around all day in cool sites like this instead and get paid into the bargain! I mean c'mon; it's a no brainer! | |
Re: What database are you using? if Sql Server 2000 the general rule is to just save the path to the file in the database. The logic being: Files belong in a file system not a relational database. But, you can store files in binary format as BLOBS (Binary Large Objects) … | |
Re: Is this being caused by rounded corners ? Only happens for Posts since last visit > all forums Today's posts > all forums displays ok | |
Re: All this idealism is bollox. The UK is just a comparitively great place. Speak english, lots of help, lots of jobs/opportunity, clement weather. When you come from a piss poor country the UK just looks great. For those born and bread here the lens is different. Why stay when you … | |
I have just noticed the search function doesn't appear to work when you choose 'in this thread' in the drop down list. I tried to use it for the [URL="http://www.daniweb.com/forums/post435874.html#post435874"]rhyming posting game[/URL], for a word I knew had been used. It returned no results. | |
Re: Do you have to use frames? You could use System.Web.UI.WebControls.Panel instead? ![]() | |
Re: Why is a LAN port difficult? You just need a standard ethernet hub and 3 cat5 ethernet patch cables. 1 for the hub to the wall and the other two for your PC's to the hub. | |
Re: Microsoft do not support IIS or PWS on Xp Home. ASP is old now anyway do you need to run asp particularly?. Some people have managed to get IIS running on XP Home but it's not recommended unless you know XP inside out. I have XP Home and I installed … | |
Re: Have you not been given any training at all? Do you know how to use Visual Studio to start a project? Your first task before you code anything is to identify the objects. They become your classes the first obvious one is 'Colleague' do you know how to create a … | |
Re: Look into CSS particularly the visibility: hidden/visible attribute. I have an example on my hard drive which I post here as I haven't answered this question here before... much!!: [code=asp] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" > <head> <title>ShowHideControl</title> <script type="text/javascript"> function toggleVisibility(controlId) { var control … | |
Re: You need a space between * and FROM and also between adresses and WHERE | |
Re: First thing to try is to right click the LAN connection in Network Connections and choose "Repair" | |
Re: I would recommend a wireless router and wireless nic's for the computers. Trouble with cables is they're unsightly, a job to hide and limit where your machines can be positioned. You can get kits that use the existing mains wiring in your house. They are special plugs that include an … | |
Re: [QUOTE]Why would you want to record all your keystrokes for anything productive?[/QUOTE] Keep an eye on what your teenage children are up to in chat rooms? :) | |
Re: How about ditching anchor tag all-together? [code] <span style="cursor: hand; display: block;" onclick="alert('You clicked me');">Click Me</span> [/code] [QUOTE]i do not wish to add 2 (onmouseover & onmouseout) events just to make it appear like a link.[/QUOTE] Use css behaviours instead. | |
Re: RAM is Random Access Memory it is volatile storage anything stored in it is lost when you turn the computer off. The 30GB on your iPod is not the same it's non-volatile permanent storage like a hard drive or flash drive. The iPod will have RAM of some kind too, … | |
Re: Yes a repair install should be sufficient which will leave your data and settings in tact. But you should do a backup of everything you can't do without before upgrading to your new mobo. [URL="http://www.pcstats.com/articleview.cfm?articleid=1755&page=5"]http://www.pcstats.com/articleview.c...id=1755&page=5[/URL] | |
Re: The IDE for ASP.NET is Visual Studio 2005 (all editions) it includes it's own web server for developers to run ASP.NET apps they make. When you run an ASP.NET app in debug mode it automatically runs the web server. You can get Visual Studio 2005 Web Developer Express Edition free … | |
Re: I have experienced this also. I got around it by doing a databind again in the item command handler for the formview. | |
Re: have you installed chillisoft ? asp pages need an interpreter to execute the VBScript code. Chilisoft or ChiliASP (I think they're the same thing) will interpret VBScript in asp pages on a linux os. Apache will need to be configured to pass requests for .asp pages to chilisoft for execution. | |
Re: [URL="http://www.free-webhosts.com/php-hosting-comparison.php"]http://www.free-webhosts.com/php-hosting-comparison.php[/URL] | |
Re: very slow to post replies and edits today all morning (0900am - 1300 GMT) | |
Re: You cannot save a file directly to the users machine, in an HTTP web environment you do not have access to a users file system and no user would want you to have that ability either. Having created the file on the server you need to give your user a … | |
Re: [code] select g.Custid, g.Grno, g.Name, case when c.Chno = 123 then c.Chno else null end Chno, case when c.Chno = 123 then c.Chdate else null end Chdate from GrfileB g join Challan c on g.Grno = c.Grno where g.Custid = 1 order by g.Grno [/code] | |
Re: I have absolutely no idea who you are or what you're really like, but simply the fact you've posted (several times as have others) in this topic can only be a good thing. You're Okey spokey in my book anupam_smart. | |
Re: If you are ralking about distributing your application to other windows PC's. You need to create set-up project to create an installer for your app. There you can test that the PC has the necessary .NET Framework installed, if not there is a redistributable .NET Framework package downloadable from Microsoft … | |
Re: I love the tool tips too, some people are disabled and just can't write proper subject lines. The java mouse overs are far quicker than opening the link and waiting for the thread to load only to find nothing of interest. You know you can get anyone to do anything … | |
Re: Hold the start button down for 10 seconds. Laptops have various power saving modes and having to press and hold the power button to re-animate it is fairly common across laptop models. | |
Re: I had a similar experience last year. I bought a small form factor bare bones kit. It took me several months of hard saving to get the rest of the required components to build it (cpu, drives, ram, video yadda yadda) I finally built it and it didn't work. I … | |
Re: just go to somewhere like freewebs.com and use their site builder. | |
Re: [QUOTE=SpS;425785]This would be better [code=c] printf("Hit 'ENTER' to exit\n"); fflush(stdout); (void)getchar();[/code][/QUOTE] I'd like to know more about why this is better. I understand the fflush to force the buffered printf output to the screen immediately. But why the cast to void for getchar's return value? Does this prevent allocation of … | |
Re: This is now syntactically correct, whether it does what you require I can only guess without DDL and expected results from you. [code] update eligibilityhistory set terminationdate='09/30/2007' from eligibilityhistory inner join benefitplans on eligibilityhistory.benefitplanid=benefitplans.benefitplanid inner join pcphistory on eligibilityhistory.memberid=pcphistory.memberid where benefitplans.healthplanid='BCN' and pcphistory.providerid='1532' and terminationdate is null [/code] I recommend … | |
Re: English mostly, some Spanish. Occasionally I'll spout complete gibberish :) ..... Oh! you mean [I]programing[/I] language! Right now C# mostly. Ah the framework it's like Duplo bricks for windows. You can knock up a towering bloated edifice in minutes! I love it me. Javascript. Actually ECMAScript but were already confused … | |
Re: The DNS record needs to be changed to reflect changes in IP addresses for a given domain in any URL. If I were to type your web address into my browser now, my pc would send a dns request to my ISP's name server which will attempt to look up … |
The End.