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

Software Development Network >> Pooja Katiyar's Q&A profile

Pooja Katiyar

Member List

Onlinemercenary
pinkybaby
hUmAnzZ
RenegadeMind
Stampede2
Robet
thussain
DavidThi808
Alexey Rokhin
Bijaya Kumar Pathia
SuzMSDN
JOSII
wencey
Kannan.B
Chris Honcoop
Walter30140
Hans Hunger
Andeezle
mobigital
skyliner34
Only Title

Pooja Katiyar's Q&A profile

  • SQL Server SELECT failed because the following SET options have incorrect settin

    I am getting the following error message: [-E-19:42] Message: SELECT failed because the following SET options have incorrect settings: 'CONCAT_NULL_YIELDS_NULL, ANSI_WARNINGS, ANSI_PADDING'. Verify that SET options are correct for use with indexed views and/or indexes on computed columns and/or query notifications and/or xml data type methods. I am using the following set options before the sp is created: SET ARITHABORT ON SET CONCAT_NULL_YIELDS_NULL ON SET QUOTED_IDENTIFIER ON SET ANSI_NULLS ON SET ANSI_PADDING ON SET ANSI_WARNINGS ON SET NUMERIC_ROUNDABORT OFF I looked on the internet and most of solutions were related to indexed views or computed columns. But I am neither u ...Show All

  • Visual C# Build Events Error

    Hi all trying to use the Build Events that are on the property page of the project I wish to copy a Directory so it's placed within the release folder when i compile. I write the following post build. [code] copy"$(ProjectDir) Reports" "$(TargetDir)" [/code] It works and my code complies but i get the following error message any one now why Error 1 The command "copy"C:\C# Work\ReportTest\ReportTest\ Reports" "C:\C# Work\ReportTest\ReportTest\bin\Release\"" exited with code 123. ReportTest Thanks!!! What I do is use a post-build event (be sure to only do it if successful) and then use XCOPY with the /E /Q /R /Y to copy all the files from the sou ...Show All

  • Windows Forms Escaping/Exiting an autocomplete/form

    When using autocomplete, i want to press escape key on the autocomplete to not use it, however escape key is set on the form, i.e. this is the CancelButton property. Is there a way of catching the key event when the user clicks the escape key for the autocomplete on a textbox, so that its possible to determine whether to close the form or to close the autocomplete dropdown This is ok for when focus is in the textbox, but the problem now is when first open the form or click away, can't close the form by using Escape key, as the forms cancelbutton is not set. ...Show All

  • Visual C# Compiling into .net module

    Is it possible in studio 2005 to compile my .cs file into a netmodule from the IDE itself This is what is happening: I clicked on add reference, browsed and found a tlb, prior.tlb. When I added it, it created a Interop.PRIORLib.dll into my debug folder also under the references tree. Now my question is how do I generate a netmodule out of my CS file now I tried /lib <<path of prior.tlb>> it wont work. Thanks! ...Show All

  • Windows Forms MDI: getting form handle affects child focus

    Hello: I have a MDI and multiple child forms. The only way to bring a child in focus and to the front of the other forms is by clicking on the titlebar. I have discoverd that this occurs only when I set a property on the form to the form's handle in the new() sub. It does not happen if I do this in the load event Why does this happen. here is the code for the child Public Sub New ( ByVal pParentID As Int64, ByVal pAppRule As Int32) ' InitializeComponent() ' Add any initialization after the InitializeComponent() call. FormID = Me .Handle ParentID = pParentID ApplicationRule = pAppRule End Sub Thanks for any help on this. smhaig Creating an ...Show All

  • Visual Studio Team System Adding files to system path at deployment

    Hi all, I've added and configured a new setup project to deploy my application. I would like to add a few of the folders in my application folder to the system path during (or after) installation on the user's computer. How can I go about this Thanks Are you talking about VS Setup project type This forum is to discuss setup issues with Team foundation server. You can try microsoft newsgroups at http://www.microsoft.com/communities/newsgroups/list/en-us/default.aspx or VS general discussion http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=25&SiteID=1 I think I have seen a menu to add items to system folder when I right click on folders list in setup project. ...Show All

  • .NET Development Pinvoke hangs when using .net remoting. Works otherwise.

    I'm attempting to use remoting to call into an umanaged DLL we have written to interface with an existing C++ program my company has written. However I have a problem I can't figure out. When this method is invoked directly on the server it works without any problem. Public Function remote_vb_sys_check() As Integer Dim intResult As Integer 'MsgBox("I'm here!") Console.WriteLine("vb_sys_check() executing.") intResult = vb_sys_check() Console.WriteLine("vb_sys_check() done.") Return intResult End Function However the line intResult = vb_sys_check() will hang if using remoting. This is the pinvoke definition we are using: Public Declare Function vb_s ...Show All

  • Windows Forms Window class name is not valid.

    I get this error about 75% of the time I try to debug in Visual Studio 2005.  I have reinstalled VS and applied the latest service pack with no relief.  It never happens if I run without debugging, only when I try to debug.   It happens with every project I create, it's not isolated to a single project or solution.  Any help is greatly appreciated. It’s always thrown on this line (or equivalent): public static void Main( string [] args) { Application .Run( new MainForm ()); } System.ComponentModel.Win32Exception was unhandled   Message="Window class name is not valid."   Source="System.Windows.Forms"   ErrorCode=-2147467259   NativeErrorCode=0 &nbs ...Show All

  • SharePoint Products and Technologies Need a bit of help getting My Site functionality to work

    Hi all. I have installed MOSS 2007 enterprise in a simple-server farm mode using a SQL 2005 backend. It appears I have everything else working except the My Site functionality. When I click on My Site, I get: Your personal site cannot be created because Self-Service Site Creation is not enabled. Contact your site administrator for more information. So then I enable Self-Service Site Creation for the web app that is hosting the My Site service and try again. This time I receive: There has been an error creating the personal site. Contact your site administrator for more information. I have the SSP set up so that the admin site is on one web app on a port other than 80, and the My Site is on a different web app at p ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. incorporating c# 2d drawing into the xna template

    I recently found the following link that describes how to make 2D primitives in C#: tutorial I would love to be able to use this in my XNA game, but the above example uses a Graphics object that it gets from the PainEventArgs of the form. However, the XNA template uses a GraphicsDeviceManager. Is there any way I could get the Graphics object of the xna game window so that I could draw the things in that tutorial GDI+ is not compatible, what your asking is impossible, just abstract the XNA drawing API into something that suits you. ...Show All

  • Visual C++ Functions in Seperate Files Problem

    I am still new to c++ and am trying to create a function in a seperate .cpp file from the main program. these are the errors that i am getting (amoung other similiar ones): cross.obj : error LNK2005: "public: __thiscall vector::vector(double,double,double)" ( 0vector@@QAE@NNN@Z) already defined in comp_rot.obj cross.obj : error LNK2005: "public: class vector __thiscall vector::operator+(class vector)" ( Hvector@@QAE AV0@V0@@Z) already defined in comp_rot.obj cross.cpp is my function: #include "stdafx.h" #include "math.h" #include "vector.h" using namespace std; vector cross(vector v1, vector v2){ vector v3; v3.x = v1.y*v2.z-v1.z*v2.y; v3.y = v1. ...Show All

  • Visual Studio error on sr1 update

    I have updated visual studio 2005 on an xp machine and am able to use sql server compact edition in my projects now. Everything works fine. I have tried to update vs 2005 on a server 2003 machine several times but it fails with the error code 0x643. Does anybody know what this is I have the same issue when I apply SP1 to VS 2005 Standard on Windows Server 2003 SBS. Do you ever try the solution in the SP1 download page "Under certain conditions when installing on Windows Server 2003 or Windows XP , a digital signature verification error can occur. Please see Knowledge base article 925336 for details and resolution" I tried it and it didn't work. Hope it is helpful to your case. ...Show All

  • Visual Studio HTTP Checkout - Possible Timeout Anomaly

    My team is encountering a strange problem when trying to checkin or add larger files to VSS 2005 via HTTP or HTTPS. The resulting error is always the dreaded: There was a failure uploading the URL.... although I don't believe that error indicates what the actual issue is. I've read what I think to be every post on the subject here and elsewhere on the web, and no situation matches exactly (others are simply an easy timeout misconfig or a permissions issue and nothing can be checked in.) It's not a permissions issue as all team members can checkin smaller files and large projects that contain small files-- as long as the file being checked in doesn't take more than 30-60 seconds (see below.) It's not a typical HTTP "tim ...Show All

  • SQL Server How to use Alerts

    I have two fields in my report(Start Date and End Date).Start Date should be earllier than End Date.Please help me how to use alerts. Ok I can't able solve this error."An error occured during local report processing.Error during processing of 'Validate' report parameter." ...Show All

  • Visual Studio Tools for Office How to make certain menu invalid or disabled

    I want to disable certain menu like " F ile->Print" or "File->save as" in Office Word. Does vsto can do this and how or is there any other technology can achieve this Thank you very much. Hi foreach (Office.CommandBarControl control in commandBar.Controls) { for (int i = 0; i < control.accChildCount; i++) { control.get_accChild... } } you can find menu's option what you want and set Enable = false; ...Show All

©2008 Software Development Network