Software Development Network Logo
  • Game Technologies
  • .NET Development
  • Visual J#
  • Visual FoxPro
  • Visual Studio
  • Windows Forms
  • Windows Vista
  • SQL Server
  • Smart Device
  • VS Express Editions
  • Windows Live
  • Architecture
  • Visual Basic
  • Visual C++
  • VS Team System

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

bvsoftware

Member List

Robert Burdick
Jeff Wilcox - MSFT
mef2
UberGeekxor
tony_qy
Bruce Prang
carabasha
Jimmy 123
KaBob
windark
Hiparco Puccetti
vasu20in
Alex Duncan
ykgreene
jim3891
ahuddy
Firehead
Sjoert
plusall
Christian Warren
Only Title

bvsoftware's Q&A profile

  • Visual C# Not Freeing Memory

    Hi, I don't know if anyone can help me. I am working with large png files, and finding the memory is not being freed after the object is disposed. Are there any know bugs on this issue Many thanks, Bruce Hi James, Thanks. I have had a look and can't seem to find GC.Collect() within the code. Running through the memory profiler, the garbage collector is collecting instantly after it previously freed some memory. To try and picture this, it starts off at the bottom left corner and increases rapidly diagonally up the screen freeing memory and then the app throws an out of memory exception, before the plugin dies. Its the first ...Show All

  • SQL Server data set problem in RTM Professional Edition - sql server 2005

    Hi, I create a report with the Report Wizard Designer and are able to pre-view and deploy it (it’s a simple table with an OLAP data source), but if I switch to the "Data" tab the related DataSet seems to be empty and then, if I go back to the "Pre-view" tab, I can't view the Report no more and have this kind of error: " [rsFieldReference] The Group expression for the table ‘table1’ refers to the field ‘Semestre’. Report item expressions can only refer to fields within the current data set scope or, if inside an aggregate, the specified data set scope. rsFieldReference] The Value expression for the textbox ‘Valore’ refers to t ...Show All

  • Visual Basic Playing sounds in asp.net

    Hi I want to know, how to paly a sound file in asp.net, I am doing project related to that pls help me The problem is, it's trivial to play a sound on the server, but to do so on the client requires downloading the file, and playing it. What do you want to do exactly Are you trying to embed an mp3 or midi in your page as a background, or something else entirely (i.e. something event driven ) ...Show All

  • Visual J# running server object method from client-side on the network

    hi , i have written two little applications one is working on the client-side. the other one is running on the server-side. i have created an interface on both sides with the same name "ServisArayuzu" and these interfaces has one method . public interface ServisArayuzu { public String getIsim(); } both classes on the server and on the client side implements this interface differently. try { server= new ServerSocket(1500); nextClient=server.accept(); OutputStream os=nextClient.getOutputStream(); ObjectOutputStream oos= new ObjectOutputStream(os); oos.writeObject( new XY( "serdar" , "ilter" )); //here XY object is succesfully cre ...Show All

  • Software Development for Windows Vista Public Properties on Workflows

    How would I access from an ExternalEventService a public property exposed on the workflow instance I see how to pass parameters into the workflow on creation, but how would I access them while running Garick, You should pass these values as parameters with the CallExternalMethod activity. IE if your interface looked something like: [ExternalDataExchange] interface IFoo { void Bar(string prop1, int val2, Guid g); } then you could bind a string, int, and Guid, to the implementing method. The samples in Communications\ might also be useful for you. Arjun ...Show All

  • Software Development for Windows Vista Failed to display context menu on 64 bit platform

    I am developing mmc snapin for Windows 2003 R2, and encountered a problem on 64 bit version.  The context menu cannot popup when multiple items are selected in the result pane.  It works fine when only one item is selected.  By debugging into the code we found that the IExtendContextMenu::AddMenuItems() is not invoked when multiple items are selected. Have anyone encountered similar scenario   Would there be any difference between the IExtendContextMenu on 32bit and 64 bit platforms Thanks ...Show All

  • Visual Studio Team System Again Load Test - actually Multi User test

    Hi I am not a developer therefore I am trying to get everything I can, without adding lines to the code. Let's see if it is possible. :) I've read the blogs: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=122964&SiteID=1 and http://forums.microsoft.com/msdn/showpost.aspx postid=118191&siteid=1 but still there is something that I don't understand. Therefore, I restart with basic questions: Can I use this tool to run a multiuser test and not a Load test What's the difference The difference is that I need to know exactly when a test starts, when it ends, and control the number of times to make ...Show All

  • Visual C++ Setting an executable icon programmatically

    Hi, I know how to set-up an icon for my application executable through the resource file, but is there any way I can change the icon for an executable programmatically I wish to change the icon for my executable depending on whether my game has a saved game file existing or not. Is this possible to change the icon for my executable during run-time so that when the application exits, a different icon for my executable shows up in "windows explorer" or a "directory window" Thanks. Max Just some more infos: The Explorer just fetches the first icon that it can fi ...Show All

  • Visual Basic Error Created when opening beta 1 file in beta 2

    How to solve this error i have save the file in beta 1 and when i upgrade to beta 2 I have this following error can some one please help me on this Error 1 Type 'System.Windows.Forms.WindowsFormsApplicationBase' is not defined.  Error 2 'AuthenticationMode' is not a member of 'Forms'.  Error 3 'ShutdownMode' is not a member of 'Forms'.  Option Strict On Option Explicit On Namespace My Partial Class MyApplication Inherits System.Windows.Forms.WindowsFormsApplicationBase < Global .System.Diagnostics.DebuggerStepThrough()> Public Sub New () MyBase .New( Syst ...Show All

  • SQL Server Matrix Subtotals

    I looked at RS a couple years back, around the release of SP1.   The biggest issue I had was the lack of Aggregates of Aggregates.   This still seems to be the case in RS 2005, is that correct   So help me with a work around.   In a Matrix report how can I   Have a calculation (Aggregate) that has a scope that is for both the Row and the Column.   Example:   What is the percent of total sales and percent of total category sales                        &nbs ...Show All

  • .NET Development Gac'ed Configuration Application Block with Encryption

    I am unable to add encryption to a strong named application configuraiton block.  I wonder if it is a bug.  Let me show you what I did: 1) Strong name the Enterprise Library's Common and Configuration projects, load them into GAC. 2) In the config file, I changed the reference's version number and public key from: < configSections > < section name ="enterpriselibrary.configurationSettings" type ="Microsoft.Practices.EnterpriseLibrary.Configuration.ConfigurationManagerSectionHandler, Microsoft.Practices.EnterpriseLibrary.Configuration, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null" /> </ config ...Show All

  • Visual Studio Report Builder page footer

    Anyone know of a way to add page number or a datetime stamp to reports built in Report Builder I do not see a way to do this without manually editing the rdl file. Well, The date/time stamp turned out to be relatively easy. Just create a text box and plop the formula in it. I tried the Globals!PageNumber and that didn't work. I received an error message stating that particular variable must occur in the header or footer only. Thanks to Russell Christopher for all his help. R ...Show All

  • Visual Basic VB Stored Procedure Alter Database command fails with Sql err code 5011

    Running: Visual Basic 2005 express edition. Sql Server 2005 Express edition. I have created a stored procedure which executes tsql statement to alter the database. Everything works great, except for the actual tsql statement that alters the database. I get back the following sql error message: HariCari SQL Error/s 5011 - User does not have permission to alter database 'HariCariDB' or the database does not exist.5069 - ....... The database name is correct. The database exists, etc. I login to Windows with a user account that indicates I am the/a Windows system administrator. I use Windows Authentication to access the data ...Show All

  • Visual Basic Collection Contains in VS 2003?

    I have a Collection object and I would like to know if a particular key is in the collection so naturally I try something like: myObject.Contains(key) But when I compile the project I get: 'Contains' is not a member of 'Microsoft.VisualBasic.Collection'. I am running VS 2003. Is 'Contains' a new addition or am I just not calling it right If it is truly not available does someone have a workaround. Right now I do something like: myObject.Item(key) which throws an exception when key is not in the collection. I would like a friendlier response than that. Thank you. Kevin When you created the class myObj ...Show All

  • SQL Server After changing the comupter's name

    I installed SQL Server 2005 in a windows xp machine. The ogrinal name of the machine is pc1.   After installing SqlServer 2005, I change the machine name to pc2. I find that many login names in the Manager Studio is still prefixed with pc1, like pc1/ASPNET. Must I change the prefix to pc2 manually Yes, you will need to update the login names. I discussed this issue and a possible solution on my blog at: http://blogs.msdn.com/lcris/archive/2005/09/27/474505.aspx Let me know if you need additional help. Thanks Laurentiu ...Show All

©2008 Software Development Network