Software Development Network Logo
  • Visual C#
  • Windows Forms
  • Windows Live
  • Game Technologies
  • Visual Basic
  • .NET Development
  • Visual FoxPro
  • SQL Server
  • Visual J#
  • Visual Studio
  • Microsoft ISV
  • Visual C++
  • Windows Vista
  • Smart Device
  • Architecture

Software Development Network >> mhd617's Q&A profile

mhd617

Member List

Joe_D
Sumabobby
Cole4473
igp04gueniat
MattNorby
AeQuitaZ
PradeepC
derekjohn37
biglc1
Martin Drinovsky
maddin1234
Sergio Olveira
Revlisoft
Anonymous_RobTrue
Umberto
Krunchu
Richard Young
John C MCSD
Tariq Sharif
Stefan_MS
Only Title

mhd617's Q&A profile

  • Windows Forms Client changes to app.config after click-once publish and delivery.

    I have a VS 2005 Win Forms Application that is being developed for a client. Once system tested, I want to hand over the application to the client with some instructions for installation and setup in their environment, i.e. they need to specify connection strings, web service url's, timeout periods, etc in the app.config. There are many settings here that they could potentially change (10-15). However, when I use click-once to publish the application, how does my client change the settings within the app.config It seems to me that once published, these values are locked.. even if I change them in the app.config before installation ...Show All

  • Visual Basic Real Time Data Monitoring

    Hi All: I am writing a project to analyze data from a device in real time. The idea is to pick up the signal from a sensor through serial port in 20Hz and to do some calculation on the data received, and plot out the result on the form. I use a background worker to read data from the serial port and do the calculation within a Do Loop. There is no problem on this. My problem is that when I try to use GDI+ to plot the results on the form, data are not refreshed instantly on the form. I use a Collection of Single to store the data for plotting. Questions are: 1. Can Vb2005 do the job Or VC2005 is better 2. Is there a control ...Show All

  • SQL Server I need a second opinion on SQL 2005 syntax

    I am not that experienced in SQL 2005 and I'm trying to debug a stored proc (written by a far more experienced programmer which is why I'm appending here.) At the top of the proc is the statement ' DECLARE @BillActualRoom bit'. If I understand correctly this is a local variable. Later in the code we have the statement 'SELECT @BillActualRoom = 0 FROM BillingOptions WHERE CenterID = @CenterID' where @CenterID is an input parameter. The table BillingOptions does have a field called 'BillActualRoom' and it is a bit. My question is this: Does this SQL statement make any sense at all (My gut reaction is no but I ...Show All

  • Visual C++ Does microsoft sell directly UI activex products?

    Hi everyone, Anybody knows if Microsoft sells directly the graphical User Interface (3D colorful buttons, frams, etc) as activex or dll I searched on Microsoft website, but rendered a result that many 3rd parties have this as products. However, I am wondering whether Microsoft sells DIRECTLY this. Thanks! I believe this is a duplicate of http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=158558&SiteID=1 Thanks,   Ayman Shoukry   VC++ Team ...Show All

  • Windows Forms ClickOnce On-Line Appliation not Getting Latest Fixes When Publishing

    I have a ClickOnce application that I have successfully deployed. Now I have made some bug fixes to that original application and have published to the same directory as previously. But when someone accesses the application through the "Run" button they are running a version without the bug fixes. When I debug the application locally the fixes are present and working. Why wouldn't publishing the application get the latest fixes to the clients I have fixed the above issue by making sure that checkbox is checked. I am now able to successfully publish but now I am getting an error when the application is starti ...Show All

  • Windows Forms Turning a certain point on form a specified color in MSVC++.NET

    Hi, I need to know how I can set a certain point of my form a color of my choosing. (Color found in System::Drawing::Brushes) Thanks, The Digital Pioneer OK, I'm a VB.NET Programmer too. Unfortunately, that isn't working. By sprinkling messageboxes through it, I found out that the e.Graphics.FillRectangle(Brushes.Red, x, y, rectSize.Width, rectSize.Height) command doesn't work. Thanks, The Digital Pioneer ...Show All

  • .NET Development Failed to access IIS metabase, VS2005 RC

    I am developing a webservice in Visual Studio RC. I have just got a new pc and my problem is that I am not able to access this webservice. I have created a virtual directory in IIS, but if I try to browse there, I get a "Failed to acces IIS metabase" error message. Does anybody know how I can resolve this problem 1) Is IIS installed on the machine (From a command prompt NET START - Is IIS Admin service present in the list) 2) Is ASP.NET installed  - Run aspnet_iisreg.exe /lv from the VS command line prompt 3) For 2) is the default install for ASP.NET v2.0 as opposed to v1.1 ( the running version is marked with ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. rendering to texture is clipped to clientsize inwindowed mode?

    I posted this already in the W32 Graphics discussion section, but since I am pretty hard pressed with the problem I am also posting it here: I wrote a small application using managed DX9 in an application running in windowed mode. The clientsize of the window is 800x600. In this application text (and sprites) are rendered to a 1024x512 pixel texture. The viewport settings seem to be correct after the SetRenderTarget call (1024x512), and I activated no clipping whatsoever, but the text and sprites drawn to the texture still are clipped to the size of the client area of the windows form and I cannot find any refer ...Show All

  • Visual Studio Cross Project builds

    We have a solution that contains both c# and c++/cli projects.  When building using msbuild, we are directed to use devenv /build to execute a build from command line.  In the Feb CTP Professional version, I got this to work fine.  I just updated to the latest Visual Studio 2005 Standard Beta 2 (April) and with the same commands I get errors like: "The application for project 'c:\...\code\Parser.csproj' is not installed. Make sure the application for the project type (.csproj) is installed." on every c# project but the c++/cli projects build ok.  Could this be a Standard vs. Pro issue   We are using ClearCase an ...Show All

  • Visual Studio 2008 (Pre-release) Subscribe to DependencyProperty changes in code?

    I have a class called Playlist . Playlist exposes an ObservableCollection called Entries and also exposes a DependencyProperty called CurrentEntry . Now I would like to build a control called PlaylistView that will display the entries in the Playlist and highlight the CurrentEntry . My idea was to build a control based on ItemsControl and have a public property of type Playlist . When the Playlist property is set, the ItemsControl s' ItemsSource would be bound to the Playlist . Entries collection. But whenever the value of Playlist . CurrentEntry changes I need to update update the items styles accordingly. What's the best way to do t ...Show All

  • Visual Basic Displaying at Pixel Level in VB 2005

    I want to generate a graphic in a picture box control where the color of each pixel is determined by particular values calculated for each pixel. These values are manipulated in such a way that I come up with three values (each in the range 0-155) and I want to use these for the RGB values of the color of the associated pixel. My question is: In VB 2005 how do I set a particular pixel to a color with a given set of RGB values In VB 6 I used to use the PSET function but it is not available in VB 2005. Thanks. ...Show All

  • SQL Server Problem in Installing Microsoft SQL Server Management Studio Express - Community Technology Preview (CTP) November 2005

    Hi, I installed SQL Server Express Edition and trying to install Management Studio Express but not successful.   Following Error is thrown while installing MSSMSE. "The Installation Package could not be opened. Contact the application vendor to verify that this is a valid Windows Installer Package" I downloaded the software from http://www.microsoft.com/downloads/details.aspx FamilyId=82AFBD59-57A4-455E-A2D6-1D4C98D40F6E&displaylang=en Please help me. I am struck.   Shyam This sounds like a problem with the download. Try turning off anti-virus protection when you do the download. Also, make sure yo ...Show All

  • Windows Forms AutoGenerateColumns

    Hello, I have a problem of  response time with my datagridview (with predefined columns) when  I set the AutoGenerateColumn to false . DataGridView1.AutoGenerateColumns = False DataGridView1.DataSource = myDataSource //(from oracle) DataGridView1.DataMember = "My_table"   //(+- 130 rows) If I delete the first line, the response time is good, but my predefined columns are disapered. Thanks in advance. Salvatore. That is interesting. I've seen just the opposite. AutoGenerateColumns = true  clears out any currently defined databound columns anytime the datasource changes. It ...Show All

  • SQL Server Backup of 9Gb Database

    Hello all, i was wandering if there are any documentation/suggestions on how to implement a backup that will not interrupt usage of database Basically we have a application that need to be available 24/7. We have 2 servers, one is a primary, second using the log shipping function in case primary server dies. Howerver once a day when we perform full database backup system become non-responsive for 30-45 minutes. Is there any ways around it what are the best practice We are thinking of creating the cluster of 2-3 SQL servers, however from what i have read, there is still going to be the same issue with backup on clus ...Show All

  • Visual Studio How to dynamically assign ReportViewer to .rdlc

    The steps of create a local report are follow: 1 Inserted a DataSet into my WebApplication and used it as the DataSource of a Report file (Report.rdlc). 2. Add a new web page, and put a ReportViewer on it. 3. Set the Report.rdlc to the ReportPath of the ReportViewr by click the smart tag of the ReportViewer, and it will automatically add a OjbetDataSource into the WebPage. But I wnat that the ReportViewer does not need bunddle to a special .rdlc file in design time.  How can I accomplish the Step3  with codes One way you can change reports at runtime is using the reset function and ReportPat ...Show All

©2008 Software Development Network