594 Posted Topics

Member Avatar for TheNNS

Why there no entry for TOS ? I love TOS emulated on an old MAC it rocks! Ah my little Atari I love thee XXX

Member Avatar for mikeandike22
0
52
Member Avatar for kohkohkoh

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 …

Member Avatar for kohkohkoh
0
90
Member Avatar for MattEvans

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 …

Member Avatar for MattEvans
0
224
Member Avatar for shwetashelke
Member Avatar for Dave Sinkula
0
140
Member Avatar for j1979c

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.

Member Avatar for j1979c
0
167
Member Avatar for GREENHOUSE
Re: Dx10

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 …

Member Avatar for GREENHOUSE
0
128
Member Avatar for gani

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 …

Member Avatar for gani
0
141
Member Avatar for nihao

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]

Member Avatar for nihao
0
172
Member Avatar for mikefitz

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 …

Member Avatar for mikefitz
0
122
Member Avatar for jamshid

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]

Member Avatar for ~s.o.s~
0
254
Member Avatar for ramiljoaquin
Re: Iis

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.

Member Avatar for hollystyles
0
105
Member Avatar for thare

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 …

Member Avatar for thare
0
140
Member Avatar for newMeg

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 …

Member Avatar for hollystyles
0
198
Member Avatar for trevs234

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 …

Member Avatar for justobioma
0
206
Member Avatar for ChinDave

Search on start date only. So your criteria for Start_Date would be: Between #01/07/2006 And #31/07/2006

Member Avatar for Comatose
0
316
Member Avatar for John Odom

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 …

Member Avatar for jbennet
0
121
Member Avatar for nizzy1115

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!

Member Avatar for hollystyles
0
565
Member Avatar for gampalu

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 …

Member Avatar for hollystyles
0
205
Member Avatar for jordaaaaaan

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 …

Member Avatar for hollystyles
0
142
Member Avatar for selimatmaca

Try this instead; Dim x As String= ItemDropDown.SelectedValue Oh and use CODE tags around your code when posting in daniweb forums.

Member Avatar for Fenerbahce
0
115
Member Avatar for joshilay

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 …

Member Avatar for Laiq Ahmed
0
169
Member Avatar for jmcburne

This is a bit more specific to your problem: [URL="http://support.microsoft.com/?id=839880"]http://support.microsoft.com/?id=839880[/URL]

Member Avatar for Duki
0
160
Member Avatar for Jerrymie

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 …

Member Avatar for hollystyles
0
96
Member Avatar for Bellaa

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 …

Member Avatar for Bellaa
0
163
Member Avatar for shegs

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 …

Member Avatar for hp/compaqdave
0
94
Member Avatar for SmileSmita

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]

Member Avatar for Qcdms21
0
112
Member Avatar for ChimpusDupus

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 …

Member Avatar for ChimpusDupus
0
474
Member Avatar for gampalu
Member Avatar for Dave Sinkula
0
117
Member Avatar for Sealteam56

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 …

Member Avatar for Sealteam56
0
129
Member Avatar for newMeg

[CODE] select top 1 area, countarea from( select area, count(area) countarea from callers group by area ) areacount order by countarea desc [/CODE]

Member Avatar for newMeg
0
68
Member Avatar for hanania123

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 …

Member Avatar for hollystyles
0
92
Member Avatar for Duki

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 …

Member Avatar for jwenting
0
68
Member Avatar for php111

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 …

Member Avatar for GriffIT34
0
153
Member Avatar for xist

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 …

Member Avatar for hollystyles
0
163
Member Avatar for Dave Sinkula

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 …

Member Avatar for hollystyles
0
172
Member Avatar for akshay_goel

read this first and try again. [URL="http://www.daniweb.com/tutorials/tutorial22810.html"]http://www.daniweb.com/tutorials/tutorial22810.html[/URL]

Member Avatar for happygeek
0
25
Member Avatar for Melvin Bragg

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 …

Member Avatar for hollystyles
0
142
Member Avatar for donkey

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. …

Member Avatar for hollystyles
0
166
Member Avatar for chillharsh

Ternary operator perhaps ? [CODE] int a = 1; int b = 2; int c = ((a > b) ? a : b ) [/CODE]

Member Avatar for dilip.mathews
0
90
Member Avatar for blittle

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 …

Member Avatar for hollystyles
0
309
Member Avatar for Maza

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 …

Member Avatar for hollystyles
0
79
Member Avatar for j4mes_bond25

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 …

Member Avatar for j4mes_bond25
0
114
Member Avatar for invinate

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 …

Member Avatar for invinate
0
126
Member Avatar for MIGSoft

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 …

Member Avatar for hollystyles
0
137
Member Avatar for Mushy-pea

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)

Member Avatar for hollystyles
0
301
Member Avatar for hadi_82

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, …

Member Avatar for hollystyles
0
249
Member Avatar for dilip.mathews

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 …

Member Avatar for dilip.mathews
0
170
Member Avatar for mwedberg

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 …

Member Avatar for hollystyles
0
118
Member Avatar for thiyag2001

[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.

Member Avatar for hollystyles
0
206
Member Avatar for arunachalamsa

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 …

Member Avatar for campkev
0
120

The End.