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

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

hunb

Member List

newyuppie
samj01
Antony1
Adagio59675
Wayne Pfeffer
Auris
DamsDev2007
Sushisource
Thomas Petersen
Blackwood
Ravishesh
CFIG
Richc12345
Karrar
Janet666
C#Geek
aidimorini
Chiisana
user__2006
MikeHNatti
Only Title

hunb's Q&A profile

  • Visual Studio Where is the resource editor file

    Hi, VS crashed the other night and after I rebooted my project setting.settings, resource.resx and project properties are not showing and more. The first 2 are just showing as text. I need to set the default editor to the file types but I don't know the default VS files. Anyone know the file paths so I can reset them. Thanks ...Show All

  • Visual C++ Mike Danes and Einaros_thank you

    am happy to be part of this family. I yet have one more problem. When I tried compiling my code without ".h" and it did but with one other problem. My code ended with say :cout<<"Hello World"; return 0; but the compiler tells me an error message as: 'cout': undeclared identifier. Pls help me, am new in the programming business. Once again, thank you Mike Danes and Einaros The reason for the error is simply that the compiler cannot find a definition for the cout object. To use this, and other similar constructs, you need to include the proper header. In case of cout , which is part of the standard library, you will also have t ...Show All

  • SQL Server Help with cube measures

    I'm relatively new to AS but have managed to get a data mart, dimensions and cubes up and running in AS 2005 (SP1). I'm having difficulty trying to do something seemingly easy with respect to measures. One of my dimensions is Accounts. I have about 7 additional dimensions including Time. I have 5 measures. One of these measures is heavily used most all of the time. I need to filter this measure by the Account dimension to include only measures >= <defined_number>. The other measures should reflect this change also, but I also need to analyze other dimensions with or without the Accounts dimension in the crosstab. I need this to be put in the aggregations, not a temporary dynamic calculation. Aside from doing this at the database l ...Show All

  • .NET Development Memory not freed in MSHTML

    I have a large .net control that I am running in MSHTML. The control simply loads up a number of images, however this problem has been replicated with a number of other .net controls. When the control is unloaded by calling up another page none of the memory is freed. Using perfmon I have a flat line for both virtual and private bytes that is never freed until the application is shut down. I could understand that some of the .net framework is kept open after exciting the control to increase the speed of the next callup, however the memory does not seem to drop at all. I would have thought that the GC would have cleaned up some of the memory Has anyone else seen this problem. Is it something I am not doing in my code or is it normal mshtm ...Show All

  • Visual Studio 2008 (Pre-release) InkCanvas networked "whiteboard" session?

    Does anyone know how to "share" an ink canvas and all its content (strokes,etc.) with multiple users via a network so that everyone can view and interact with it In other words, similar to a whiteboard session you can have on Windows... Here is some code to demonstrate how to serialize/deserialize the ink in the StrokesChanged event. For the sake of simplicity I have placed both InkCanvas controls in the same app and ommited any networking code (if they are in the same app, databinding of course would be a much simpler way to accomplish this, but that's not the goal of the snippet) Thanks, Stefan Wick <UniformGrid Rows="2"> <InkCanvas Name="ic1" Background=&qu ...Show All

  • Visual C# Run without building out of date porject

    I have specifically chosen the option of "Prompt to build On Run, when projects are out of date". This used to work. Sometime ago, suddenlly IDE started to always run without prompting to build the out of date project. Does anyone have any clue Thanks. Thank you for verifying this. No, I don't think I am uisng SP1.  The version is VS2005 8.0.5.727.42. The interesting thing is that it used to work on this machine and it still works on another machine.  I will find out the version number on the other machine. ...Show All

  • Windows Search Technologies Feature Request: Searching for documents with more than one occurance of a word.

    I use WDS to search through a large number of documents from our vendor. Right now I am looking for documents which contain a reference to a confidential data flag. The problem I am running into is that each document has a legal disclaimer which says "... herein is confidential ...". Hence, when I search for confidential I find all those documents and then have to search through each individual doc to find out if it the other reference is in it. Just to clarify I can't search for a specific phrase because confidential is by itself in a seperate table cell. I would like to input something that brings up results where confidential appears more than X. Is this currently possible or planned for a future release ...Show All

  • Software Development for Windows Vista Error 0x8004D00E on SQL Server 2000 + Windows 2000 SP4

    We have an ASP.NET application running on Windows Server 2003 whose database backend lives in a different machine which runs SQL Server 2000 and Windows 2000 Server SP4. Whenever we try to use System.Transactions we get errors. We are almost sure that the problem is related to MSDTC refusing network connections. We tried to run the same thing using Windows Server 2003 in the backend server, and we were able to make it work by configuring MSDTC security using the COM+ console. However, we still need to support Windows 2000 for the backend. There is apparently no GUI for MSDTC security on Windows 2000, and the registry settings we have tried so far did not work. We think this should be a very common issue, but we have ...Show All

  • Visual Basic Contatenation

    I'm very new to VB programming and I am trying to take the first name and a last name from two textboxes and cont. them into a txtFullName Below is the code I have been trying to write and I keep getting a blue error line (Value of type 'String' cannot be converted to 'System.window.Forms.TextBox'. Could somebody help please Ted Public Class Form1 Private Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles txtFullName.TextChanged Dim FullName As String Dim FirstName As String Dim LastName As String txtFullName = LastName & ", " & FirstName TedCullen wrote: ...I get a Green E ...Show All

  • Visual Studio Express Editions How can i get the current url from Explorer 7? DDE Maybe ?

    Hi i try via defining WWW_GetWindoInfo as topic and item. doens't do the trick. any ideas Hello Re: How can i get the current url from Explorer 7 DDE Maybe This forum is for “Questions about Visual C++ Express Edition and getting started with C++.” For questions such as yours please use the newsgroups at http://msdn.microsoft.com/newsgroups . OTP Thanks Damien ...Show All

  • Visual C# Parametersized property!?

    I am *very* surprised at the fact that C# does not support parameterized property! The only thing I get is the so-called Indexer, but that does not provide the same functionality as parameterized property. For example, I can write the following code in VB: Public Class test Property Name(ByVal key As String) As String Get Return key End Get Set(ByVal value As String) End Set End Property Property Address(ByVal key As String) As String Get Return key End Get Set(ByVal value As String) End Set End Property End Class The two properties both have a String parameter and both return a String object. However, in C# I can only write only *ONE* indexer: public ...Show All

  • Visual Studio Team System what is the difference between the vb.net and C# while compiling the the property.

    Hello ,everyone! we can create a property by C# or vb.net C#: public string name{ get{ } set{ } } VB.net public Property name() as string Get End Get Set End Set end property Now I want to say my problem, I have custom a rule the fine a class's property. when I compile the above two property into dll. I use the custom rule to test the C#'s property, It work well. But when I use the custom rule to test the VB.net's property, It doesn't work, because the rule regard class's property to class's variable. why this happen please tell me that How I do to resolve the problem. Best regards. ...Show All

  • Windows Forms application manifest errors

    I'm getting the following error message at on one of my customer’s pc when installing an update to a deployment. All of my other customer’s are working fine. Has anyone experienced this issues or has seen this message "Reference in the deployment does not match the identity defined in the application manifest" Here's Microsoft’s explanation. http://msdn2.microsoft.com/en-us/ms229001.aspx I also saw somewhere in the past, that you needed to deleted the local internet cache on the client’s pc which was done. I've also uninstalled the click once app using add/remove programs. So I guess I'm not sure what to do. Here's the actual error: Reference in the deployment does not match the identity defined in the application ...Show All

  • Visual Basic Catching and recovering from database exceptions

    Is this a reasonable scheme for handling datbase exceptions when the program must keep running and must perform the update If not whats the recommended method Dim Done AS Boolean While Not Done Try updatedata Done=True Catch ex AS OdbcException logwriter(ex.ToString) Thread.Sleep(250) End Try Thanks for the detailed reply. The problem domain involves a large database ~2million records of which 1-20 will be operated on at any moment of time. The records being operated on are random and unrelated. Records enter and leave processing about every 0.5 to 3 secs. Different processes on 4 separate pcs need to access and update the data. Downstream processes cannot contin ...Show All

  • Visual Studio Express Editions from database to excel

    Hi. I have 3 colums in my database: Machine#: Regularhours: Overtimehours: 444444 5 6 555555 5 6 444444 4 0 I want to display (maybe msgbox or write to Excel file) only not repeating Machine# with overall Regularhours and Overtimehours. Secon question: how can I update my database Thank You need to become familiar with queries.... For your first issue look into selecting the distinct ID and the using the SUM function to get your totals.... For the second issue...Use an Update/Insert/Delete query ms-help://MS.VSCC.v80/MS.MSDN.v80/MS.VisualStudio.v80.en/dv_vdt01/html/bba74632-9b1d-4201- ...Show All

©2008 Software Development Network