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

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

gajanand

Member List

BlackMan890
PMC-RNY
Suj
CapitalT
Paul Arsenault
Neeraj Pandey
Ickbins
lcsantos85
MHerlund
Michin1
Spudly
Manuel L.
George Low
Bjørnar Sundsbø
Jack Hoxley
David Zuckerman
bcbs_tony
mmagri
JeffsMSDNUserID
MattMan73
Only Title

gajanand's Q&A profile

  • Visual Studio Express Editions VB + SQL server vs Access

    I am very new to programming etc so I may be misunderstanding the situation, but my question is this: VB.Net Express is a programming language which comes with database functionality via SQL Server Express, whereas Access is a Database which is programmable via VBA. So, if one is developing a (fairly simple) database based application what are the pros and cons of using one set of software tools versus the other Thanks for any insights. Eric I never did program in VBA or VB6..... I do have a History though but History is History...... VBA, VB6, Access Data bases, Arrays, Etc. are History.... Why Persist ...Show All

  • Visual Studio Using CR 9 and CR 10 on single machine

    Can anyone say that can I install and use Crystal Reports 9 and Crystal Reports 10 both on single machine My client wants to have a dedicated web server machine and also he wants to install both the above versions of Crystal Reports on to it. This is my very urgent and critical requirement, please can anyone help me about this Thanks in advance.... Shouldn't be a problem, the crystal reports runtimes can run side by side. I would suggest creating two separate install packages though. ...Show All

  • SQL Server Email Trigger in SQL 2005

    I am new to developing as will be evident from this post. Your help will be greatly appreciated. I am developing an intranet for our company using ASP.NET with a SQL backend. I am currently working on a suggestion box form. I would like to have an email sent to specific persons when a new entry is made in the suggestion table. I have been able to configure the trigger and generate the email (This was easy). Formatting the email has proven more difficult to resolve. The format I would like is somewhat as follows: F_NAME L_NAME submitted the following suggestion: IDEA BENEFIT APPROVE | DECLINE The items in RED are ...Show All

  • Visual Studio Team System Project deletion in TFS Source Control

    I have created a (C#) web service project and stored it in an appropriate team project using TFS Source control. However things went awry during check in and I was left with some items checked in and some not. To cut a long story short, I deleted the web service project from source control, checked in the deletion and started over. Now I get errors complaining that 2 of the files in my project can't be checked in because they already exist. They clearly do not (or at least I can't see them). So, my question is what happens when you check in a deletion Does the item get deleted or just marked as deleted If the latter, is there a way of gettin ...Show All

  • SQL Server what's differences in CLSID, PROGID, Stock Moniker and Creation Name?

    Dear Experts, when I define a component with IDTSComponentMetaData90 , must choose the type of component, for example DerivedColumn. I can individualize it with: CLSI PROID Stock Moniker Creation Name Can you give me a definition of these identifications   what differences are there in these identifications   thanks a lot P.F.     ...Show All

  • Software Development for Windows Vista windows vista installation

    How can i uninstall windows vista codename longhorn is ist possible I have xp and vista on c: please help me this is retarted, i installed win vista from WIN XP and then it restarts goes to boot screen and shows the start up and restarts !!! ...Show All

  • SQL Server SQL Server 2005 Developer ed.

    I am trying to install 2005 on a new hard drive, running only Windows x64.  The processor is a AMD Athlon 64 3000+, 2.02GHz, with 1GB RAM. When I click on setup.exe, I receive the following error message: The image file c:\SQLDEV\setup.exe is valid, but for a machine type other than the current machine. I chose the developer's edition as recommended by MS when installing on 64 bit Windows.  Any idea what's wrong Yeah, the confusion for some is that the 32-bit version can run both on 32-bit machines and in the WoW for x64 machines. But the reverse is not true. The two 64-bit versions are intended o ...Show All

  • Windows Forms Toolbox bitmap for myControl doesnt show .Why

    I have the following control library: MyCompany.library.Winforms   Control Library. I have set the root Namespace of my control to empty in the property of the control. I need to do this to be in control of my namespaces. Added a class and inherited from listview Added a 16 x 16 bitmap to the the control set the bitmap to embed resources then I did Namespace MyCompany.library.Winforms.MyListviews <ToolboxBitmap(GetType(Listview))>  _  'this works but i dont want to use it <ToolboxBitmap(C:\MyProjects\MyControls.ListviewEx.bmp")> _ 'this works but dont want to do this way ListviewEx is the name of the co ...Show All

  • .NET Development Credentials

    Hi! I have a small webservice placed on a Domain Controller server (Windows 2003). The service has one void that takes a string value (user account name) and creates a mailbox in the Acitve Directory. There is nothing wrong with the function, it works fine, and mailboxes are created without problem. But there is a slight problem in the code as you migt see below. --------- string path = "LDAP string" ; string homeMDB = "homeMDB string" ; DirectoryEntry OU = new DirectoryEntry (path); OU.Username = "someadminuser" ; OU.Password = "somepassword" ; DirectoryEntry de = OU. ...Show All

  • Visual Studio Team System A curiosity: why isn't VSTS an OMG-recognized UML 2.0 tool?

    Hello everybody, does anyone know why isn't VSTS listed by OMG as a UML 2.0 tool: http://www.uml.org/#Links-UML2Tools Paolo Becouse it isn't a UML Tool. It's a look a like class-designer from where you can generate code and vica versa [code <-> model] that is not posible with al the tools listed, except Borland Togehter [great tool] ...Show All

  • Visual C# Can you put a Image into a ListView with a Grid?

    I was woundering is it possible to put a Image into a ListView "Grid Style" There is a nice article on code project that added some extra functions to the ListView control: C# List View v1.3 . You can also get the bounds of an sub item and put a PictureBox over the ListView. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D map

    kinda hard to explain but what I want to do is place meshes about 200 of them I guess it would be in world space then each time a player moves the camera with point to there current location, what is the best way to get the cords for the mesh not all 200 need to be shown on the screen at one time just maybe 30 -40 tops, im just kinda at a loss on how to figure this out any help would be great thanks       Can you rephrase your question   I can't tell if you want to know how to render a 3D map or render a 2D "isometric" style tile-based map. If it con ...Show All

  • Visual C# Data Binding Architecture Question

    I am confused about the data binding architecture. As an example, let's say I have 3 classes: 1) an Employee class, which contains some basic properties, such as Name, Age, etc. This class employs the INotifyPropertyChanged interface. 1) the main WinForm class, which contains a series of TextBoxes. These TextBoxes are bound to an instance of the Employee class, by listening out for the PropertyChanged event. 3) Finally, I have a user control which contains an employee search facility, allowing a user to search for and select a new employee. The order of events will go like this: user selects new employee within the user control, ...Show All

  • Smart Device Development [C#][VS 2005 Bete 2] creating & using a C++ in a C# project

    Hi, I try to create a unmanaged dll in C++ with visualt studio 2005 and the i want to use it in a c# project. My first question is hoaw to create a C++ (unmanaged) dll project for smartphone in visual stuido 2005. I create a Win32 projecdt>>dll project but i supopose it's only for deskop. After that i wrote my dll. .CPP #include "MyDll.h" // This is an example of an exported function. MYDLL_API int fnMyDll() { return 42;} .H #ifdef MYDLL_EXPORTS #define MYDLL_API __declspec ( dllexport ) #else #define MYDLL_API __declspec(dllimport) #endif MYDLL_API int fnMyDll(); Then i use it in my C# project [ DllImport ( "MyDl ...Show All

  • Visual C++ Simple Simple COM

    Hi! I do all my programing stuff in c#.. but i need some plain C or C++ code sometimes.. and i need to interact classes made from C/C++ to C#. As i heared this is done with COM`s Can anyone show the simpliest COM made in C/C++.. that has a Class named Test and a method int Add(inta, int b); that return the sum of them.. Please make it simplie as possible.. coz i`m not really good at C/C++.. COM things.. If you're starting with C#, then you would do better to build managed C++ dlls, which C# can import and use. If you must use COM, the ATL is a template library that is pretty much the only way to do COM. I'd recommend buying a book s ...Show All

©2008 Software Development Network