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

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

nizzy8

Member List

James Mark
Syed Junaid
BobMaupin
Troy Deppert
gabriewo
AAjusLT
Alfred Ortega
DevMark
ndalli
rhenders
Jon Haakon
bribera
Dgrm4
Max MUCCI
dedgod
Stefan Prodan
LwnChina
Soulhuntre
smsm_fcis
Clive Greenhalgh
Only Title

nizzy8's Q&A profile

  • Visual C# Differneces between c++ and c#!?

    I'm quite new in programing and i started learning c++ but i want to know what are the differences between c++ and c#! (because all examples and learning lessons, from msdn Visual Studio 2005, are written in c#) I know this is a stupid question for all of you but i heard about c# only in Visual Studio. I really need an answer to this question because i don't know what lenguage to learn! Thanks  C# is a newer language with a Java-like syntax and feel to it. C++ is more complex and while much of the syntax is similar to C#, some parts are radically different - I'm thinking especially of C++/CLI vs C# and handli ...Show All

  • Visual Studio Express Editions How can I do reports with my visual Basic Express Edition?

    I would like to do charts reports with my visual basic Express edition.     I'm seeing a number of issues like this. I wonder if the user community is not forgetting the intent of Visual Basic Express It's intended for hobbyists and people who are learning computing. It is not intended for production use. ...Show All

  • Software Development for Windows Vista Using data objects from database for holding Workflow/Activity-Properties

    Hello, we are building a end-userfriendly workflow engine (with own designer) (see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=265499&SiteID=1 ) I have only on question (at the moment). Our activities have some properties, all workflows are derived from our own base workflow (with some properties, for example a workflow object which is sent through the whole workflow). The workflow object is used in IfElseActivities. It is a generic container for any structured data. The data is updated (on demand) by a own EAI layer. So we only want to serialize the object id to the xoml. the object itself is loaded from a da ...Show All

  • Visual Studio Tools for Office Excel 2007 VSTO Addin UDF

    How do we expose a UDF out of an VSTO v3 addin so that it can be used in a cell Hi Dan, First you need to create a class (must be ComVisible) with your methods. E.g.: [System.Runtime.InteropServices. ComVisible ( true )] public class MyUdf { public object MyFunction() { return "My Function!" ; } } Then put the following line in ThisWorkbook_Startup method: ThisApplication.Run ("CallbackReg", new MyUdf()); // this will start "CallbackReg" macro in your workbook Next you need to open your workbook and add new module with following code: Public ...Show All

  • Windows Forms Navigate to another Form

    Okay, i'm guessing this can be done really easily but I'm having problems trying to figure it out. I am building a VB app and I want to navigate from one form to another. I know in VB6 this was easy you just write myform.show() and the other form would pop up. I can't find the solution for this now.  Imports System.Data Imports System.Data.Ol ...Show All

  • Windows Forms Position of context menu

    Hi, How can I get the position of context menu Thank's Alexei Normally, the context menu will be shown at the center of the control when the keyboard is used to invoke the context menu of a control (Shift+F10, for example). You can customize the location as follows. Override WndProc in the grid and check if the Message.Msg is WM_CONTEXTMENU (0x007b) If so, check if the Message.LParam is -1, which means this was due to a keyboard message as opposed to the user right-clicking the mouse. Now, call the associated ContextMenu's Show method explicity at the selected row position. Make sure NOT to call the base class after show ...Show All

  • Visual Basic Can it show that?

    Hello, can i find out, if the Internet Explorer can show a File from the file extension For example: My String Path="C:\Documents\my.exe" This file cannot be shown in Internet Explorer. Now i want, that the String Accept="No" Oh, sorry. That’s my code. It doesn’t works too. And DownloadReady="1" Private Sub WebBrowser1_FileDownload(Cancel As Boolean) If DownloadReady = "1" Then MsgBox AccessURL Cancel = True On Error GoTo 0 Else End If End Sub Yes, i’ve tested it on the developement computer. In debug Modus it works, but whe ...Show All

  • .NET Development Which DB to use?

    Hi, i am writing a program that uses a db. My db will have 3 tables and maximum of 5,000 records. I want that the customers will download my application... The proplem is that i don't know whether they hav a db engine or not. I heard about MDAC for mdb files... 1) How can i check in my installation wizard whether the client has MDAC installed on his local mashine 2) Can u suggest me somthing better remember firebird is interbase 'open sourced.' almost everything that says it works for interbase, should work for firebird. its been a while since I worked with it but it appears now that their are a few differen ...Show All

  • SQL Server SSIS vs DTS - what to compare?

    Hi. I'm working on 'bigger' SSIS vs DTS comparison, but actually don't know where to start. Can someone experienced give me some clues/resources about that I was able to find only some parts, short texts, that SSIS is about 7 times faster, etc. But I need to make some tests and analisis as well. Any help would be appreciated. Thanks in advance, Michal Phew, where to start You could write a 500-page opus on that subject matter. What specifically are you looking to compare Functionality, Performance, or something else Perhaps this might help in regards to functionality : http://blogs.conchango. ...Show All

  • Visual Studio Trapping the F5 menu command

    I'm having some difficulty in trapping the F5/Start Debugging command. I've tried adding the command like this: id = new CommandID(VsMenus.guidStandardCommandSet97, 295); command = new OleMenuCommand(new EventHandler(ShowConsole), id); mcs.AddCommand(command); but no luck. I've also added a section in the commands table like this: CMDUSED_SECTION guidVSStd97:295; CMDUSED_END My other user defined commands work ok - I can trap and handle them fine. Is there anything else I need to do Thanks Dermot I've figured out how to do this by overridding the ExecComm ...Show All

  • Windows Forms Inheritance Base Form lock

    I am using a base form which has menu and toolbar in a windows forms application.  I changed modifier property all the toolbar items and menu items to protected. The other forms inherits the base form. I can see the controls on my inherited form but can't click on any button on toolbar or menu and neither I can write code for events for the controls on base form. It used to work on Beta1; now the inherited form shows the small lock on the controls of base form. I can write code for the events of toolbar/menu and code compiles but I can't double-click on the control to write code. I also tried with modifier as public but s ...Show All

  • Visual C# datagridview / cells and rows

    hi, i need help, how can i get the value from a particular dgvcell if i'll select the entire dgvrow and how to auto-select a row thats brilliant got it working now. super fast reply. Thanks! ...Show All

  • Software Development for Windows Vista Message Delivery Exception in Windows Service Host Application

    I have following architecture: - Host application: Windows Service (+ Interface for communication between Workflows and Host application) - Consuming application: ASP.NET Web Application (+ Interface for communication between ASP.NET web application and Host application using Remoting) First the windows service is started. It creates the Workflow Runtime. Then a web application starts a Order state machine workflow using the remoting interface. This works fine. Then the created Order workflow creates a certain amount of OrderItem state machine workflows (programmatically in a Code Activity in the Order workflow). If an OrderI ...Show All

  • .NET Development why does passing by ref change result of Type.IsGenericType?

    Hi - the following code outputs: dictionary True dictionaryByRef False I would have expected both parameterTypes to return true for IsGenericType. What gives cheers, colin using System; using System.Reflection; using System.Collections.Generic; namespace AnotherTest { class TestType { public void EatDictionaries( Dictionary < Int32 , String > dictionary, ref Dictionary < Int32 , String > dictionaryByRef) { } } class MainClass { public static void Main( String [] args){ Type testType = Type .GetType( "AnotherTest.TestType" ); M ...Show All

  • SQL Server Command line action still not supported after installing sp1

    Why is the command line action still not supported after installing SP1 in the SQL Server Business Intelligence Development Studio What command line functionality you are looking for from BI Dev Studio Edward. -- This posting is provided "AS IS" with no warranties, and confers no rights. ...Show All

©2008 Software Development Network