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

Software Development Network >> sangeetha shanmugam's Q&A profile

sangeetha shanmugam

Member List

nabeelfarid
Guenter
nbn
Will Merydith
JasonG271009
NetPochi
Geo725
MadGerbil
ogagnol
TimothyForde001
Cout60039
John Paul Cook
JDev
Robert Hernandez
WolfgangEngel
Jordy Boom
RTIS1
Ray Hayes
Nfrf
Ramesh Nikam
Only Title

sangeetha shanmugam's Q&A profile

  • Windows Forms need help in RowFilter of windows forms datagrid

    Hi, I need to filter a row with does not have firstname as 'John'. I tried using <> and NOT LIKE but nothing worked. gridView1.RowFilter("FIRST_NAME NOT LIKE 'John'"); and gridView1.RowFilter("FIRST_NAME <> 'John"); but both didnot work. Kindly help me in solving this problem. Thanks Gunasekaran. I try the following ,and it works well: private void Form33_Load( object sender, EventArgs e) { dt = new DataTable ( "test" ); dt.Columns.Add( "id" , typeof ( int )); dt.Columns.Add( "name" , typeof ( string )); dt.Columns.Add( "description" , typeof ( string )); for ...Show All

  • .NET Development access denied while writing file

    Hello I have a question. I 'm working on a small ftp client program. But when i try to download a file to a path for example c:\temp i get access denied. How can i solve this no.... you may say your code is perfect but it maybe full of bugs and in order for us to help you, please supply some code - perhaps you are writing the file incorrectly or something who knows until we can see the code, nothing much we can suggest. regardless of running it under the admin account or not, if your directory has readonly permission, you can't write to the folder at all. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Whos using TorqueX, Who isn't?

    Just curious: 1. Are you using TorqueX or not - and why or why not 2. If you are using TorqueX are you also using TorqueX Game Builder and why or why not I'm experimenting with both but haven't decided if its the way I'm going to go yet. I'm not using TorqueX yet, but it is something I plan on looking at at some point, just to see what's it's all about. I'm not really planning on using it regularly. Being able to make my 2D games so rapidly with XNA is already so impressive for me, I'm not sure I would be able to handle the shock to my system to see it made even easier. So I'm not using TorqueX so that I live longer. ...Show All

  • Visual Studio Tools for Office Save Excel Data to Sql Server Database

    Please help! I have a VSTO Excel project that contains a spreadsheet. The spreadsheet contains several sheets that are populated from various sources. I need to save the values from one of the sheets to a sql server database table. The spreadsheet layout exactly matches the database table layout. I will always do an insert, never updates. Any help is greatly appreciated. TenDollars ...Show All

  • Visual Studio Team System Problem installing Foundation

    Installation fails with the message "Windows SharePoint Services is currently using MSDE, but Team Foundation Server Requires Windows SharePoint Services to use SQL Server 2005. To proceed, you must exit setup, uninstall Windows SharePoint Services, and then uninstall MSDE. Then reinstall Windows SharePoint Services in accordance with the Team Foundation Installation Guide, and run setup again." I am only running SQL Server 2005. I cannot find any evidence that MSDE is running or installed. I am really stuck. Any help is GREATLY appreciated... You may want to try uninstalling Windows Sharepoint Services and then reinstalling according to the instructions in the installation guide ...Show All

  • Visual Studio 2008 (Pre-release) Extending DataContext?

    Is it or will it be possible to override the internals of the DataContext I want to alter the object creation implementation in the datacontext to create subclass proxies instead of just instancing the entity types directly. However DataContext seems very black boxish. Im well aware of the claims that non virtuals execute faster than virtual methods etc.. but in this kind of scenario where big chunks of data is fetched from some sort of datasource , those few nano seconds will be impossible to notice.. so that will hardly be a valid argument. Ive seen that there is a "services" collection inside the datacontext , but that also seems impossible to access from the outside. it would be really really lovely if such things were expo ...Show All

  • Visual C# How to copy a char[] array to a string?

    Hi! anyone knows Is there a method or function in c# to copy to a char array to a string I want to implement it like this: // define somewhere; string str_A=""; char[] char_B = new char[16]; //value it in otherplace; char_B="fdfdfd"; str_A=char_B;//error thankyou! You can use the string constructor that takes a char array: char [] chars = new char [] { 'a' , 'b' , 'c' }; // Create a new string instance that takes the char array. string s = new string (chars); ...Show All

  • Visual C# Get the computer Id

    I want to get computer id that always be uniqe even if windows of that computer have been changed. please tell me how and where I can find something like this. Code sample is helpfull too. You need a way of retrieving hard disk Volume ID. I know that when i need such thing i did with api function. There are many articles that shows how to do it. Here is link http://www.eggheadcafe.com/articles/20021019.asp  that   i find in 10 seconds. This is used very offen for creating better security of your application instalation, because it will work only on that hard drive. ...Show All

  • Visual Studio Tools for Office Create serial letter from a template

    Hi, it is time for a new question: I'd like to create a serial letter using vb.net. Therefor i made a template with bookmarks. Now I like to create a serial letter using the template n-times. At this time I use Word.Documents.Open, word.Selection.GoTo and word.Selection.TypeText for open finding and replace the bookmark - but only one time. What is the correct way to make one big document including n-times my singel document as a new site. Can anybody give me a hint. I'm new in office integration Thanks Stefan Hi Paul Is this supposed to be specifically with VSTO, or just general Word automation Normally, I'd associate this kind of thing with general Word automation, which means you really should be ...Show All

  • Visual C# Calling methods of a class without creating an instance of it

    Hi, I'm sure this probably has been answered before, but somehow I couldn't find it, so really sorry about that. But how do you call methods of a class without having to create an instance of it I mean, in my project I have something like: public class FileOperations{ public void read_config_file(...) { (...) } } And I want to call the read_config_file(who doesn't depend on anything but the filename and a property where it'll write the config values) without having to do: FileOperations fileOp = new FileOperations(); fileOp.read_config_file(); I was a poor (poor like in noob) Java programmer but I used humm I believe it were static methods in abstract classes, something like that, don't re ...Show All

  • Windows Forms Just-In-Time debugging Windows Forms

    Hello, In the MSDN documentation (How to: Enable Just-In-Time Debugging for Windows Forms) it is said: In addition, Windows Forms created with C++ must have the DebuggableAttribute set in a .config file or within their code. It is well ducumented how to put the DebuggableAttributein the code, but I found nowhere how to set it in de .config file. How do you set this attribute in the .config file Or is it an error in the documentation Thank you for your help, JF Hogue Hi, Please go through the below link. This should be what you are looking for. It states how to set it in the New Linker Switches section. http://msdn.microsoft.com/msdnmag/issues/03/03/VisualCNET/ Thank you, bhan ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Two gfx-cards in parallel ?

    Hello, i have a general question and hope somebody can give me an answer. Is it possible to run two instances of a D3D-programm on two different graphics-boards the same time The full-screen output of each program should be displayed on one monitor each - there should be two monitors connected to the two graphics-boards. The boards are two GF8800 GTX, built inside an SLI-Motherboard. Thanks, Enrico Zschau When SLI is active, DirectX recognizes them as one adapter. That's what SLI is for; using them in unison. I think you'd have to turn off SLI to do something like that. Also, one graphics card can handle multiple monitors on its own. ...Show All

  • SQL Server ODBC Excel Driver

    dear all: I used ADO to connection excel file(excel2003); below is the source code: Dim Conn,Driver,DBPath,Rs, defaultPath defaultPath=Replace(xlsFile, "\VQAUser.xls", "") Set Conn = Server.CreateObject("ADODB.Connection") Driver="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & xlsFile & ";Extended Properties=""Excel 8.0; HDR=yes;"";" Driver="DBQ="&xlsFile&";DRIVER=Microsoft Excel Driver (*.xls);UID=admin;UserCommitSync=Yes;Threads=3;SafeTransactions=0;ReadOnly=0;PageTimeout=5;MaxScanRows=8;MaxBufferSize=2048;FIL=excel 8.0;DriverId=790" Driver="DRIVER=Microsoft Excel Driver (*.xls);DriverId=790;DefaultDir="&de ...Show All

  • SQL Server Strict Transaction Nesting Bug with CLR

    Dear all, I am constantly running into this error when calling CLR functions from triggers (even when the triggers are CLR functions themselves): The context transaction which was active before entering user defined routine, trigger or aggregate "[name of CLR sp]" has been ended inside of it, which is not allowed. Change application logic to enforce strict transaction nesting. However, there is no cyclic nesting going on here. In fact, the error only appears when the CLR function is writing to the database. Only executing SELECT statements inside the statements doesn't freak out the SQL server (2005 SP1 in my case). I am not ending any transaction at all. This error shows up in many places: as exceptions from ASP.NET web pages, ...Show All

  • Visual Basic MessageBox.Show doesn't works in Win2003 ED. Why?

    Hi everyone, Primary platform is Framework 2.0. We're suffering an odd behaviour for an UI code. We've built a Windows Service by means of VB and everything goes fine. OnStart method and another ones we've defined a MessageBox.Show function in order to show errors or whatever to the users but unfortunately they don't see at all. Curiously it happen only in our server (Windows 2003 Enterprise Edition) no in a Windows XP Pro workstation. Does anyone ever faced this issue According to BOL is not recommendable to show UI in that kind of projects but "only not recommendable". Thanks for your time, I think you'll find the issue is more to do with windows service than the OS - messagebox works ...Show All

©2008 Software Development Network