594 Posted Topics

Member Avatar for hollystyles

I installed Ubuntu Efty Edge this weekend on an older box I had lying around. It has a nic based on the National Semiconductor Corporation (McPhyter II) chipset. But the network card is not working. dmesg | grep eth Reveals nothing ?? lsmod Shows that module natsemi is loaded as …

Member Avatar for hollystyles
0
182
Member Avatar for Dave Sinkula

[QUOTE]im proud to be an accident[/QUOTE] That's twice you have neglected to lay an insult ambush for the next poster! you communicationally challenged bovine extract guzzling flightless bird! #18 You couldn't program your way out of a transparently thin tissue paper bag that's been soaking in a puddle for a …

Member Avatar for maui_mallard
0
101
Member Avatar for majestic0110

You don't need IIS for SQL Server to work. If you use Visual Web Developer 2005/2008 Express Edition, they have there own embedded IIS web server called WebDev.exe that runs automatically when you run your site in debug. I have XP Home Basic and I installed Apache/PHP/MySql using xampp for …

Member Avatar for majestic0110
0
174
Member Avatar for rouse

The overflow attribute causes scroll bars if the content overflows the width of the div. [code=HTML] <div id="fixedContent" style="position: absolute; top: 50px; left: 50px; width: 280px; height: 150px; overflow: auto;"> <p> Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. …

Member Avatar for FC Jamison
0
141
Member Avatar for hollystyles

If one of your contacts pops up in MSN Messenger with the message: [code] <friend> says: Hey, isn’t this YOU?? :S http://mainmsn.com/images/viewimage.php?=your@email.com [/code] Don't click it !! It's a trojan, you'll think your downloading a picture, but if you try to view it, it will unpack it's payload. If I'm …

Member Avatar for hollystyles
0
195
Member Avatar for sir avalanche

So far your friend is right then! Ooh that's so cruel. What is 'start:' I'm no c/c++ expert but that doesn't look like valid syntax to me. Also you need to prefix cout with std:: or put a using namespace std; at the top between your include directives and the …

Member Avatar for hollystyles
0
162
Member Avatar for hiral_mehta

[QUOTE]i m new devloper[/QUOTE] Ok the absolute number one thing a newbie needs to know: [URL="http://catb.org/~esr/faqs/smart-questions.html#intro"]http://catb.org/~esr/faqs/smart-questions.html#intro[/URL] [QUOTE]how to write to populate data in the gridview from sql server[/QUOTE] Well how long is a bit of string? There are *many* ways to accomplish this in the .NET framework. You need to …

Member Avatar for hollystyles
0
167
Member Avatar for rutul

You need to use cookies When a page is requested, check if cookies are supported, and check for a cookie. If found fill in the username from the saved cookie. You will rarely just get given code here, you have to do your own work. Here's a link to get …

Member Avatar for Jugortha
0
79
Member Avatar for Reg74

You would need to use reflection to get a PropertyInfo[] array of the class's properties, then loop through, testing for CanWrite = true then use SetValue depending on SystemType with a switch statement perhaps. Check this out: [URL="http://articles.techrepublic.com.com/5100-3513-6099345.html"]http://articles.techrepublic.com.com/5100-3513-6099345.html[/URL] But in a single statement ? No I don't think that could …

Member Avatar for hollystyles
0
133
Member Avatar for bhakti.thakkar

Or maybe: [CODE] select b.id, isnull(a.name,b.name) as [Name] from b left join a on b.[Name] = LEFT(a.[Name],1) [/CODE]

Member Avatar for bhakti.thakkar
0
161
Member Avatar for Serunson

[QUOTE=MattEvans;460427]The titles like 'Master Poster' are based on number of posts; although certain users can change their title to anything they want - Dani for example sets her title to 'The Queen of Daniweb', other people can do that aswel. I can't, I guess you can't either.[/QUOTE] If you are …

Member Avatar for overwhelmed
0
146
Member Avatar for rcadble

How about this? [URL="http://www.developerfusion.co.uk/show/2084/"]http://www.developerfusion.co.uk/show/2084/[/URL] Do I get a dollar for my research fee please ?

Member Avatar for Narue
0
169
Member Avatar for majestic0110

Well UI Design is not specific to any platform really. But what about this? [URL="http://msdn2.microsoft.com/en-us/library/aa350483.aspx"]http://msdn2.microsoft.com/en-us/library/aa350483.aspx[/URL]

Member Avatar for majestic0110
0
124
Member Avatar for technogeek_42
Member Avatar for harrysc

Here's a question in C#: [code] using System; class Program { static void Main(string[] args) { String question = "How do I count occurrences, given a list of integers?"; Console.WriteLine(question); String answer = Console.ReadLine(); } } [/code]

Member Avatar for david.crawford
0
103
Member Avatar for twomers

Film: Aliens Character: Newt Quote: "They're dead! Ok? Can I go now?" After being gently probed by Ripley about her parents whereabouts.

Member Avatar for vmanes
0
276
Member Avatar for omotoyosi

[URL="http://www.google.co.uk/search?hl=en&q=An+attempt+to+attach+an+auto-named+database+for+file&btnG=Search&meta="]http://www.google.co.uk/search?hl=en&q=An+attempt+to+attach+an+auto-named+database+for+file&btnG=Search&meta=[/URL]

Member Avatar for emurf
0
136
Member Avatar for Darko George
Re: vb

The politically correct answer: It's a programing language that you can use to write software that runs on Windows. The REAL answer: It was invented by Microsoft to comoditize software so they could sell more copies of Windows. In a nutshell: "..Developer, developer, developer..." - Steve Bullmar [URL="http://video.google.com/videoplay?docid=6304687408656696643"]http://video.google.com/videoplay?docid=6304687408656696643[/URL]

Member Avatar for hollystyles
0
48
Member Avatar for amithasija
Member Avatar for The Dude

I've not had any problem veiwing avatars. But I have been seeing this lately when browsing Posts Since Last Visit -> All forums. See how the topics go underneath the sidebar on the right? I'm using Firefox 2.0.0.11 on XP Professional SP2.

Member Avatar for The Dude
0
255
Member Avatar for Venom Rush

Use the LIMIT keyword (Similar to TOP in MSSQL) If you use ORDER BY to order the results descending, so that the latest records will be at the top of the result set. Then use LIMIT to get just the first three of those records. [code] SELECT someColumn FROM someTable …

Member Avatar for Venom Rush
0
107
Member Avatar for langatmail

I've wired the phone through a special tariff number that gives me a royalty every-time you call the mother-in-law.

Member Avatar for MidiMagic
0
81
Member Avatar for amna_aries1

It depends what platform your building your game for. C++ doesn't know about 'mice' If you're creating your game for Windows, you need to look at the Win32 API. Particularly the message loop or 'pump' as it's sometimes called. Windows will send mouse event msgs with parameters to this function …

Member Avatar for amna_aries1
0
101
Member Avatar for mosaics

I have PM'd you to offer my services. If you have access to the code hosted at your domain my free advice is to check the markup where the flash objects are and check the paths are correct and that the flash actually exist on the webserver.

Member Avatar for hollystyles
0
69
Member Avatar for amith003

Use ADO.NET to get data from the database. I recommend you create a custom class that has a property for each of the data columns. Iterate the database resultset (be it a SqlDataReader or DataTable or whatever) and create an array of your custom class. One per record. Assign the …

Member Avatar for amith003
0
107
Member Avatar for palcham

it allows you to dynamically inject a string of HTML markup into the Document Object Model using JavaScript.

Member Avatar for temp304
0
142
Member Avatar for unicorn11

Just compile the website and upload only the .aspx files to the web server. The cs files are not required all the code in the .cs files is compiled into the single .dll in the bin folder.

Member Avatar for alc6379
0
101
Member Avatar for BalagurunathanS

There are many ways to show/hide, render/not render a control For ASP.NET webcontrols you have the Visible property which can be set to true or false but that's serverside. For client side you have visibility attribute in CSS which can be "visible" or "hidden", here is an example: [code=asp] <%@ …

Member Avatar for saars
0
5K
Member Avatar for use4d

It's a "Made you look, made you stare, made you lose your underwear" thing. I'm not aware of any well known philosophers that died of AIDS and apparently a lot of them swore by a glass of salty water a day. Which shows even 'clever' people have flaws :)

Member Avatar for jasimp
0
436
Member Avatar for The Dude

It is insane! She spilt salt on a burger, several pairs of hands were then allowed to remove it. And then it was served to a customer !! Gack! :twisted:

Member Avatar for sneekula
0
115
Member Avatar for hollystyles

Please join me in my little self serving mini celebration :) It's been great fun posting with you all so far here at DW. I look forward to many more.

Member Avatar for jbennet
0
117
Member Avatar for raheleh

Yes read up about AJAX, ASP.NET 2.0 has AJAX built in. for example by nesting a GridView inside an UpdatePanel you can execute a postback but without a full page re-render.

Member Avatar for chakrimsis
0
133
Member Avatar for ferlach

If you just have the word document on the webserver and provide a link to it e.g.: [code]http://www.mydomain.com/documents/word.doc[/code] The users browser (depending on set-up and what applications they have) will either pop-up a download box or attempt to open the file directly into whatever app the user has configured for …

Member Avatar for ferlach
0
124
Member Avatar for bnilsen

[QUOTE]I’m new to SQL server (and databases, sql) and guess ‘cursor’ may be the way to go but I would appreciate any help. Thanks[/QUOTE] Cursor? yuck! I have been programing SQL Server for 8 years and I have *never* used a cursor they are slooooowww and are completely contrary to …

Member Avatar for bnilsen
0
126
Member Avatar for suman@sdsu

There are many ways depending on how sophisticated your project or needs are. The easiest in my opinion is the setup project. [URL="http://www.c-sharpcorner.com/UploadFile/mgold/deployment_111112005003045AM/deployment_1.aspx"]http://www.c-sharpcorner.com/UploadFile/mgold/deployment_111112005003045AM/deployment_1.aspx[/URL]

Member Avatar for mariocatch
0
121
Member Avatar for Shadow webber

If you want to add text to a document use the DOM to create a text node and append it. [code] var textNode = document.createTextNode("Some text"); document.getElementsByTagName("body")[0].appendChild(textNode); [/code]

Member Avatar for hari charan
0
120
Member Avatar for >shadow<

This site is full of programmer pupies, come to get house... er I mean programmer trained. :)

Member Avatar for hollystyles
0
378
Member Avatar for navi17

The content place holder in site.master should be empty of any html, that's where the default and home pages will place their content. Move the html in the site.master OUT from between the content place holder cph. Add the:[inlinecode]<asp:content id="Content1" contentPlaceHolderId="cph" runat="server"> </asp:content>[/inlinecode] tags to the deafult.aspx page as it …

Member Avatar for hollystyles
0
114
Member Avatar for NatalyC

Hello welcome to DaniWeb. You are new but C is most definitely not! he he :)

Member Avatar for NatalyC
0
68
Member Avatar for ladiesman_217
Member Avatar for ndeniche
Member Avatar for dangerd

I did one of these in my last company. One of the key issues for me was the large amounts of free text that will ultimately need to be searched. I had a primary table that was the base for each fault item. I had a foreign key table off …

Member Avatar for hollystyles
0
78
Member Avatar for kevin01

Sounds like you want a CMS (Content Management System) A well known PHP one is postNuke: [URL="http://www.postnuke.com/"]http://www.postnuke.com/[/URL]

Member Avatar for Njegos
0
82
Member Avatar for pointers

Does the data have to be standalone on the device? can't the device connect remotely for DB operations perhaps?

Member Avatar for pointers
0
81
Member Avatar for gaziteran2000

Are you using Visual Studio ? if so what version. There could be many reasons you can't find it. When creating ASP.NET pages it is allowed to have the code in the aspx page instead of a code behind file. It is an option when you create pages whether to …

Member Avatar for hollystyles
0
91
Member Avatar for V.Rajagopalan
Re: .net

Welcome to DaniWeb. As of .NET framework 2.0 if you use Visual Studio 2005 it compiles your code as you create it in the background. When you are finished and ready to deploy you have many compiler options as do many compiled languages. Basically choose 'Release' build configuration, choose build …

Member Avatar for jasimp
0
115
Member Avatar for srinukatkam

In base class declare a method as virtual: public virtual void SomeMethod() In the derived class override the method: public override void SomeMethod() For more detailes see: [URL="http://msdn2.microsoft.com/en-us/library/ms173152(VS.80).aspx"]http://msdn2.microsoft.com/en-us/library/ms173152(VS.80).aspx[/URL]

Member Avatar for hollystyles
0
49
Member Avatar for Cecilia_notes

I would use two images. One of a checked checkbox and one of an unchecked checkbox. Swap the images in your code according to your logic. Clicks will no longer be a problem and the user cannot check/uncheck boxes.

Member Avatar for hollystyles
0
174
Member Avatar for GLT

Question: Why are you explicitly allowing nulls in your primary key column? for primary keys (two syntactical options): 1. [code] BCustID INT IDENTITY[COLOR="Red"](1,1) NOT[/COLOR] NULL [COLOR="Red"]PRIMARY KEY[/COLOR] [/code] or 2. [code] constraint pkSomeName primary key (ColumnName) [/code] This will create a clustered primary key by default. There are lots of …

Member Avatar for hollystyles
0
103
Member Avatar for karan_21584

Or you can just "EXEC sp_databases" look it up in Books on line (the manual that comes with SQL Server) find it from Start -> All programs -> Microsoft SQl Server -> Books online.

Member Avatar for s_muenchaisit
0
139

The End.