2,071 Posted Topics

Member Avatar for Catweazle

Out of curiosity, do we know what technology this was in XP? I'd like to see what the current technology in XP has to offer in this regard...

Member Avatar for alc6379
0
222
Member Avatar for hammondlj

First of all, it's rounded to 42. think about the values of binary: [code] 32 16 8 4 2 1 1 0 1 0 1 0 [/code] That should kind of show you what's going on. If you've got any questions, let me know. For your reference, 10101010 is equal …

Member Avatar for chandra1984
0
224
Member Avatar for ema005

Do you have a column set as a datakey for the gridview? You usually need one for what you're trying to do.

Member Avatar for ema005
0
92
Member Avatar for cama73

put the Windows disk into your CD drive, then run in a Command Prompt: [b]sfc /scannow[/b] If there are any missing files, that should restore them.

Member Avatar for Geneviev
0
220
Member Avatar for razmca

You can't really determine what path they're saving the file to-- that dialog box is something the browser uses exclusively. Why not make the application itself determine what directory it's in, then go from there?

Member Avatar for DdoubleD
0
154
Member Avatar for babbu

Where are you getting this DataTable from? Have you changed the routine you're using to get it?

Member Avatar for babbu
0
141
Member Avatar for SFletch

Hey there, There's not the notion of "applets", as in Java. The closest thing would be SilverLight, which does a lot of what you're asking. That would give you something encapsulated you could run elsewhere. The other alternative would be running an IFRAME with an ASPX page, but I'm not …

Member Avatar for SFletch
0
119
Member Avatar for getkiran1

sknake is right... This isn't a programming problem. This is more something that should be resolved by local security policies on a client machine. Are these machines part of a domain?

Member Avatar for Diamonddrake
0
230
Member Avatar for tuanpq

Can you please elaborate on your question? I can say that between Vista and XP the display manager changed. That function may just behave differently now...

Member Avatar for alc6379
0
70
Member Avatar for bumsfeld

Would running Python server-side work? Apache supports Python as a web development language. You can generate HTML on the server, and then browse that in IE.

Member Avatar for you2
0
216
Member Avatar for DinoDawgg

More than likely, you're looking at a bad CPU or Motherboard. Did you disconnect all drive power cables and data cables, too? You can try clearing the CMOS jumper on the system, too. Short of that, you're probably looking at a dead motherboard or CPU, like I said.

Member Avatar for Chaky
0
319
Member Avatar for Macoland

You might very well have a hardware issue here. I'd do like Catweazle said: Put the processor in another motherboard, and boot it up. I just had it happen last week a customer had a motherboard go bad, which ended up killing the processor, too. In the end, I had …

Member Avatar for mestanley
0
259
Member Avatar for leoman

What's the script? (be sure to edit out the email addresses) I usually just use sendmail directly, like this: [b]sendmail [email]email@domain.com[/email] < ~/maildir/mailmessage[/b] and that works out just fine, never had a problem. You could even use a variable if you wanted: [b]sendmail $email_addy < ~/maildir/mailmessage[/b] That's always worked for …

Member Avatar for KlementHonza
0
2K
Member Avatar for dotNetDummi

you'd have to download those tools or purchase them. I don't know of a particular method or free tool that will allow you to do that...

Member Avatar for DuoDimension
0
107
Member Avatar for caal

Have you called Toshiba Tech support? That sounds like the LEDs might be giving you some kind of error code. Without knowing their LED coding scheme, nobody here could tell you anything...

Member Avatar for Eagle70ss
0
199
Member Avatar for barretsm

There should be some option in the BIOS to disable SpeedStep, if you really wanted to get rid of it.

Member Avatar for PcTestCard.com
0
129
Member Avatar for zimbo

Actually, even if you use it as an IDE controller, you may still have to install the driver. I have an ITE8212 based IDE controller that I still have to install a driver for, even if I don't use it in a RAID config. That's just how it is...

Member Avatar for druk
0
114
Member Avatar for IBMX20 LCD Bulb

You might not be able to find just the bulb... Have you tried getting a Service Manual from IBM? Many manufacturers offer those, along with spare parts lists. You should poke around on the IBM website for a teardown manual and a parts list for that notebook.

Member Avatar for dansab
0
225
Member Avatar for FallenPaladin

Just to add to this: If you're using reflection frequently because you have several classes that have the same method, you could consider casting those objects up to a defined interface. Say you have two classes, [i]ClassA[/i] and [i]ClassB[/i]. Both classes have a method called Run(), which you've defined in …

Member Avatar for sivak
0
151
Member Avatar for nikkisboricua

Why not just use VNC? [url]http://www.realvnc.com/[/url] It's free, and does the same thing. You have to install a client program on the machine you're accessing from, but that's no big deal-- I've seen Java clients for this, too, so it can be web-based if need be.

Member Avatar for rs_sis
0
320
Member Avatar for bluedos82

Does more than one person use this computer? It's possible several things may have happened: The most prominent being spyware or viruses. Other than that, I'd look into completely uninstalling and then reinstalling Office XP.

Member Avatar for chauhanap
0
352
Member Avatar for gg234

Please don't start spamming this forum. This was gone over in another forum: [url]http://www.justlinux.com/forum/showthread.php?t=143386&highlight=debianhelp[/url] Not saying that your content isn't good, or anything, but usually links to HOWTOs like these are after someone has asked for them.

Member Avatar for chuq00
0
298
Member Avatar for noga

It's called [url=http://www.google.com]Google[/url], folks. Learn it. Love it. Use it. Don't start 6+ threads in one day on the same topic.

Member Avatar for arctusus
0
688
Member Avatar for Kamex

You could probably swing Vista with that. I have a suspicion, though, that the Video card will be the bottleneck on the system, more than likely. If at all else, give it a shot. You'll probably be ok with that, though, since it is the current mid-range offering from ATI …

Member Avatar for UrbanKhoja
0
354
Member Avatar for Erreon

[QUOTE=OurNation]What about the monitor did you buy a mac monitor wich cost more than the mini itself witch I think is dumb.[/QUOTE] Have you seen the Apple monitors? They're positively wonderful! The reason why they're so expensive is because the color purity on them is bar-none, and they've got some …

Member Avatar for Junyah
0
354
Member Avatar for Bladtman242

[QUOTE=achristov;841553]VB is the bad stuff, this is for sure ;) If you find my answers satisfactory, please add to my reputation.[/QUOTE] Actually, not trying to start a flame war here, but the Visual Studio is great as an IDE, whether you're working in VB or C#. The only complaint I …

Member Avatar for Bladtman242
0
168
Member Avatar for tintincute

[QUOTE=dickersonka;841795] also you could use List instead of ArrayList [code] List<int> numbers = new List<int>(); [/code][/QUOTE] You don't really need the typed List for what's going on, it's just a nice thing to have in terms of type safety... :)

Member Avatar for tintincute
0
123
Member Avatar for serkan sendur

Could you maybe set a scan timeout for a shorter period of time, set that running on a thread, and have that thread check for some type of stop "signal" before scanning again? I think a Singleton pattern or something could work for this: instantiate a "ScanMonitor" object that has …

Member Avatar for Ramy Mahrous
0
171
Member Avatar for konczuras

A web service would DEFINITELY be the way to go. Then, all you would have to have in a configuration file or hard-coded is the address of the web service you're connecting to. That's a much safer alternative than connecting directly to a database. You can even encrypt the connection …

Member Avatar for konczuras
0
232
Member Avatar for sivak

what? Maybe this will help? [url]http://www.google.com/search?q=web+services+tutorial+C%23[/url] There are LOTS of tutorials out there... There's a lot of ways you can work with web services, depending on how you are wanting to do it...

Member Avatar for vizy
0
79
Member Avatar for tech12

Well, there's two types of validation... you'll need to first verify that the numerals are in the right order, ie, you can't have IC or something, but you could have XC, or IX, but not VX or IL, etc. That's one validation. The other validation that you would need is …

Member Avatar for woooee
0
177
Member Avatar for fia

What about just using the Class Designer in Visual Studio? It does a pretty good job of things, IMHO...

Member Avatar for alc6379
0
205
Member Avatar for Duki

I will interject, though: If Moonlight has been released for Linux, that's a subset of WPF. Perhaps they will put [i]some[/i] work into WPF...

Member Avatar for alc6379
0
498
Member Avatar for manfree

You need to run the contact launching code in a new thread, or consider using a background worker to start your FindContactEmailByName method. Here's a tutorial on the background worker: [url]http://dotnetperls.com/Content/BackgroundWorker-Introduction.aspx[/url] Basically, when you show a new form like that, the "owner" form that launches the contact.Display(true) call blocks until …

Member Avatar for alc6379
0
328
Member Avatar for beckman16

Check this cool bit of code out: [url]http://blogs.msdn.com/knom/archive/2008/12/31/ip-address-calculations-with-c-subnetmasks-networks.aspx[/url] This guy has a pretty slick solution!

Member Avatar for alc6379
0
177
Member Avatar for Acidburn

Normally updating labels in a form is not a thread-safe operation. Check this article out: [url]http://msdn.microsoft.com/en-us/library/ms171728(VS.80).aspx[/url] That may give you a good idea of what you have to do to update the label. You need to invoke another method to update the label's text. I'm surprised an exception is not …

Member Avatar for alc6379
0
159
Member Avatar for leegeorg07

Can you please elaborate a little bit more on what you're trying to do, exactly? We might be able to help if you clarify your question...

Member Avatar for leegeorg07
0
316
Member Avatar for andy121

this post might help: [url]http://www.webhostingtalk.com/showpost.php?p=5268640&postcount=2[/url] you should just be able to add it to the end as an additional argument, it would seem...

Member Avatar for alc6379
0
150
Member Avatar for Robins Antony

There's any number of ways you can do this-- if you're not actually keeping track of users logged into the site, you can really only track things through IIS, like page hits per hour, etc, with some type of analytics software. How are you keeping track of when users log …

Member Avatar for alc6379
0
74
Member Avatar for itcraze

Can you please show what work you may have already undertaken on this particular project? The code you're asking for is not really that "easy" to show, and it is heavily dependant upon the format of your spreadsheet, as well as the database schema you want to import into. I …

Member Avatar for alc6379
0
334
Member Avatar for rekha1

can you provide a structure for the nodes? do you want embedded nodes or something? There are a lot of different ways you could do this in LINQ to XML, especially if you return the XML elements as a query that has all of your XElements as an IEnumerable<XElement> set. …

Member Avatar for alc6379
0
44
Member Avatar for itsrahulk

It might not be ASCII-- are you certain of the codepage, or the encoding?

Member Avatar for alc6379
0
71
Member Avatar for Amara

It really depends on how you want to do it. If you just wanted to get a list of a single directory's directories, you could populate a CheckedListBox and then only process the items in the CheckedListBox that are checked. If you wanted to get more in-depth than that, you …

Member Avatar for alc6379
0
131
Member Avatar for gemini31

yeah, there definitely is a better way, from within Windows. Right click on My Computer, then click "Manage". Then, locate the "Disk Management" option on the left-hand frame. Click on that, and in the main frame of that Window, you'll see all of your drives right there. On your new …

Member Avatar for jlego
0
244
Member Avatar for konczuras

You may have to create a custom deployment package to do this-- the default MSI creator doesn't afford you many options, but the deployment package project does: [url]http://msdn.microsoft.com/en-us/library/ms228283.aspx[/url]

Member Avatar for konczuras
0
174
Member Avatar for Tank50

Yes. If you write an application using .NET 3.5 libraries and functions, then the end user will have to install .NET 3.5 framework, in addition to the code you're deploying. Fortunately, though, deployment packages make this easier, and can even facilitate downloading and installing the framework if the end user's …

Member Avatar for alc6379
0
90
Member Avatar for cyberlan

Can you provide a code example? It could be that you're changing the time at which the SQLTransaction runs. I think there's a timeout that's based on the local time that the transaction is submitted...

Member Avatar for alc6379
0
169
Member Avatar for tanu.rajgor

Or, you can just instantiate the List with the ISingleResult: [code] ISingleResult<myType> isr; List<myType> myList = new List<myType>(isr); [/code] Either way should work, as the List<T>() constructor is overloaded to take any collection that implements IEnumerable<T>.

Member Avatar for alc6379
0
268
Member Avatar for mastermosley

If you have a very large bunch of XML data, a string datatype isn't practical-- that string could potentially load hundreds of MB of data, risking a MemoryException being thrown if too much is loaded! A stream is useful in many situations. I wrote a program that reads XML directly …

Member Avatar for alc6379
0
3K
Member Avatar for krishnamraj

You'll probably want to wrap it in an MSI package or something... You can't really install FROM an ASP.Net page like you're asking...

Member Avatar for alc6379
0
53

The End.