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

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

Bravo_00

Member List

Thomas.Goddard
pmarreddy
Yiftach
atypoli
John_Wesley
martinabc
xochi
SylvirCoder
ChrisMcCabe
Curt Broyles
narasiman_jayachandran_2b5374
Mystagogue
gfheiche
radhaps
adibza
RWF
Jase19
mahima
kds294652
Shawn Wildermuth - MVP (C#)
Only Title

Bravo_00's Q&A profile

  • Visual Studio Compile Error on machine without VS.NET 2005 installed

    Hi! We're getting the following error when compiling a simple web project using msbuild on a machine that has the .NET 2.0 framework on it but not Visual Studio.NET 2005 (machine 1). Running the build on a machine that has both the .NET 2.0 Framework and Visual Studio.NET 2005 works just fine (machine 2). We're wondering what might be different between them other than VS.NET 2005 being installed on machine 2. Does anyone happen to know if the full version of Visual Studio.NET 2005 needed to use msbuild when compiling web projects Other projects (i.e. Class Libraries) compile just fine one both machines 1 and 2. Target Build: Target http://localhost/ : C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\aspnet_compiler.exe -v ...Show All

  • Visual Studio Tools for Office VSTO 2005 SE - Outlook 2003 Addin - Deployment problem

    I followed every point shown on: http://msdn2.microsoft.com/en-us/library/2ac08ee2(vs.80).aspx On my machine with WinXP prof, VS2005, addin works fine. But on the other machine (test machine, WinXp Prof, VSTOruntime, Office 2003 prof, O2003PIA, .NET FW.2.0) is didn't want to start. I used setup (created with VS05 O2003Addin solution) to install my plugin. I double checked every registry entry and they are fine to me. Could anybody tell me what's wrong Please give me any idea where to start. Hello, If you are using the default Setup project that is automatically created with your add-in solution, be aware that the setup package built from this project does not grant full trust to the add-in assembly. Y ...Show All

  • Visual Studio Team System Override default drop location for each solution in build

    Is it possible to copy the output binaries of a solution to a different location than just ..\[buildname]_[date].[iteration]\Release This makes it hard for me to package all of our software into a package since we have seperation for each of our applications. Is there a way that I could force the build project to copy the binary files to something like ..\[buildname]_[date].[iteration]\[solutionname] as this would make it much easier for me to get at each seperate product. If this can not be done, what else have people tried to get the same effect Thanks for your responses. Thanks Aaron, I am going to create a MSBuild Project for each application we have. ...Show All

  • SQL Server Database detach problem

    Hi all, I'm trying to detach a database and after archive it for deliver to other server. The detach wents fine and the database is removed from the database tree list in Management Studio. The problem is that the mdf file is being locked by some process (maybe SQL) and I can't imagine why. Here is the code for this operation: USE master ; GO ALTER DATABASE IMS_MCK_MIS SET AUTO_UPDATE_STATISTICS ON GO ALTER DATABASE IMS_MCK_MIS SET EMERGENCY GO DECLARE @strDate NVARCHAR ( 8 ) DECLARE @strCmd NVARCHAR ( 255 ) SELECT @strDate = CONVERT ( nvarchar ( 8 ), GETDATE (), 112 ) EXEC sp_detach_db 'IMS_MCK_MIS' SELECT @strCmd = 'wzzip -ex -m C:\Delivery\archive_ ...Show All

  • .NET Development AccessViolationException with C# Ping class

    I have a "watchdog" program, c# console application, coded with VS 2005. Program runs every 3 minutes. And one part of program checks pings to ~20 ip's. I'll give that function code: static private bool ping ( ref String ip) { bool success = false ; Ping pingSender = new Ping (); if (pingSender.Send(ip).Status.Equals( IPStatus .Success)) { success = true ; } else { success = false ; } return success; } Usually this works.. but sometimes (once a day on the average) it throws an exception and program crashes: Unhandled Exception: System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. I checke ...Show All

  • SQL Server SQL Server Management Studio - File Encoding

    I have been searching the forums for this issue and I haven't found anything on it so I apologize in advance if this issue has already been covered. My eyes are droopy and the coffee supply is low. Is there a way to always save a file as UTF-8 or ANSI in SQL Server Management Studio In analyzer you could save as ANSI, etc. - d Hi, Originally I thought that my settings were saved, but once I opened mgt. studio again, I had to select the encoding again. This is annoying. If there is a setting somewhere that we can change to keep the encoding we choose as the default it would really help. - d ...Show All

  • Windows Live Developer Forums Birds eye view in Germany, yay!

    finally Microsoft has some nice captain birdseye - view in germany, looks good, BUT: why do we have birds-eye in such a nonimportant city like rostock, but not for our capital, Berlin the list of non-important cities is long, and the list of important ones is damn short. im confused... Incase anyones wondering, heres the current list of cities that were released Birds eye views: http://virtualearth.spaces.live.com/PersonalSpace.aspx Also, the list for germany: Germany: Aalen Aschaaffenburg Augsburg Baden-Baden Bamberg Bayreuth Binz Brandenburg Chemnitz Cottbus Dessau Dresden Erfurt Erlangen Freiburg im Breisgau Gera Geoppingen Gorelitz Halle Hanau Heilbronn Ingolstadt Jena Karslruhe Kempten (Allgaeu) Konstanz Landshut Lei ...Show All

  • .NET Development Enterprise library ver 2.0 : extending data access application block

    hi, we had written Provider for XMLDB in data access application block.The configuration file we had used is as follows <configuration> <configSections> <section name="dataConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Data.Configuration.DatabaseSettings, Microsoft.Practices.EnterpriseLibrary.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null" /> <section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Practices.EnterpriseLibrary.Logging, Version=2.0.0.0, Culture=neutral, PublicKeyToken=null" /> </configSections> <dataConfiguration defaultDatabase="Connect ...Show All

  • Visual Basic getchildrows help

    I need to open a new excel sheet for each row in "Customers" that has childrows in "Invoices" then get invoiceschildrows from "InvoiceDetails" and export the invoicedetails information to excel. I'm very unsure of the syntax of using getchildrows. examples would be very helpful. Thanks! This is what I have so far Dim XL As Microsoft.Office.Interop.Excel.Application Dim xlwb As Microsoft.Office.Interop.Excel.Workbook Dim iddatatables As DataTable = Me .RcsDataSet.Customers For Each row As DataRow In Me .RcsDataSet.Customers Me .InvoicesTableAdapter.Fill(RcsDataSet.Invoices) For Each crow As DataRow In Me .RcsDataSet. ...Show All

  • Visual Basic Locate mouse position of hovered tabpage

    I'm creating a tabbed browser app where each page is dynamically created and named. I need to use the mousehover event but don't know how to determine which tabpage is in the hover state. VB.NET documentation mentions the MouseEventArgs class but when I try to add a new mousehover delegate, VB will not accept this signiture in place of the required System.EventArgs. Bottom line: the app contains a main form with a 'New Tab' checkbox. If checked and address bar URL is navigated, a new tabpage is dynamically added to the tabcontrol and named "wbTabPage" & << the new tab's index >>. I want to raise the mousehover event whenever this new dynamically created tabpage is hovered. I searched for three days for infor ...Show All

  • Visual C++ Com Problem

    I have created one com dll with the help of c#(dot net). This Dll trakes three files in the argument; after processing the first two arguments it writes the output in third argument. This Dll is a windowsApllication Dll. I have to use the corresponding tlb file in the VC++(6.0) code. For that I made one MFC apllication, which consists of three browse buttons to select file names to provide the arguments and one button to call that com object. First I hardcoded all the arguments. Now the funny thing happens: 1) If i directly click the button the application works fine. 2) If I click any browse button and select the files and then i cleck the button, the application crashes.( though i am not using the values from brows ...Show All

  • Visual Studio Team System Graphically Displaying Build Results

    Hi, Just wondering if anyone knows of a way of displaying build results graphically e.g. a pie chart that shows the number of failed and successfull builds. I don't think TFS has this functionality built into it but something someone else has created would be useful. Cheers, smudie I don't know of anything either, but I would guess you could use the TFS report functionality to do this.  If you want to explore the use of TFS reporting, please post a question in the reporting forum. Buck ...Show All

  • SQL Server Hide some columns in Matrix but not in subtotal

    Hi all, I would like a matrix that look like this: 2006/01 2006/02 2006/03 Total % % % % Amount Amount Class. BU1 98,82% 78,53% 88,12% 88,49% € 217.763.099,50 € 207.328.766,75 BU2 64,98% 32,53% 92,19% 63,23% 5.093.781.522,65 € € 287.731.766,75 BU3 74,71% 45,78% 78,69% 66,39% € 847.871.349,50 € 819.123.124,75 I want detailed subtotals but I don't want the "Amount" and "Amount Class." values in the details of my Matrix. I've not found other w ...Show All

  • Windows Forms Windows Form Navigation Problem...

    Hi!!! I'm using C# to do my application. For example I have 2 Forms, created with buttons. When I run the application, and click the next button, it was supposed to lead me to the other form. I managed to achieve that by basically hiding the first form and showing the next. Example: Mainpage mp = new Mainpage(); this.hide(); mp.show(); However, when I click the next button I see the forms changing from my taskbar. I tried changing the for resolution of the form to 1024, 768 to have it become a full screen but still when it loads the other form, I am still able to see my desktop wallpaper. How do I link the forms in such a way it doesn't show me my wallpaper. H ...Show All

  • Windows Forms Prevent datagridview showing glyphs when working with rows

    Hi @all! I'm currently working with the .NET 2.0 datagridview. I've overwritten the datagridviewrowheader class to display different icons in the rowheader. That's fine so far. But the grid still displays these glyphs in the background of the rowheader cell. With the property showeditinglyph it's only possible to disable the editing icon, but I don't want the datagrid to show any icons or glyphs. How can I disable this functionality in the datagrid   \Helmut   Generate a class that derives from DataGridViewRowHeaderCell. class DataGridViewNLSHeaderCell : DataGridViewRowHeaderCell{ private System.Drawing.Icon ic; public enum CurrentRowState { Normal, Modified, D ...Show All

©2008 Software Development Network