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

Software Development Network >> neil mosafi's Q&A profile

neil mosafi

Member List

Andrew McGhie
Skip McIlvaine
IraW
cool_shezz
BleskiMan
TGhostH
GarethD25
Shoaib Shaikh
James.Zhang - MSFT
Mónica
Bagpuss
dpittman
LearningASP.NET
Anatoly Stefanyuk
KP99
John.Padilla
vdykcj
Gunilla
blindlizard
Brant Yin
Only Title

neil mosafi's Q&A profile

  • .NET Development Data controls gone in studio 2005

    I'm a recent convert to visual studio and I was just getting used to the 2003 environment when the office upgraded to 2005. Now I can't find the connection objects in the data toolbox. I found it very handy to drop a sqlDataAdapter and a sqlConnection on a form and use them as my starting point to connect to a database. Now with 2005 the objects don't appear in the toolbox. Am I missing a component somewhere or have they been removed I can still access these objects programmatically but I'm not as proficient with them that way. the binding model has changed dramatically , for the better I might add! Finally ...Show All

  • SQL Server Understanding code created by SSIS import/export Wizard

    I built a packaage in SSIS with the import/export utility. It created a Package.dtsx and Package1.dtsx. Both of these files seem to be XML files. I want to understand how these files work. For example, in the package I built I had about 80 tables exporting and importing data. Some of them I want to allow the identiy insert and delete the rows first. Others I want to append the data. How can I find the code or settings that does this Or where can I find the options on the gui interface to change these settings. When I search the code I can't even find a some of the tables that are being transferred. I actual ...Show All

  • Visual C# Comparing generic List's

    I would like to compare two list's, listOrginal and listModified, see code below. Is there a established good way to do this The purpose is to see the "difference" and update a data base according to the "difference" information. //regards //lars Class Person { public int PersonID; public string FirstName; public string LastName; .... .... } ////////// { ... ... private List<Person> listOrginal; private List<Person> listModified // Compare list... } It all depends on how much information you want from the comparison. For instance do you need to know only ...Show All

  • SQL Server Error Calling SQLCLR UDF

    Running SQL Dev Edition on Win2K3 Enterprise Edition. I get the following error. Msg 6522, Level 16, State 2, Line 2 A .NET Framework error occurred during execution of user defined routine or aggregate 'AddressCorrect': System.DllNotFoundException: Unable to load DLL 'D:\CorrectA.dll': Not enough storage is available to process this command. (Exception from HRESULT: 0x80070008) System.DllNotFoundException: at UserDefinedFunctions.CorrectA(String query, String sentlen, StringBuilder errcode, StringBuilder FirmName, StringBuilder urbanization, StringBuilder Dline1, StringBuilder Dline2, StringBuilder LastLine, StringBuilder ...Show All

  • .NET Development My programs won't start up on Win98 or Win2000

    I've been struggling hard with this for about a month.  I have a program written in C# .Net 1.1, that has about 170,000 lines of code and is in daily use by thousands of users.  Any version that I released after about 9/1/05 simply fails to start up at all on Win98 or Win2000.   "An unhandled exception has occurred", followed by thread id, but absolutely none of the usual details.  Keep in mind that it continues to work flawlessly on WinXP, and it always worked flawlessley on Win98/2k until one month ago.  The problem does not affect previously compiled versions, only those which I compiled after that ...Show All

  • Visual Studio Team System How to upgrade my VSTS Team Suite Trial to real?

    I know there's already a thread titled similarly but it doesn't help my situation. My VSTS Team Suite Trial Edition install is to expire in 20 days (you know it reminds you every time it starts). The role change for my MSDN Premium with Team Suite is complete (now when I login to my MSDN I can see Team Suite as a download option). My question is, how do I upgrade the VSTS Team Suite Trial install on my computer without an uninstall/reinstall Everytime I go to Help -> About Microsoft Visual Studio and click the Uprade button, it takes me a this URL http://msdn.microsoft.com/vstudio/products/ Hi The fo ...Show All

  • Windows Forms How can show the many instances of form opened in 'window' menu like in MSword?

    In MSword, if I open five documents, the window menu shows all the five, and when I click the one, that instance opens. How can show the many instances of form opened in 'window' menu like in MSword Any web pages, clue or sample would be appreciated. Thanks, Jil. Hi, If your using a MDI form you could access all forms in the MDIForm1.OwnedForms its an array of forms that the MDI owns... You could then check if its visible or not... cheers, Paul June A. Domag ...Show All

  • Visual C++ Linking to static lib created with vc7.1

    I am trying to do a program where i need to use some static lib's created with vc7.1( i am new to this) so what is best practice since i get linker errors that msvcp80.dll missing and if i exclude then i get 10 thousend other error. co how to use a static lib wich is compiled with vc 7.1 lib should i use 7.1 lib, and if howto set this up so what do i do do i go back to vs2003 it must be possible to link to another lib in vs2005 how do i create a project that uses vc7.1 crt lib ...Show All

  • SQL Server Gauge Controls for Reporting Services 2005

    Dear Anyone, Does anyone know where I can get gauge controls ans sorts that can be used in RS2005 Thanks, Joseph Actually, Dundas Gauge is not available yet for Reporting Services. The only Custom Report Items I know of are chart and barcode. I expect that Dundas will release gauge for SSRS sometime in 2006. ...Show All

  • Visual C++ Include files build order

    All, line 222 in winnt.h reads like this:      typedef void * POINTER_64 PVOID64; and creates the error message      Error C2146: syntax error: missing ';' before identifier PVOID64. I am trying to throw VC++ 2005 Express on Windows 2000 Pro SP4 at a modifed version of the amcap sample program of DirectShow.  This is the version I have downloaded with DirectX 9.0b on 11 Oct. 2004 and have successfully used with VC++ 6 SP5 on the same program.  (The DXSDK involved is (one of) the last issue of DirectX that included DirectShow.) I have the platform SDK downloaded, and putting i ...Show All

  • SQL Server SQL Server 2005 - Generate DB Script...

    In SQL Server 2000 we were able to set the scripting formats like adding the script to drop the object if exists and then re-create the object.  Could anyone tell me how would I do that in SQL Server 2005, please The options I am talking about are like shown below: if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Category Sales for 1997]') and OBJECTPROPERTY(id, N'IsView') = 1) drop view [dbo].[Category Sales for 1997] GO CREATE TABLE [dbo].[Categories] (  [CategoryID] [int] IDENTITY (1, 1) NOT NULL ,  [CategoryName] [nvarchar] (15) COLLATE SQL_Latin1_General_CP1_CI_AS NOT NULL ,  [Description] [ntex ...Show All

  • Windows Forms Question about ClickOnce

    Hello I don't know if the place of this topic is in this forum but I try to find someone to answer my question here. I work in a team of: project manager, analists, developers, testers and consultants. We use ClickOnce on network share to deploy the latest version of the application to all the team members. It works fine and withaout any problems. I want to 'implement' a ClickOnce solutions in my customer organization. I want that my client to have the application published on a network share and avery time an user starts application to check if a new version is available and install it. It is possible for me to save the published f ...Show All

  • Visual Studio Express Editions Excel Module

    I have a module that I use in Excel 2000 alot.  Can i just copy and paste this module in Visual Basic 2005 and use it or can expect alot of advanced programming to get it to work  I'm still just a beginner so anything much past copy in paste will be a problem.  Mike I should also add that this module converts feet and inches to decimal form for use in calculations, and then will also convert it back.  My final goal is to use this module to create a feet/inches calculator.  It totally depends. VBA code is VB6 and it will OFTEN work eactly as is. On the other hand if yo ...Show All

  • Visual Basic Picture Box

    I got an MDI application and am trying to place a picture on the MDI parent. If I place the picture as a Background Image of the MDI parent, the picture is tiled across the whole form..... and doesn't look nice! If I place a picture box and dock it to fill, and select the image I want, the image is shown well. But whenever I call another form, nothing appears on the screen...... the form is loading behind the picture box. I already tried calling Form1.BringToFront() but it doesn't work. Any suggestions To answer my own question: Refresh the main form when the Resize event occurs. I don't understand why I ...Show All

  • Visual Basic Refactor won't install

    I tried to install Refactor! for Visual Basic 2005 Beta 2: http://msdn.microsoft.com/vbasic/downloads/2005/tools/refactor/ But I get an error during setup saying that it could not find Visual Studio 2005.  Does Refactor support the Express products G'day Richard, As the (very attractive) refactoring software is offered for download on a page linked from VB Express News, and as the tutorial appears to be a vb function, might I respectfully request that this known limitation please be placed on the download page. Andrew (Rum Warden) andrewmurn-at-netspeed.com.au ...Show All

©2008 Software Development Network