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

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

dony_s

Member List

Chris Turner
SharonF
Ranjith P
Oluf
Thaya
Jokeje
Marco Casamento
Shabnam Gupta
Ify
SalvaPatuel
Herman Schutte
Verne Logan
nielaldous
Richard_C
ddollar
Sam2
Søren Mondrup
arto1astro
spids
cmckeegan
Only Title

dony_s's Q&A profile

  • Visual C++ Problem with VC++ 2003.Net Inheritance and destructors

    I have come upon a weird but probably very simple problem. In Visual Studio.net 2003 I try inheriting a public managed class into a public managed class both of which were created by using the class wizard. If I comment out the destructors the library compiles properly. But if I leave in the destructors or any one of them the inheritance gives a compiler error. Would someone be kind enough to tell me what silly mistake I am making Error Message is fatal error LNK1120: 1 unresolved externals #pragma once using namespace System; namespace StationObjects { public __gc class StationObj { public:    StatioObj(void){}    ...Show All

  • Visual Studio 2008 (Pre-release) HeaderedContentControl template

    Hi! I am trying to create a control template for a TabControl and its TabItems <Style TargetType="{x:Type TabItem}"> <Setter Property="Template"> <Setter.Value> <ControlTemplate> <Grid> <Rectangle Fill="{StaticResource BackgroundGradientBrush}"/> <ContentPresenter Content="{TemplateBinding Property=ContentControl.Content}"/> </Grid> </ControlTemplate> </Setter.Value> </Setter> <Setter Property="HeaderTemplate"> <Setter.Value> <DataTemplate> <Conten ...Show All

  • Visual C# Call Tree?

    Is there any way to display a solution's call tree in the IDE Thanks, Ray What are the latest plans for making this available with C# and VB I greatly appreciate this feature under C/C++ and I miss it while working in C#. ...Show All

  • Visual FoxPro How do i disable an active screen saver?

    Good day to everybody, i have a small program installed in the workstation that is controlled at the server, Can we disable a running screen saver when my program becomes active Example: I send a message to the workstation,... so my program installed there will pops-up automatically....but the problem is, ...when the user did not use the PC in a period of time so naturally screen saver will take-over, and my program pops-up at the background of the screen saver. is there a way to solve this Thank you and more power Not a good idea. Anything that is controlled by Windows should be kept to Windows. What ...Show All

  • Visual Studio Team System SQL Server 2005 April CTP - Invalid SSPI Packet Size

    When I bring up SQL Server Management Studio and attempt to connect to the default database using windows authentication, I get a cannot connect error because of Invalid SSPI Packet Size.  If I try again it works.  This is causing me problems installing the application tier.  Does anyone have a clue what I can do to fix this I'm seeing the SSPI packet size error in the June CTP as well.  I've observed it on two different domains.  I opened a bug in the "MSDN Product Feedback Center" (aka Ladybug) with bugid FDBK30644 to reflect that the June CTP did not fix this. If anyone else is s ...Show All

  • SQL Server transaction log

    Good day to everybody, I have this problem once, but maybe i will encounter this again regarding the transaction log that I do not know why it grows bigger that it consume my harddisk space of 15gig althought my data file consume only 25mb How does it happen and why The only thing i do is to make a new temporary database, copy the tables inside on it and erase the old database whose transaction log is full, then bingo!!! I emptied my harddisk with the undesirable log file, then again make d'same database as the one I erase and copy again the tables at my temporary database created.  Is there any other way I can empty my disk with that ...Show All

  • Windows Forms ErrorProvider, IDataErrorInfo, and DataBinding

    I am creating my custom objects and collections to support databinding and validation. It works nicely. Now, I am trying to implement IDataErrorInfo, so I can communicate with Winforms ErrorProvider. What I read is that I can set the datasource of ErrorProvider to my object, but the object has to implement IList also. If this is the case, can I still i ...Show All

  • SQL Server variable visibility within an integration services project

    im creating an sql2005 integration services project ( DTS). i am creating a user variable. i want to be able to use that variable inside a script task. how do i reference the variable so that it can be seen within the script task http://blogs.conchango.com/jamiethomson/archive/2005/02/09/964.aspx My opinion has changed slightly since I wrote this mind you. I generally prefer using ReadOnlyVariables/ReadWritevariables these days. -Jamie   ...Show All

  • Visual Studio Team System How to publish test result to TFS by programming

    I know how to publish a test result to TFS by myself in VS now. What I wanna know is if there is a way to publish the result by some programming approach It seems I can use the PublishTestResultsBuildService.asmx in TFS, I tried but failed, can any one give me an example for that. Thanks I don't think there is an API that you can call to publish the results file to TFS. If you are looking to publish results file outside of VS IDE window then there is mstest.exe command line tool you can use to publish the results. See the help for mstest.exe (mstest.exe / ). Section of mstest.exe / for publishing: The following options are also a ...Show All

  • Visual C# C# IDE Performance = Very Very Slow

    My Computer Hardware: Dual Processer AMD Operton 2.0GHZ Raid (0), and 2 -15,000 RPM Maxtor SCSI Striped (World's fastest HD's) 134MB/sec 4 Gigs of RAM My Problems: 1. It takes 65 Seconds to just load VS2005. I am not even loading a Project. 2. It takes 30 Seconds to just close the program. No projects loaded. 3. It takes an additional 1.5 minutes to 2.0 minutes to load an existing project. 4. The existing project, was just created today, and has almost no code in it. 5. During this wait period, one of my processors is running at 51%. 6. During development the sluggishness continues, and so I have to close/re-open project, this helps for ...Show All

  • Windows Forms Validation issues (save and new items)

    I implemented validation on my form overriding the OnColumnChanging of the underlying datatable. While this worked ok whenever I step on the control (let's say textbox), put an invalid value, and  leave the control, it  didn't worked in another scenarios: * I want the validation occurs hen I press the Save button * When I do an AddNew on the BindingSource, ColumnChanging event is never fired, so validation does not occur How can I solve these issues Thanks, Matias Any word about this I've just did a proof of concept with the Customers Northwind table. I've overriden OnColumnChanging with this: ...Show All

  • .NET Development Inserting data into an access database

    Hello, I am trying to insert IpAddress and other stuff into an access database in my ASP.NET 2.0 application but keep getting an exception on the INSERT statement. Can anyone tell me what I am doing wrong Thanks. Dim ipAddress1 As String = Request.ServerVariables( "REMOTE_ADDR" ) Dim UserHostName As String = Request.UserHostName Dim UserAgent As String = Request.UserAgent Dim UrlReferer As String = "" Dim DateTime As Date = Now Dim ipAddress2 As String = Request.UserHostAddress Dim strSQL As String strSQL = "INSERT INTO tblAddresses (IpAd ...Show All

  • Windows Forms List box and textbox

    I have to forms. a.vb and b.vb. on A.vb I have a text box "a.text", and on form b.vb I have a listbox with a few names.  I want to know how do I chosse or click a name from the listbox in b.vb and when I have click the nameI want, how do I get it to show in the a.text box in a.vb. Can you plase walk me true this Thanks Hi, If your using VB2003 it would be a little more tricky. It really depends on who's the parent form (which form shows first). I'll just assume that Form A is the parent of Form B. Here's the code: ' Place this on the part of Form A where Form B is being shown: Dim frmB As New B frm ...Show All

  • SQL Server Component wizards

    I just posted a couple of wizards on http://www.ivolva.com/ssis_wizards.html to help with creating custom tasks and custom data flow components in C#. It is packaged as MSI, so installation hassle is minimal. If anyone wants to try this out, please help yourself and let me know how it went. Oleg http: http://www.ivolva.com Hi there Oleg, I tried them out, they're great starters. Hope you're planning on asking Qs like whether users want async/sync transforms and how many initial inputs/outputs to create. Thanks for doing this! regards, ash ...Show All

  • SQL Server Differences between metacube (informix) and SQL server analysis services

    I would like to know differences between metacube (informix) and SQL server analysis services in terms of 1. What issues need to be considered when migrating from metacube to analysis services. 2. Features 3. Other improtant differences.   Thanks in advance C10 ...Show All

©2008 Software Development Network