594 Posted Topics
Re: Why there no entry for TOS ? I love TOS emulated on an old MAC it rocks! Ah my little Atari I love thee XXX | |
![]() | Re: You can't use VB6 with .NET VB6 does NOT meat the requirements of the CLR (common language run-time) Making vb.net NON backward compatible with VB6 was a deliberate move by Microsoft. You could wrapper up VB6 into a COM component .NET has ways of inter-operating with COM. But you would … ![]() |
Re: Yes any PC can be Client AND Server. Sounds like you want a web server on your pc, depending on your setup you have several choices. If you are running WindowsXP home I can recommend [URL="http://www.apachefriends.org/en/xampp.html"]xampp[/URL] it installs Apache 2 for windows and is very easy to use. If you … | |
Re: The links Ancient Dragon gave you include downloadable code. Sheesh! | |
Re: In the file menu select New... and then Web site ... Why they dd it that way I dunno it got me first time too and I'm a pro. Somebody somewhere thought it would be funny I guess. | |
Re: DirectX is a windows API for drawing sophisticated graphics on windows computers. It sits between the the developer writing his (typically a game) and your graphics card and driver. As graphics cards improve the DX library becomes out of date as it won't have functions for the new stuff on … | |
Re: If you create the table in Enterprise Manager or Visual Studio there is a list of properties for esach column you create, three of them are called identity (yes,no) identity seed (what number to start from) and increment (the step, or how much to increment by when creating each new … | |
Re: document.all is IE only not W3C standard. W3C standard is [CODE] var divColl = document.getElementsByTagName("DIV"); [/CODE] A great place to make sure you're using W3C standards is: [URL="http://www.w3schools.com"]http://www.w3schools.com[/URL] | |
Re: There isn't any 'built-in' to dot net. The best way is to use regular expressions to validate the input on the client and then also format it how you want for the DB serverside. This is best because it allows the user to put (000) 000 0000 or 0000000000 or … | |
Re: There ya go it never takes long for something to happen around here, Kudos to SoS: [URL="http://www.daniweb.com/techtalkforums/thread50370.html"] http://www.daniweb.com/techtalkforums/thread50370.html[/URL] | |
Re: In IIS Server Manager, expand the server, expand default website, right-click your virtual directory and choose properties, on the home directory tab click the create button. | |
Re: Thats what Excel is good at why they want you to re-invent the wheel ? that's dumb. Distribute an excell spreadsheet the end user fills it in, emails it or saves it some server share, import it into the database. ASP is for web applications it ain't a spreadshhet that's … | |
Re: What you are wishing to do is officially called Pivoting, you want to "swing" the data from the vertical to the horizontal so to speek. You can use TSQL's CASE function in your select statement to do that. [CODE] SELECT date, SUM(CASE WHEN source = 'star' THEN 1 ELSE 0 … | |
Re: If you have windows go here; [URL="http://www.bloodshed.net/index.html"]http://www.bloodshed.net/index.html[/URL] It's a free C and C++ IDE and compiler (it's the windows port of Linux's GCC or something like that). Install it then do this tutorial: [URL="http://www.cplusplus.com/doc/tutorial/introduction.html"]http://www.cplusplus.com/doc/tutorial/introduction.html[/URL] get this book or similar: [URL="http://www.amazon.co.uk/gp/product/0672326817/026-5503996-0395655?v=glance&n=266239"]http://www.amazon.co.uk/gp/product/0672326817/026-5503996-0395655?v=glance&n=266239[/URL] [QUOTE]and im pretty much broke so i cant pay for … | |
Re: Search on start date only. So your criteria for Start_Date would be: Between #01/07/2006 And #31/07/2006 | |
Re: Not just wirless settings there's DHCP to consider most routers have DHCP enabled by default and usuallythe same ip range, that would be conflict number one if you have more than one router. What is your internet connection ADSL or DSL ? did you not have to setup a account/username … | |
Re: volkswagon golf estate SDI 1.9 diesel. Moves like a tortoise but I can't remember the last time I had to put fuel in it, in fact I'm not sure I have yet! | |
Re: Check your compiler optimisation switches in project properties or something (I havn't used VC++ ide ever but I guess they're in there somewhere) If you look here: [URL="http://msdn2.microsoft.com/en-us/library/fwkeyyhe.aspx"]http://msdn2.microsoft.com/en-us/library/fwkeyyhe.aspx[/URL] You will see that command line switch /ZI means include debugging symbols /O2 means compile 'fast' code They are obviously mutualy exclusive … | |
Re: It's possible something has come unseated, a RAM stick or the graphics card or some other PCI card. Best thing to do is check everything is seated properly in all the slots. When you power on listen for beeps from the BIOS a single short beep is what you're after … | |
Re: Try this instead; Dim x As String= ItemDropDown.SelectedValue Oh and use CODE tags around your code when posting in daniweb forums. | |
Re: Yeah that's right. If you can post here you're on the interweb thingy so go to that google thingy and search 'binary tree' and you get links like this: [URL="http://www.cprogramming.com/tutorial/lesson18.html"]http://www.cprogramming.com/tutorial/lesson18.html[/URL] Read and have a go, then when you get stuck come back here, post what you got and we all … | |
Re: This is a bit more specific to your problem: [URL="http://support.microsoft.com/?id=839880"]http://support.microsoft.com/?id=839880[/URL] | |
Re: This is a logic error you are asking where MALE AND FEMALE = 'T' By definition that filters out any records where MALE <> 'T' OR FEMALE <> 'T' try this, let me know if it works [CODE] SELECT FAC.FACILITY_ABBR hall_abbr, COUNT(HALLUNIT.ACCEPTS_MALES_FLAG) MISDEMEANOR_MALE, COUNT(HALLUNIT.ACCEPTS_FEMALES_FLAG) MISDEMEANOR_FEMALES FROM HALL_UNITS HALLUNIT, FACILITIES FAC … | |
Re: I'm afraid you're not likely to get any resopnse: 1. your form asks for personal information (alarm bells ring immediately..walk away walk away) 2. Your post and document make completely no sense at all 3. what's that dodgy looking edit link to devx forums in your last post You maybe … | |
Re: I had this sort of problem recently (not on 64bit OS standard 32bit but maybe that's not relevant here). It was windows update trying to install latest critical patches in the background. So I did the restore thing like you and booted, first thing I did after that was launch … | |
Re: in your anchor tag href attribute concat the order id into the querystring so your links are: <a href="/form.asp?orderid=123">order</a> in the form.asp you have; [CODE] Dim orderid orderid = Request.Querystring["orderid"] sql = "update blah.. where orderid=" & orderid : : etc... [/CODE] | |
Re: Hoo hoo I love these easy peasy ones!! You need to check for postback, if first request (not a postback) bind the data c# [CODE] if(!IsPostBack) { dropDownList.DataSource = GetData(); //however your using ADO dropDownList.DataBind(); } [/CODE] VB [CODE] If Not Page.IsPostback Then DropDownList.DataSource = GetData() //ADO blah DropDownList.DataBind() End … | |
Re: I compiled and ran your code and it worked as expected for me no problem. What exaclty are you inputing and what exactly is the response you're getting? Oops you posted just before me. The code runs *with* the second do loop in tact just fine for me, I literaly … | |
Re: [CODE] select top 1 area, countarea from( select area, count(area) countarea from callers group by area ) areacount order by countarea desc [/CODE] | |
Re: IE on your work laptop is almost certainly configured to use a Proxy server for surfing the internet. In Tools menu -> internet options..... Sheesh download firefox on another pc, copy installer to a USB stick or copy acroos your network (that bits working) install it and forget IE. But … | |
Re: Oh boy it's so nice to know I'm not alone, I did MCSE in 2000 and I felt exact same as you do now. Don't worry the school of hard knocks will see you through, most of the curriculum is a crock of shit miles away from the real world … | |
Re: Hi, So you want to program? Good. It can be extremely rewarding but also extremely frustrating. But it is common for the best rewards to come with the highest risk. I'm a self taught programmer so I know what you are facing and I wish you every luck. That said … | |
Re: Phew that's quite a story. Ok you have a static ip from your ISP? that makes you a bit more of a target perhaps. You mention virus towards the end have you done a full scan for viruses *and* anti-spyware scan yet? That's always a good start. The fact you … | |
Re: I get the lines too but only in FireFox 1.5.0.4 not IE 6 (always updated to latest) Whats more if I switch from a maximized firefox on this post to some other maximaized window and back again the lines are gone, if I scroll the code window off the bottom … | |
Re: read this first and try again. [URL="http://www.daniweb.com/tutorials/tutorial22810.html"]http://www.daniweb.com/tutorials/tutorial22810.html[/URL] | |
Re: I had a similar problem once, it turned out the power supply was not up to powering all my added on bits and was no longer supplying sufficient current to burn a cd properly. Solution get a bigger PSU (bigger Watts not bigger size obviously) But yeah try it in … | |
Re: The case fan, cpu fan or power pack (PSU) ? d600 thats a lappy right ? most like case or cpu fan you've replaced, some lappys only have the one fan for all of it. you replaced the old one cos it wasn't spinning ? new one doesn't work...hmmm 1. … | |
Re: Ternary operator perhaps ? [CODE] int a = 1; int b = 2; int c = ((a > b) ? a : b ) [/CODE] | |
Re: There's probably a floppy disk (gosh are those things still around?) in the floppy disk drive, most computers are configured to try and boot from a floppy disk first and then the harddrive afterwards (so that if the hard drive dies you can boot from a floppy and fix things … | |
Re: 1. do you have the CD's that would have come with it new ? boot from that and re-install. 2. does it have a windows sticker on it with a product key? borrow someone's windows cd abd re-install. Personally I'd get on another pC with broadband internet somewhere and download … | |
Re: That's right to be little clearer in case you're not aware, if you're not specific about point size in your HTML/CSS the browser defaults to: IE view menu->text size (set to medium by default perhaps this has got changed by accident in your IE browser to larger or something) Firefox … | |
Re: One of the best things you can do is read other peoples code, I try to do it every day. Don't stick to one language read as many and have a go at as many as possible. Examples in books may seem boring but do them anyway , then expand … | |
Re: Ok now it compiles (missing ; and include pre-processor moved to correct position, using namespace added, return o changed to return 0), one line at a time only and must compile. Single statements and variable declarations no problem. To start a function start with the declaration by adding as a … | |
Re: a sub link from Caperjacks link shows you how you can install and boot windows from a logical partition. (Not as easy as installing Linux to a logical partition but then Linux can be difficult in other areas where windows is easy) | |
Re: Hmm big subject, there are whole books written purely to address this one question. Find one on Amazon or InformIT.com and read it, it will be worth every penny if your interested/studying or working computer programming. Of the ones I've read these were some of the best : Object Thinking, … | |
Re: Where are you getting this from? [CODE] int A::*p = &(A::d); [/CODE] In C you declare Type <variable name> ; so to declare a pointer to an integer using the * dereference symbol you do this: [CODE] int * p = &someintegervariable [/CODE] try this: [CODE] #include <iostream> class A … | |
Re: Yes indexes are your first concern. !. do you have any, then 2. are you indexing the right columns (typically the ones involved in JOINS) Next are your statements optimized ? (could write a book on this he he) but take the particular query you mention try to ensure the … | |
Re: [CODE] if condition = false then Control.Visible = true else Control.Visible = false end if [/CODE] Replace "Control" with the name or ID (the reference) of your server control. | |
Re: If your schema is a good one the "8th" row will be uniquely identified by it's primary key so to delete a single row in a table you would use syntax like: [CODE] DELETE FROM <table> WHERE <primary key column> = <value> [/CODE] You need to replace <table> with the … |
The End.