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

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

Sai A

Member List

akks
Mystret
Fistandantilus282303
TrojanMan
Narayan19
Marek Istvanek
Mateusz Rajca
JonathanMerrie
no_and_fo
kats
format1337
belm
ghe
Bo2n
Joannes Vermorel - MSP
laboremus
Ramachandra
vijayalakshmi
sam-pan
Tom Hallmark
Only Title

Sai A's Q&A profile

  • .NET Development What is remoting

    Hai I want to know what is remoting in .Net.., How can it be implemented. What is its usage thanks Ratheesh Remoting is a wonderful tool to build distributes systems (such as client/server, p2p, etc) I am currently building a remoting application at work. We have a database server, application server, and then each employee has their own machine (so many clients) Each user has a client application that connects to the server so they can do their normal day to day work. This way the client application does not have access to the database, they must go threw the server, and the server can then connect to the database. I am not sure if you play any online games, but lets use World of Warcraft as an example. You ...Show All

  • SQL Server How to create a assembly

    Hi, I have one ClassLibrary three member functions.I have the dll for this...Can some one please tell me how to create a Assembly in .NET. I need to create a simple private assembly with the dll that i have. Thanks Did you check out the CLR programmability samples See below link: http://msdn2.microsoft.com/en-us/library/ms160894.aspx You can use CREATE ASSEMBLY DDL to create assembly in SQL Server or use the Visual Studio GUI. See Books Online for more details. ...Show All

  • Visual Studio VS .net crashes when modifying crystal report

    I have an existing application that works. However, I have tried to modify some of the Crystal Report files (.rpt) by adding additional formula fields using the report designer. When I save the report or try to build the project, VS.net 2003 crashes immediately. I get the message to the effect that MS is sorry for the inconvenience, and would I please send them an error report. All to no avail. MS is still sorry the next 50 times it happens, but doesn't offer a solution. I don't know whether the problem is in Crystal Reports or in Visual Studio .net 2003. I think it's a .BUG that needs to be fixed .ASAP. What's happening here Ulrich ...Show All

  • SQL Server The product level is insufficient for component when executing package using C# code.

    Hi, I have created a Integration Services package that takes a table in a database, and transfers it to a flat file. This package has successfully run through visual studio 2005 as a .dtsx package, and given the output that I expected. However, now, I am trying to excecute the package (as xml) using C#, and I am receving this error: Error in Microsoft.SqlServer.Dts.Runtime.TaskHost/DTS.Pipeline : The product level is insufficient for component "Flat File Destination" (31). I do not understand how a working package would have this kind of error. Considering that it runs when I do not use C# code to execute the package means that I have SSIS properly installed, and I have the proper versions (or it should not execute ...Show All

  • Visual Studio Express Editions Insert Comments

    Hi all, I am new to Visual Studio Express and was trying to find out if there was a way that I could insert comments into any of my forms For instance, I just created a menu bar and wanted to say that when a user clicks on this, this new form field should popup. I am a visual designer and dont know to program using VS so I am trying to lay the app out so that a developer can take my design and turn it into a real working app. You can place comments in the code - by using a leading ' mark and then typing your comment after it. Each comment statement needs to contain this and you can add comments at the end of statement lines as well. You cant add comments onto the form designer - The only way ...Show All

  • Visual Studio Express Editions Voice Talking

    Hey, How can I make a program "talk" Like say "Hello, Welcome to this program." Anyone yes, that's what I meant but completely forgot the word for it! :-) I'm not sure if there is an SDK for it..let's see what we can dig up.. perhaps this http://www.microsoft.com/downloads/details.aspx FamilyId=5E86EC97-40A7-453F-B0EE-6583171B4530&displaylang=en ...Show All

  • Visual C++ Get Edit Box key pressed in Dialog's Timer event....

    Hi I want to do s simple task but it is creating a problem for me. I have one Edit Box in my T_Diag_WinDlg.cpp file. I have created Initials.cpp and Initials.h file to get a pressed character value. I can get that character in CInitials::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) method. But I want to retrive this character in my dialog form i.e. T_Diag_WinDlg.cpp 's Timer Event . Along with that character I also want some notification in my timer event in T_Diag_WinDlg.cpp file that key is pressed. I tried to declare a global variable at different files Initials.h, then T_Diag_Win.h (Main App Form). But it is giving some error. In short, is there any way I can get the key pressed in Edit Box to my Timer Event funct ...Show All

  • SQL Server Search for data inside a Recordset Destination

    Hi there, I need to develop a module and wondering what would be the best implementation... I get a list of files from a text file and store it in a Recordset Destination (object variable "CUST_INV_LIST"). I need to check that all the files in a directory are in the list. I can loop through the files in the directory using a ForEach container, but how do I check if it is in the CUST_INV_LIST recordset I thought about using another ForEach container to loop through the recordset, check if the physical file is equal to that row, if so set a flag, ... but it's neither elegant nor effective. Another option would be to use a Script Task to search for the physical file name in the recordset. I tried with the Data.OleDb.O ...Show All

  • Visual C# Versatility/Practicality of C#?

    Hey all, new to posting but ive been reading here for a few weeks. Anyway, on with my question (which probably has been asked in some way already)- How versatile is VC# compared to VC++ All I generally see are simple (*duck/cover* ) desktop applications. I've read that its possible to do game dev (including DX and OpenGL), but I have yet to find any engines done in C#. I have just looked at API's/engines/SDK's for games, but I have not gotten actually into manipulating/programming in them yet. I've done some basic reading on C# and I sort of want to get into it, but I plan on in a few years down the line working for Lockheed (or a defense contractor of some sort) or EA-Tiburon. I've been programming since I was probably around 10, ...Show All

  • SQL Server Understanding cube

    Hi, I am new to OLAP and was reading on this area on the web. I come across this statement like: "while the relational database (OLTP) updates...the OLAP database will not be updated. " I am not sure of the above statment. In that case the data in OLAP is not the latest and how is it going to be updated Thanks. Regards Alu On the partion tab i BI-Dev Studio you have different setting for MOLAP(lower or higher latency) that you can try. I think this is a continous processing of cubes when new records arrive. You can schedule cube processing in a job in SQL Server(SQL Server agent) or in a SSIS package. HTH Thomas Ivarsson ...Show All

  • Windows Forms Works 6.0 calendar

    Hello, I am trying to save all my Works Calendar info (appointments, notes, etc.) to a floppy disk. When I try to export this data, a message box says "Microsoft Works Calendar has encountered a problem and must close." Does any one know how I should fix this problem Tannko im afraid this is the incorrect forum I'm afraid I have to ask you to post your question into the appropriate communities/newsgroups: www.microsoft.com/communities Thanks ...Show All

  • Visual Studio Express Editions Flash screen timer

    Before I start my application in form1, I want to show a splashscreen for 3 seconds, how can I make it jump to the application in 3 seconds It partially helped me, could you give me a more exact text, the flashscreen has this name: RegioactueelSplashScreen.vb the main screen is called webfeed.vb ...Show All

  • Visual C# Overriding static methods?

    Consider the following situation: Two classes, B and C, share a lot of properties. They therefore both inherit from a common class, A. Of course we can call B(...) and C(...) to get a single B- and C instance respectively. On both classes I now want a static method, GetAllInstances(), that returns a List of all possible instances of the class. That is: The static method B.GetAllInstances(...) should return a List of all possible B-instances and similar with C. The code to produce all possible instances are very similar for both B and C and only differs on simple parameters, say a string named myDatabaseTableName. Therefore it is obvious to implement GetAllInstances() in the base class A and let it get the myDatabaseTableName property from ...Show All

  • Visual C++ CEDIT Base Class

    Hello all, It would seem that the Class Wizard wont give me the option of creating a new class with the base class of CEDIT. CEDIT does not appear in the pull-down. Which version of VC++ are you using You are talking about CEdit from MFC Did you create an MFC application and did you choose to add an MFC class CLR or ATL don't have CEdit. -- SvenC ...Show All

  • SQL Server Backup hangs in wait-state MSSEARCH

    I'm experiencing a very annoying failure when trying to do a backup - I hope you can help where others (including me) have failed. The setup is a SharePoint Portal Server 2003 version 11.0.8126.0 running on Windows server 2003 Standard edition Service pack 1; it has a SQL-server 2005 version 9.0.2047 running on Windows server 2003 Standard edition Service pack as a back-end. When I issue a backup of the SharePoint database XXX_SITE which holds round 4 gb. of data (mainly documents) the backup process hangs with a Wait Type 'MSSEARCH', it makes no difference whether I issue it as a single job, or through a maintenance plan. I tried to stop the MsSearch service on the SharePoint-server, and disabled the Full-Text search on the data ...Show All

©2008 Software Development Network