594 Posted Topics

Member Avatar for jacques95

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 !!!!

Member Avatar for jacques95
0
144
Member Avatar for pointers

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 …

Member Avatar for pointers
0
101
Member Avatar for Cyone

Hi Clive Welcome to DW. Hope you get that Acer lappy singing in the end. :)

Member Avatar for hollystyles
0
60
Member Avatar for jayz_raul

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 …

Member Avatar for jayz_raul
0
110
Member Avatar for m_saahil

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 …

Member Avatar for adamm84
0
126
Member Avatar for fcaserio

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]

Member Avatar for hollystyles
0
121
Member Avatar for Nokuphila
Re: Help

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

Member Avatar for Nokuphila
0
91
Member Avatar for jhen

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 …

Member Avatar for Ramy Mahrous
0
93
Member Avatar for The Midnighter

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 …

Member Avatar for hollystyles
0
111
Member Avatar for bill.jeffs

Whoops you got a link wrong. Should be: [URL="http://www.w3schools.com"]www.w3schools.com[/URL]

Member Avatar for autocrat
0
110
Member Avatar for Positiveedge

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 …

Member Avatar for jbennet
0
257
Member Avatar for MidiMagic

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 …

Member Avatar for MidiMagic
0
117
Member Avatar for Turing

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 …

Member Avatar for iamthwee
0
145
Member Avatar for WEATHER CHANNEL
Member Avatar for bcm

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

Member Avatar for hollystyles
1
79
Member Avatar for bajanpoet

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

Member Avatar for bajanpoet
0
111
Member Avatar for albie

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!

Member Avatar for hollystyles
0
153
Member Avatar for vudugumahesh

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

Member Avatar for vudugumahesh
-1
123
Member Avatar for Dani

Is this being caused by rounded corners ? Only happens for Posts since last visit > all forums Today's posts > all forums displays ok

Member Avatar for MidiMagic
0
279
Member Avatar for Dave Sinkula

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 …

Member Avatar for EnderX
0
331
Member Avatar for hollystyles

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.

Member Avatar for Dani
0
135
Member Avatar for mohanme_2001

Do you have to use frames? You could use System.Web.UI.WebControls.Panel instead?

Member Avatar for iamthwee
0
170
Member Avatar for vietexob

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.

Member Avatar for jbennet
0
1K
Member Avatar for mnoory
Re: Asp

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 …

Member Avatar for hollystyles
0
113
Member Avatar for partyanimal

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 …

Member Avatar for preetham.saroja
0
106
Member Avatar for The_Restore_Lab

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 …

Member Avatar for hollystyles
0
609
Member Avatar for bluebird
Member Avatar for bluebird
0
72
Member Avatar for Jolly181

First thing to try is to right click the LAN connection in Network Connections and choose "Repair"

Member Avatar for superduck
0
3K
Member Avatar for russey123

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 …

Member Avatar for DimaYasny
0
446
Member Avatar for Utkarsh Kukreti

[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? :)

Member Avatar for Ramy Mahrous
0
292
Member Avatar for Fungus1487

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.

Member Avatar for Fungus1487
0
2K
Member Avatar for sk8ndestroy14

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

Member Avatar for sk8ndestroy14
0
161
Member Avatar for earld2

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]

Member Avatar for earld2
0
146
Member Avatar for atplerry

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 …

Member Avatar for hollystyles
0
107
Member Avatar for mahir78

I have experienced this also. I got around it by doing a databind again in the item command handler for the formview.

Member Avatar for hollystyles
0
118
Member Avatar for tirivamwe

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.

Member Avatar for hollystyles
0
110
Member Avatar for quintoncoert

[URL="http://www.free-webhosts.com/php-hosting-comparison.php"]http://www.free-webhosts.com/php-hosting-comparison.php[/URL]

Member Avatar for hbk619
0
172
Member Avatar for Serunson
Member Avatar for MidiMagic
0
598
Member Avatar for mishrap

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 …

Member Avatar for mishrap
0
547
Member Avatar for nice_true

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

Member Avatar for matale
0
120
Member Avatar for >shadow<

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.

Member Avatar for Serunson
0
2K
Member Avatar for bcm

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 …

Member Avatar for binoj_daniel
0
108
Member Avatar for MidiMagic

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 …

Member Avatar for Dave Sinkula
0
830
Member Avatar for Blaite

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.

Member Avatar for Blaite
0
101
Member Avatar for jeffc418

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 …

Member Avatar for jeffc418
0
113
Member Avatar for jonamasa
Member Avatar for hollystyles
0
63
Member Avatar for Lost in Code...

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

Member Avatar for WaltP
0
197
Member Avatar for SerinaKelley

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 …

Member Avatar for hollystyles
0
160
Member Avatar for ProgrammersTalk

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 …

Member Avatar for MattEvans
0
226
Member Avatar for cmarin

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 …

Member Avatar for hollystyles
0
146

The End.