Software Development Network Logo
  • Visual C++
  • Smart Devicet
  • Game Technologies
  • Microsoft ISV
  • .NET Development
  • Windows Forms
  • Audio and Video
  • Windows Vista
  • VS Team System
  • SQL Server
  • SharePoint Products
  • IE Development
  • Visual Studio
  • Visual FoxPro
  • Visual C#

Software Development Network >> Matt Gutberlet's Q&A profile

Matt Gutberlet

Member List

BiffJC
Ajamilan
jxl98c
SteinerA
Maaloul
WarrenT
franziss
MrCRM
Kanti K
jaymc
Mateusz Rajca
Sukh1983
mbosfo
Tonton888
Kevinmac
mpavlik
kedst1
Kardi
ChrisMouton
M j P
Only Title

Matt Gutberlet's Q&A profile

  • Visual Studio Automatic removal of unused variables?

    I have migrated my project from VS2003 to VS2005 and now getting lot of warnings such as unused variables.So is there any tool or utility which can remove such warnings --Deepak Hi Deepak, Gabriel is right - using ReSharper Quick Fixes functionality you can delete unused variables one by one, which is not very convenient if you have plenty of them. However, you can easily write a plug-in for ReSharper which does removal of unused variables automatically. ...Show All

  • Software Development for Windows Vista Beta 2 Designer Problems for Older workflow

    For earlier examples of workflow from the "SAMS" book I get this error in the designer: Error Loading Workflow The XAML file does not contain a root activity What do I need to change to get this working Many thanks Rob Pearmain ...Show All

  • Microsoft ISV Community Center Forums Making changes to Access database table - via Recordsets or Update Queries?

    Hi, firstly, sorry if this is the wrong part of the forum for this question (things seem to have changed recently). My question is this: I am writing some VBA code to automate a job that I perform regularly, in MS Access. I need to carry out updates to data in an Access table, in a repetitive manner. The data needs to be put in a format that is mailable, I need to create fields like Age (from dob), Age Bandings, Gender (from title) etc. Before I knew any VBA, this was all done with Access Update queries and some lookup tables, but I never bothered writing a macro to speed this up. Now that I understand recordsets a little better, I've written some code to automate much of what I need to do, but to be honest, I dont know whether t ...Show All

  • SQL Server SSAS 2005. Error at dimensions ProcessUpdate.

    Hi AS Gurus, I have an problem with processing SSAS database in production environment. During update dimensions processing I get the following. File system error: A FileStore error from WriteFile occurred. Physical file: \\ \D:\DB2005\Microsoft SQL Server\MSSQL.2\OLAP\Data\*********.0.db\AusgangLieferschein.0.dim\12.AusgangLieferschein.bsstore. Logical file: . . Errors in the OLAP storage engine: An error occurred while the 'AusgangLieferschein' attribute of the 'AusgangLieferschein' dimension from the '*********' database was being processed. real name of the database is masked The dimension AusgangLieferschein (error source) is quite large dimension and has about 10 Mio. elements in the key attribute hierarc ...Show All

  • Visual Studio 2008 (Pre-release) Extracting the xsd and xml contents from infopath(xsn) file

    Hi How do i extract the schema and xml contents from the xsn file My scenerio is something like this. I need to send the xsn file to the client and the client will read the required information like schemas xml contents from this xsn file. You may want to post your question in a more appropriate forum. For example, the Visual Studio Tools for Office forum might be able to point you in the right direction. This forum is meant for questions and discussions about the Visual Studio designer for the Windows Presentation Foundation. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Extra strip line

    Have noticed a little thing. I am drawing my background image in fullscreen mode placing it at 0,0, with backbuffer size. If at the same draw time graphics.GraphicsDevice.Clear (Color) method is using, clscolor stripline in one pixel width is seen at the top and utmost left lines. It is not sufficient in this case though, you can set Color.Black or not use this method at all. Strange thing is going on. Failed to represent this situation today - was curious to put on the presentation surface 3d object and see the result at extra lines. Unfortunately I have not saved the exactly state of my project and list of all programs running at this point yesterday. So I'll have an attempt once more today. But I have ch ...Show All

  • Windows Forms datagrid troubles with stored procedure (vs 2003)

    I have the following code: Dim daGrid1 As New SqlDataAdapter(Me.SqlCommand1) (a stored proc) Dim dsGrid1 As New DataSet dsGrid1.Clear() daGrid1.Fill(dsGrid1, "top") DataGrid1.DataSource = dsGrid1.Tables("top").DefaultView I set the command to a stored proce and fill a dataset, then set the datagrid1 to the dataset table. I can then see the data grid on the form filled out. I need to change the column headings, hide some columns, then click on a row, and get the hidden field and pass it on to another form. I thought I would need a table style for that. But when I try to add one, I get: "The data grid table styles collection already contains a table style with the same mapping name." ...Show All

  • Windows Forms ListView DragDrop Index

    Hi, Im trying to insert items draged from a ListBox to a ListView. The new Item must be inserted below the Item that's under the cursor. So I need to know the Index of the Item that's under the cursor. Private Sub lvCustomerSurvey_DragDrop( ByVal sender As System.Object, ByVal e As System.Windows.Forms.DragEventArgs) Handles lvCustomerSurvey.DragDrop With lvCustomerSurvey 'I have tried Dim i As Integer = .GetItemAt(MousePosition.X, MousePosition.Y).Index Dim i As Integer = .GetItemAt(e.X, e.Y).Index Also the InsertionMark.Index http://msdn2.microsoft.com/ru-ru/library/system.windows.forms.listview.insertionmark.aspx , but always shows -1 Dim Con As Concepto = CType (e.Data.GetData( ...Show All

  • Visual Studio Team System FxCopCmd /successfile

    Do the option /successfile on FxCopCmd work According to help print out on FxCopCmd it should generate a file if the are no problems in the analyses: /successfile [Short form: /sf] Create .lastcodeanalysissucceeded file in output report directory if no build-breaking messages occur during analysis I’m running FxCopCmd with options: /successfile /project:MyProject.FxCop /out:BuildLogs I would expect that a “.lastcodeanalysissucceeded” file was created in the BuildLogs folder when FxCop can not find any problems – why do I not get this file -- Erik Pedersen PS: using version 1.35 FxCopCmd is executed from a build script together with NUnit, the compiler and other stuff. They are all part of a Continuous In ...Show All

  • Visual C# handling relationships in oledb

    Hey, Lets say I have a simple database like: [Table1] ID (primary key) Name Phone [Table2] ID (primary key) Date (primary key) Text and I set a relationship in Access between the ID fields of both tables in a one-to-many relation from Table1 to Table2. How can I take advantage of this relation in my c# code For example, given only one ID, I can get access to both Table1 and Table2 fields Thanks unfortunately this is the way of doing so I believe. It's pretty simple to create a relationship in a dataset. Take a look at the datarelation class: http://msdn2.microsoft.com/en-us/library/system.data.datarelation.aspx Does this sound like what you are after to "take advantage" of the relatio ...Show All

  • Visual C# Writing the contents of a Memory Location (intPtr) to a text file

    How can i write the contents of a Memory location to which i have a pointer(intptr) to a text file The memory location contains the data in a structure...i just want to see the contents char by char..Could some one plz tell me how i can achieve this using C# Thanks Jith I am just adding this function so that others can use it if needed... public static void WriteToFile( IntPtr iPtr, int size, string sFileName) { if (sFileName.Trim().Length == 0) sFileName = @"C:\DefaultLoc.txt" ; Byte [] Contents = new Byte [size]; Marshal .Copy(iPtr, Contents, 0, size); System.IO. FileStream fs = new System.IO. FileSt ...Show All

  • SQL Server For MSFT, What are the new log messages in SP2

    [Reposted because no-one answered me before: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1097115&SiteID=1 ] Hi, Quick one for anyone from Microsoft. Does there exist anywhere a definative list of all the new log messages that are being introduced in SP2 Thanks Jamie ...Show All

  • Visual Basic changing background

    how do i change the desktop background of the current user on the press of a button Yeah, it wasn't kosher. Try this instead: Imports System.Runtime.InteropServices Module Module1 Private Declare Auto Function SystemParametersInfo Lib "user32.dll" (ByVal uAction As Integer, ByVal uParam As Integer, ByVal szImagePath As String, ByVal fuWinIni As Integer) As Boolean Private Const SPI_SETDESKWALLPAPER As Integer = &H14 Private Const SPIF_UPDATEINIFILE As Integer = &H1 Private Const SPIF_SENDCHANGE As Integer = &H2 Public Function ChangeWallpaper(ByVal path As String) As Boolean Return SystemParametersInfo(SPI_SETDESKWALLPAPER, 0, path, SPIF_UPDATEINIFILE Or SPIF_SENDCHANGE) End ...Show All

  • SQL Server Migrating a db from SSE 2005 December CTP to SSE 2005 Release Version

    I have a developer who built an application using the SSE 2005 December CTP and I would like to bring the db's into the official SSE 2005 released version. I have attempted the following: 1. Create the db's in the released version, detach and re-attach the CTP db's. I got an error telling me they were incompatible. 2. Installed CTP version on one server, backed up the db's and then attempted to restore the db's on another server running the official released version of SSE 2005. Got an error attempting that too. 3. Installed the Management Studio for SS 2005 Developer edition thinking that I could connect to the two seperate instances of each server and like I could in EM 2000 run the transfer wizard to move the db's and data from ...Show All

  • Software Development for Windows Vista Visual Studio Express

    Today i installed the C# Visual Studio Express Edition on Vista RC1. The installation semmed to go properly, and when i started it, everthing was working. The problem is, when i try to make a new preject, there are no templates available. Has anybody else had this problem Hello DelotaOps101, I have never personally had this problem, but I have located this link that has a few steps to recover missing templates. http://geekswithblogs.net/ehammersley/archive/2005/11/08/59451.aspx It appears its more of a Visual Studio issue than a Vista issue. Thanks, Louis Shanks AppCompat ...Show All

©2008 Software Development Network