Groups | Blog | Home


Archived Months
June 2003
July 2003
August 2003
September 2003
October 2003
November 2003
December 2003
January 2004
February 2004
March 2004
April 2004
May 2004
June 2004
July 2004
August 2004
September 2004
October 2004
November 2004
December 2004
January 2005
February 2005
March 2005
April 2005
May 2005
June 2005
July 2005
August 2005
September 2005
October 2005
November 2005
December 2005
January 2006
February 2006
March 2006
April 2006
May 2006
June 2006
July 2006
August 2006
September 2006
October 2006
November 2006
December 2006
January 2007
February 2007
March 2007
April 2007
May 2007
June 2007
July 2007
August 2007
September 2007
October 2007
November 2007
December 2007
January 2008
February 2008
March 2008
April 2008
all groups > dotnet general > december 2007 > threads for december 1 - 7, 2007

Filter by week: 1 2 3 4 5

Sync dataset once its been sent to the dataset
Posted by John Sheppard at 12/7/2007 2:32:09 PM
Hello there, How do people normally sync datasets between client and webservice? For example; I send a dataset to the webservices with updated rows on it, the webservice execute the sql to persist it to the database and updates the dataset so that haschanges=false and with the correct Id...more >>


Getting main window from launched process
Posted by siddharthkhare@hotmail.com at 12/7/2007 1:51:26 PM
Hi All, I am launching a IE using following code. ======================================================================= m_IeProcess = new Process(); m_IeProcess.StartInfo.WindowStyle = ProcessWindowStyle.Minimized; m_IeProcess = Process.Start("IExplore.exe","www.ABC.com"); ================...more >>

Issue with moving a common method to base class
Posted by Curious at 12/7/2007 12:09:32 PM
I have too similar methods in two classes: -----------------------DistributionFoo--------------------- class DistributionFoo : FooBase { private SortableBindingList<DistributionRowStatus> mSelected; private void DoSomething() { for (int i = 0; i < mSelec...more >>

lost My Pictures and My Documents folders
Posted by figgypudding at 12/7/2007 11:08:00 AM
I'm changing computers, so I copied documents and photos and then hit delete button. Now there is no empty My Pictures or My Documents folder. The next owner of my computer needs them. Any suggestions? Thanks....more >>

Accessing encrypted Site with Net.HttpWebRequest
Posted by dk9 at 12/7/2007 9:54:18 AM
I'm trying to login and comunicate with an encrypted site (SSL) using WebRequest class, without success. I've tried to POST the LogIn data but the the Response is always the LogIn page, can't enter. Dim postData As String postData = "username=MyUserName&password=mysecretpassword1234" D...more >>

Sound Device Problem
Posted by Mehmet at 12/7/2007 9:06:00 AM
I have bought HB compaq presario V6000. Voip programs are not working. Giving sound device problem. Sometimes sound is going but sound is never coming. There is no this problem in messenger sound coming and going. It is conexant device. If someone has same problem or to know to solve this prob...more >>

Windows service crash
Posted by ramendra.kotharkar@gmail.com at 12/7/2007 2:56:48 AM
Hello, I have a windows service application that is developed using .NEt VS2005 and it calls some unmanaged functions for doing some image processing tasks. It often crashes when run continuously for a period of 1 hour or so. There is information in event log some times (Fatal Engine Error or...more >>

Converting byte[] to .Net image
Posted by Oriane at 12/6/2007 2:59:35 PM
Hello there, I try to handle bitmap images stored in an Image column in Sql Server. The following code is ok when the image is of type Bitmap (*.bmp): private ImageSource ConvertByteArrayToImageSource(byte[] bdIconeArray) { ImageSource imgSource = null; MemoryStream strm...more >>



Dropping lines of code when modifying .aspx.vb with vs2003 ide.
Posted by Logger at 12/6/2007 1:54:03 PM
Help, I’m applying updates to a web application that used Web Form Designer Generated Code. I’m using Visual Studio 2003. For some reason lines keep dropping out of the code in the .aspx.vb code behind file. Here’s the 2 lines that keep dropping. I think since the 1st line drops w...more >>

Convert instance of derived class to base class
Posted by Jerad Rose at 12/6/2007 9:22:39 AM
Note: I have posted this on microsoft.public.dotnet.xml with no response after three days, so I have closed that thread and am trying here. I have two classes: public class BaseClass { ... } public class DerivedClass : BaseClass { ... } Suppose I have the following code: DerivedClass ...more >>

PrinterSettings
Posted by Brett R. Wesoloski at 12/6/2007 8:21:23 AM
I am having some problems with the PrinterSettings. I am trying to figure out why I can't get duplex printing to work. In doing so I have a problem where when I set the PrinterSettings.PrinterName equal to the printer I get "Function evaluation disabled because a previous function evaluati...more >>

Converting COM Windows Service to .NET
Posted by Chris Trueman at 12/5/2007 10:00:01 PM
I have a Windows service that exposes a number of objects through COM. The functionality is consumed by ASP pages and some regular desktop clients. Looking at the .NET equivalent I assume that the best approach is to use ..NET remoting to connect ASP.NET pages/regular desktop clients to .NET...more >>

Can I bind a control to a dataset.haschanges property?
Posted by John at 12/5/2007 9:03:30 PM
Hello, I was wondering if it was possibly to bind a control to a dataset.haschanges property. The reason I want to do this is so that a little warning shows up on the form saying that the record has not been saved. Thank you heaps for anyones thoughts John Sheppard ...more >>

XP SP1 Installation Error
Posted by Santa at 12/5/2007 6:48:00 PM
I was installing SP1(Service Pack 1) on Win XP Pro and it came up saying "C:\program files\Internet Explorer\iexplorer is open or in use by another program. Please close this program and try again" when it was "taking inventory". It then gave me a choice of what to do. I could either click r...more >>

XAML
Posted by west.rohan@gmail.com at 12/5/2007 2:32:31 PM
Hi, i have just installed VS2008 and was working on a simple WPF application. I created the following XAML, it produced a simple rectangle with a reflection at the bottom. When i run the app, it looks totally different from when it was in the designer? Why? <Window x:Class="Reflection.Wind...more >>

Quick Launch Snafu :(
Posted by CJ at 12/5/2007 1:51:03 PM
I have a lot of icons on Quick Launch, and therefore have it doubled in height ... I just added another icon and the double height stayed but all of the icons lined up in a single row and went to the left of the slider bar thingie ... Any recommendations on how to fix ...??? Thanks much ...more >>

Console application, command line parameter issue
Posted by Ramon Gene at 12/5/2007 1:17:04 PM
Hello: I am building a console application and I am having an issue with the command line arguments. A couple of my arguments are paths and they are usually enclosed in double quotes. If one of the paths ends up in "\", it causes the closing double quote to be ignored and the argument ge...more >>

DataGridViewCheckBox
Posted by Ratnakar Pedagani at 12/5/2007 10:53:47 AM
Hi, I have a datagridview in which i have a DataGridViewCheckBoxColumn. I want to know which event should i use so that whenever i check the checkbox, it should immediately notify me saying that this particular row, this checkbox has been checked. I tried cellvalueChanged event, but it fires ...more >>

Adding new WDS Scope Rules
Posted by Tim Haughton at 12/5/2007 7:43:53 AM
Firstly, if there's a better newsgroup to ask this on, feel free to redirect me. I have these requirements of WDS for a project: 1) I need to be able to add a new location to the user scope rules for WDS so that it indexes an application specific folder. This folder, at the moment, conta...more >>

VB.Net Checkbox values
Posted by LionsDome at 12/5/2007 7:00:35 AM
Hello, I have a vb.net page which a bunch of checkboxes. A user can select a checkbox(s) and hit the submit button to store those values in a SQL Server table. This works fine with no problem the first time the user submits. However when user submits a second time while changing some of the s...more >>

WPF Project created in Visual Studio 2008 Team Suite Cannot open in Microsoft Expression Blend
Posted by Mohamed Mansour at 12/5/2007 1:29:27 AM
Hello, Last week I downloaded Microsoft Visual Studio 2008 Team Suite edition from MSDN Subscriptions, and I could create working WPF Applications. Today, I am fooling around with WPF again "boring night :p" and I wanted to try out Microsoft Expression Blend. I said open Project, selected ...more >>

Share-to-Web Upload Folder
Posted by chequer at 12/4/2007 10:25:00 PM
Windows XP Pro SP2 How can I remove the Share-to-Web Upload Folder Icon from the desktop? What are the consequences of doing this? Can I put it somewhere else other than the Desktop? Is it necessary to have it? -- chequer When the game is over, the King and the pawn share the same box....more >>

dotnet\java integration - commerial apps?
Posted by Jeff Jarrell at 12/4/2007 9:12:59 PM
We are a software vendor and have been working on an integrated dotnet\java solution to replace the legacy product offering. The new architecture is a dotNet client with a Java backend. the java was selected to satisfy our primary enterprise level client (who is anti-msft) and to attract new ...more >>

Lost Hibernate / Standby buttons on Shutdown Window
Posted by Scientistsmurf at 12/4/2007 5:10:01 PM
I have a Dell Inspiron 6400 running Windows XP Pro SP2. It is updated regularly. The hibernate and standby buttons on the shutdown window have greyed out. I've updated the video driver. This didn't work. How do I find out what has caused the problem? How do I fix it?...more >>

Where are the downloads?
Posted by DaffyRoma at 12/4/2007 1:02:00 PM
Through auto-updates I downloaded and tried to install Service Pack 3. It prompted me to install the original CD, which I didn't have with me at the time. It then gave me an error message and uninstalled what it had done so far. Now I'm trying to re-install SP3, but I don't know how to go a...more >>

Progress bar update from worker thread
Posted by dgleeson3@eircom.net at 12/4/2007 1:00:13 PM
Hello all Yes I know its been done before, but something silly is killing me on this. I have the standard progress bar and worker thread scenario with progress of the worker thread being fed back to the main UI and displayed on the progress bar. I have a delegate and am using BeginInvoke. ...more >>

Install Windows Service with Custom User Credentials
Posted by B.Ahlstedt at 12/4/2007 9:01:01 AM
Hi all, This is something that I have been toying with for about a week now. What I want to achieve is Install a Service with Customised parameters (using InstallUtil.exe) for User Name. Example (C#); [RunInstaller(true)] public class MyServiceInstaller : System.Configuration.Install.Inst...more >>

Tracking SMS packages
Posted by Paul at 12/4/2007 12:09:00 AM
Hi, Some pointers would be appreciated. How can I track, programmatically, from a .Net language, the status of a Microsoft SMS installation package send to a workstation/server? Thanks Paul...more >>

500 server eoor
Posted by Chetana at 12/3/2007 11:04:33 PM
hi ALL, I want to disscuss about following error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500 I have searched on this and done following things: 1.Adde...more >>

Assign logon username/password to a windows service
Posted by usman at 12/3/2007 6:28:36 PM
Hi I've a dotnet service that I need to assign a account with which it could run. Is there any way I can do it while installing the service with Installutil.exe?? Regards Usman ...more >>

Reporting services: Anchor.Bottom
Posted by Pieter at 12/3/2007 4:08:47 PM
Hi, I have a report (Reporting Services 2005) which may contain an undefined number of pages of records. At the end there are some totals and summary's that should be displayed. The problem is: These totals should come always at the bottom of the final page: some kind of Anchor.Bottom or...more >>

multiple identities in Windows Mail
Posted by Ann at 12/3/2007 4:03:01 PM
I have finally worked my way through message rules so that I have incoming mail going to separate "files" , one for my husband and one for me. Has anyone found a way to do this for "sent" messages. Since there is a "when message is FROM" option, I'd think you could set up a rule from here but...more >>

Framework 3.5 not working
Posted by Boris at 12/3/2007 3:59:01 PM
I am running Win 2003 Server with IIS 6.0. I have installed .Net Frameworks 1.1, 2.0 and 3.5. However, if I create a new ASP.Net Web App using Visual Studio 2008 and specify Framework 3.5 to be used, it does not work. Also, when i go to the properties of the site through IIS, under ASP.Net Tab...more >>

C/C++/VB/dotnet app on Vista: Crash that occurs only when offline?
Posted by Alex at 12/3/2007 3:11:56 PM
Hello everybody, I've been working for days on a "twilight zone" bug and I can't make any sense of it. This is in an application that was developped on XP and that was modified to handle Vista. Other than using the virtual store for some config information, it doesn't do anything fancy. The...more >>

Cannot remove RealPlayer 7 Basic from my computer
Posted by daunej at 12/3/2007 1:44:04 PM
Wen I use the Install/Uninstall feature on my computer to remove RealPlayer7Basic from the computer, I get an error message telling me that I do not have sufficient rights and should contact the system administrator. I am the only person using this computer and I installed the program myself. ...more >>

Netcom3 Registry Cleaner
Posted by Theresa Medford at 12/3/2007 1:25:03 PM
I downloaded Netcom3 registry cleaner. I later decided that I did not want to use the program, so I uninstalled it, but it pops up every time I turn on my computer. Is it hidden somewhere and how do I get rid of it??...more >>

Assembling Visual Studio generated listing files
Posted by TahoeKid at 12/3/2007 10:58:21 AM
I need to modify and assemble the assembler listing files generated from the VS 2005 IDE. A test generated listing file did not assmeble 'as is'. Has anyone tried this? It seems to me the listing file should assemble....more >>

Exchange Server Development...
Posted by Jason Richmeier at 12/3/2007 6:28:00 AM
I posted this question in another forum last week (one that I thought was more appropriate) but I didn't get any response so I figured I would try here. I would like to be able to monitor message deliveries (delivery successes and failures) programattically in a .NET application. I am not 10...more >>

saving photos to cd
Posted by Pedro at 12/2/2007 10:07:00 AM
when I put a blank cd 0r cd-rw in my drive and press save to cd..I keep getting message..no disc in drive ! I have tried various disk in case they have been damaged...but to no avail..any ideas please....more >>

Win XP SP2 will not install
Posted by Chris at 12/1/2007 7:43:02 PM
A friend gave me a seven year old Dell 4100 running XP Pro. It actually dual boots to Win 2000 Pro also. That won't install Win XP SP 2 because this copy of the OS "may not be valid". C'mon, this machine's been sitting in a garage for five years. I'm pretty sure it's a valid copy, as my frien...more >>

Immediate window
Posted by Programko at 12/1/2007 10:12:16 AM
Is there a way to stop executing command in Immediate window in Visual Studio.net?...more >>

can't install .net 1.1
Posted by shoppersplace at 12/1/2007 7:47:20 AM
I tried to install it, but it only installed the documentation. How do I install this thing?? thanks...more >>


DevelopmentNow Blog