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

Software Development Network >> i-developer's Q&A profile

i-developer

Member List

Euclidez
_joe_
JocularJoe
dstorch
une
sunny123
HinDRAncE
.net sukbir
NorCis
Maaloul
JoannM
Narny
SarathChandar
Musafir_86
TJ2007
Luis Carlos Guimarães
spotl
Andy Ho
Matt525
William Lowers
Only Title

i-developer's Q&A profile

  • SQL Server deadlock errors

    I'm setting up a push merge replication, after the initial merge agent completes without errors I move the subscriber from a wired connection to a wireless connection. At this point I get an error… The schema script …Program Files\Microsoft SQL Server\MSSQL\REPLDATA\unc\[ table ]_93.sch' could not be propagated to the subscriber. (Source: Merge Replication Provider (Agent); Error number: -2147201001) Cannot drop the table '[ table ]' because it is being used for replication. (Source: dfdmfvltgh09 (Data source); Error number: 3724) After this error the initial merge agent kicks off again trying to apply the initial snapshot where I then get the following deadlock errors. Transaction (Process ...Show All

  • Visual Basic Any way to BREAK when MyVariable=CertainValue? on ANY line?

    In VB6 (or 3, I forget;-) you could BREAK when a variable reached a certain value or changed, no matter where that change occurred. In VB.net 2005, it seems that you can only do that for a particular line. (I.e., Break on Line X when MyVariable=MyValue). Am I missing something This seems to be a HUGE step backward in debugging functionality. You can still do that in VS2005 with memory breakpoints, but it only works for C++. The reason behind is that variables are now managed by the garbage and thus can be reallocated or moved during the execution of the program. If you wrap access to your variable via a property accessor, then you could still catch the condition by setting up the conditional breakpoint ...Show All

  • Windows Forms how to get the parent form of a control???

    Can anybody tell me how to use the "parent::get()" property of a text control in order to obtain its parent form Thanks!! It looks like you will have to traverse the parent's parent until the return type is System::Windows::Forms::Form. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is it possible to use Newton Physics or FMOD?

    Is it possible to use Newton Physics or FMOD Can the newton .dll be used in XNA http://www.newtongamedynamics.com/ What about FMOD for sound http://www.fmod.org/ Im trying to get a handle on creating a game in XNA - ive been using TV3D 6.5 Beta and I want to see if i can accomplish the same things with XNA. thank you, is that no problem for both FMOD and Newton (for Windows) - and if so, then i pretty much have the physics engine i need - right ...Show All

  • Visual Studio 2008 (Pre-release) Problems with metadataResolver after upgrading to RC1

    Hi,   I have a service that is pretty simple. I generated a proxy class using the svcutil and supplied the the type of contract generated by the tool to a call to MetadataResolver (E.G. MetadataResolver.Resolve(typeof(IMyService), http://localhost/tMyService/Mex ) to look up the avaliable endpoints. This calls fails with the message ""The given key was not present in the dictionary." Stack trace:    at System.ServiceModel.Description.WsdlImporter.ImportWsdlBinding(Binding wsdlBinding, ErrorBehavior errorBehavior)    at System.ServiceModel.Description.WsdlImporter.ImportEndpoints(Binding wsdlBinding)    at System.ServiceModel.Description.WsdlImporter.ImportEndpoints(ContractDe ...Show All

  • SQL Server Change the total (sum generated function) in a matrix

    Hi, Can somebody help me I really need to create a matrix with totals but I don't need a to use a sum I need another function (AVG, Count). Can it be done How can I change the Total function to put another aggregate function Thanks Hi hammer I'd love 2 know where to alter it. Fine i click on the little green traingle, I can still only set the properties. No option for an expression. G ...Show All

  • Visual Studio Team System How to rectify "MarkAssembliesWithClsCompliant" error in FxCop

    Hi, FxCop shows error " ComVisibleTypeBaseTypesShouldBeComVisible ". How could this be resolved. Thanks in advance. Hi, I receive the error " SpecifyIFormatProvider " in my project when i scan it with FxCop, how can it be rectified. Thanks in advance. ...Show All

  • Visual Basic Class not registered

    I just transferred an app from one computer to another and upgraded from VS 2002 to VS 2005. After doing this, I'm getting several errors, the most common one being: Class not registered (Exception from HRESULT: 0x80040154 (REGDB_E_CLASSNOTREG)). The error occurs on the line that says InitializeComponent() at the end of the region "Window Form Designer generated code" for one of my forms. I looked at my classes in the Class View window, and they appear the same as those on my other machine w/ VS 2002. What do I need to do to register this class Hi, Tools->Options->Debugging->General : Enable just my code I have that active and can break and step into InitializeComponent, so I gues ...Show All

  • Windows Forms tutorial with datagridview

    Hi, I have seach but can't find a tutorial, which shall do the following: I have a datagridview, which have 5 colomns - the first 4 I gets from a database. The 5. have I created as a unbound text. In each row I will use the 5. column to make a calculation on column 1 and 4 where I shall say: column4 = column1 * column4 In a textbox below the datagridview, I then will have that adds all the data in column5 Example: Column1.......Column2.....Column3......Column4......Column5 QTY...........Some text...Some text....Rate.........QTY*Rate 5.............aaa.........aaaa.........100..........500,00 2.............bbb.........bbbb.........150..........300,00 Textbox which contains the totally of Column5 = 800,00 Can anybod ...Show All

  • Software Development for Windows Vista Domain Model/WF Design Question

    This question is very design-oriented. One thing I'm having trouble with is knowing where WF fits in a domain model. For example, is WF intended to provide the logic backing for a domain model, or replace a domain model Meaning, is it recommended that we still design domain entities (e.g. a class named 'Invoice' with a behavior/method named 'Cancel()') and use WF to implement the logic, or is WF supposed to supplant the need for behavior-rich domain entities. In particular, many systems have situations where the business logic is relatively simple, and could readily be defined with a WF (where it seems to be overkill) and other situations where the behaviors are complex and long-running, where WF makes sense. Should we mix models Thanks ...Show All

  • Visual Studio 2008 (Pre-release) multiple databases using sqlmetal

    Currently, we are replicating from a file system database and are not able to include foreign key constraints. Therefore, we created a model database with the same table structures and added the foreign key constraints. With this database, I use an O/R mapping tool to create my dll. I am trying to do the same thing with sqlmetal. I created the cs file and when I try to pass a different connection string than the one used to create the cs file, I am getting an error when I try to bind the object to the grid. I am getting an InvalidCastException on .DataBind() Please let me know what you think Thanks, Joe ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Need Info On The Basics

    OK, Ive read a large part of this forum and HAVE recieved alot of answers. With that said, over the past few days Ive been burshing up on my old C++ skills and plan to start learning C# here in the next week. My plan is to do this as a Hobby (Mainly cause Im an electrician with a family) so ive set some really long goals. Im not expecting to pump out a 3d game in a year. Ive been very interested in writing code for years now and have been a lover of Game design ever since Missle Command came out in the Arcade (Just Dated Myself). Since Ive taken this up, a Tattoo Artist buddy of mine has become interested inthe graphic end of the whole thing. So in short, what would be a great 3D design software for a begineer (with years of drawing expert ...Show All

  • Visual C# Extensive Generics Problem

    Hi, I'm really finished. Please help me. I don't have much time. Here's the code (simplified): public class Mammal { } public class Cat: Mammal { } public class Cage<T> where T : Mammal { } public class CatCage : Cage<Cat> { } Here's the application with the error public U[] getCages<U, V>() where U : Cage<V> where V : Mammal { return new U[] { new CatCage() }; } The error message Cannot implicitly convert type 'GenericsIssue.CatCage' to 'U' In Java it's possible to get the cages like that public Cage< extends Mammal> getCages() {} If I've done something wrong, please tell me. Thank you so much Marcel Hi Marcel, I think the reaso ...Show All

  • Visual C++ class destructor not operated.

    Hello, I have a question about destructor in a class. In the below code I was expecting the destructor part of the code to be executed and the message printed out. However, I only see the constructor message. This is the output: "We're in the constructor with arguments Press any key to continue . . ." Why is the destructor message not printed #include <iostream> using namespace std; class Point { public : Point( float f_x = 1.0, float f_y = 1.0, float f_z = 1.0); ~Point(); private : float x, y, z; protected : }; Point::Point( float f_x, float f_y, float f_z) { cout << "We're in the constructor with arguments" << endl; } ...Show All

  • Smart Device Development How do I disable bluetooth and wireless via REGEDIT?

    For security, I have to disable bluetooth and wireless in pocket PC of our employee, and I have to via REGEDIT. How do I disable bluetooth via REGEDIT and how do I disable wireless via REGEDIT Thank you. IMHO you can't do this _just_ with Regedit. What you can do is hide the individual control panel applets - simply add a string value named "Redirect" below the key e.g. [HKEY_LOCAL_MACHINE\ControlPanel\Bluetooth] Then soft reset the device. You also have the problem of removing the tray icon. Peter ...Show All

©2008 Software Development Network