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

Software Development Network >> Markku Behm's Q&A profile

Markku Behm

Member List

JoeCousins
Jan Nawara
vhrao
calebb
Márcio Fábio Althmann
GrissomA
ntquang
IanHurrell
SAinCA
Benyu
YellOwCN
Joe Jackson
Siv
E. Richards
Samarth04
Paul_
Spoon edd
Lord Steve
Zeeshan Ali changazi
David Clausen
Only Title

Markku Behm's Q&A profile

  • Visual Studio Custom connector target (June CTP)

    Hi, Suppose I got the following DSL: somedsl . Now I want to restrict the connections you can make with BBConnector. Let's say I only want B1 to connect to B2 or B3 and I only want B2 to connect to B1 and B3. I checked the 'Has custom target' on the connector mapping. So now I must fill in these methods: private NodeShape GetTargetShapeForBBConnector( BBConnector connector) private PresentationElement GetTargetShapeF ...Show All

  • SQL Server Getting Error 1935 when trying to install SQLXML 3 SP3

    I have a Windows 2003 Server SP1. I have SQL 2000 Server SP4 running on it. I am trying to instal SQL XML 3 SP3 on this server. But the installation aborts midway giving an error.I got the following in the event log.  Product: SQLXML 3.0 SP3 -- Error 1935. An error occured during the installation of assembly component {303994BA-6487-47AE-AF1D-7AF6088EEBDB}. HRESULT: 0x80070002. assembly interface: IAssemblyCacheItem, function: Commit, asse ...Show All

  • Windows Forms DataGridView add new row problem need help.

    Dear all, I have a DataGridView control which allows users to add new record. In case users will hit the "addnew" button twice, then the System.Data.NotNullAllowedException will raise. Which event should I use to trap the exception, and prompt message for user to continue enter required data or to cancel addnew Thanks ...Show All

  • Visual Studio Team System How can shelving support working from Desktop and Laptop?

    Here's the scenario, I do a bunch of work on my desktop during the day, resulting in numerous files being checked-out on my desktop.  At the end of the day I'm not ready to check-in but I would like to continue my work from my laptop in the evening.  My understanding was that I would shelve my pending changes from my desktop computer, then Unshelve from the laptop. I tried this and got a bunch of errors during unshelve: "The item $/... ...Show All

  • SQL Server joining a table to a user-defined function???

    Suppose I have a SQL Server table named 'gadget'. 'gadget' has an integer field named 'gadget_key', which is the primary key of the table. Now suppose I have a user-defined function named 'udf_gadget_values'. This function takes as its input parameter an integer variable named '@nGadgetKey'. This function returns a table which will always contain exactly one record. This one record has one field named 'nGadgetKey', which contains the same value ...Show All

  • Visual Studio Express Editions New Project Pane

    I'm not sure if this is a problem or not. I've seen several references to a 'New Project Pane' but I don't have it. I'm not sure if this is a holdover from a prev beta or what. I'm using Beta2. When I look up documentation on writing ASP.Net code on the web it says to open a new project and select the new Web Forms from the New Projects pane. I also ran into this problem when researching how to deploy an app which is in the current documentation ...Show All

  • Visual Studio Integrating validation information within XML

    I am designing a client tool, similar to Microsoft's Security Baseline Analyzer, that will validate the parameters in the configuration files of services my team deploys. The tool will prompt the user for a number of questions. These questions are displayed on the tool's UI by reading off an XML question file. This has been done for scalability. Validation begins after getting the user's responses. My initial design involved hardcodin ...Show All

  • Visual Basic datetime picker control for web forms

    Where and how do you get a datetime picker control for web forms , and how do you add it to VS 2005 toolbox Thank You, Kamal I believe that the datetime picker control is available only for Windows Forms. But maybe the Calendar control (that should show by default in the Toolbox) could help you. ...Show All

  • SQL Server External program (C#) to call and modify variables of a SSIS package?

    I created a package to dump a lot of various Access MDB files to SQL server: - How an external C# program modify the connection string of OLEDB connection string (for different MDB files) - How to modify the value of User::Variable in the package (Need to assign the tables selected by users to variables) - Where to find the information about external program running SSIS packages (URL links) Thanks, ...Show All

  • Windows Forms Duplicate component name 'iDKontaDataGridViewTextBoxColumn'. Component names must be unique and case-insensitive.

    This is the error, which makes me cry. Everytime i work with datagridview, it makes this error in time. I remove every problematic Columns, but it doesnt work. It seems that designer sees something that no longer exists . For instance iDKontaDataGridViewTextBoxColumn was removed from the designer part of the class. ANd designer still says, that it is there. What may be the sollution of this I would like to continue my work without removing whole ...Show All

  • SQL Server Optimizing LIKE OR Selects

    I'm having problems optimizing a sql select statement that uses a LIKE statement coupled with an OR clause. For simplicity sake, I'll demonstrate this with a scaled down example: table Company, fields CompanyID, CompanyName table Address, fields AddressID, AddressName table CompanyAddressAssoc, fields AssocID, CompanyID, AddressID CompanyAddressAssoc is the many-to-many associative table for Company and Address. A search quer ...Show All

  • .NET Development Can't pass TableAdapter as argument

    Can't pass TableAdapter as argument In VB6 it was easy to build my own datalayer.  In vb.net 2003 it was difficult, not nearly as time saving as in vb6.  I was hoping vb.net 2005 would be easier. In many forms I fill table adapters, hardly a big surprise.  I was hoping to create procedures in a class that I could call from each form.  Unfortunately, I can pass a dataset, but I can't pass a TableAdapter.  When I try I g ...Show All

  • Visual Studio Express Editions Using forms in VB Express

    How do I move from one form to another. Can I use buttons. I would like to click on a button and go to another form. Scott The easiest method is to create the button and double click on it. Then use the My.Forms.[Form Name].Show() under the Private Sub for the Click Action. When you click your box the new form will open which is what I think you were trying to ask. ...Show All

  • Visual C# MathServiceItem_cs.wsdl not found

    Attempting to execute a PortCollection statement I got a runtime error message that a file was not found. The debugger was looking for it in C# bin directory. I've searched my entire computer--no file under such name. Could not find in at any MS websites. These code snippets are all over the web not only in the forum. How do I get hold of... MathServiceItem_cs.wsdl Thanks in advance. It definitely worked but it raised many q ...Show All

  • Visual C# simple editor using webBrowser control

    Hi, I am working on an editor using the htmldocument in the webbrowser control. This is my code for testing out its capability: private void webBrowser1_DocumentCompleted(object sender, WebBrowserDocumentCompletedEventArgs e) { htmldoc = webBrowser1.Document; htmldoc.ExecCommand("EditMode", true, null); } private void webBrowser1_PreviewKeyDown(object sender, PreviewKeyDownEventArgs e) { // proces ...Show All

©2008 Software Development Network

powered by phorum