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

Software Development Network >> Rani M's Q&A profile

Rani M

Member List

Susheil
teddy_hk
nashvilledan
DaveFinley
Lan Lan
Phil James
Terran Cheung
Weifen Luo
stoneyowl
Divyesh Shah
Fabian Goncalves
Birk
Greg WCAS
KenCubs
Jean Philppe HERLOIN
wackoyacky
caroline_h
Tatworth
darzil
bslim
Only Title

Rani M's Q&A profile

  • Visual Basic ArrayTypeMismatchException with generic arrays

    In the following example a System.ArrayTypeMismatchException with message "Attempted to access an element as a type incompatible with the array." is raised in the Test2 method when I attempt to get the element of the array (i.e., arr(0)).  Is this a bug   If not, can somebody please explain why Test2 is invalid whereas the equivalent non-generic version (i.e., Test1) is valid Thanks, Lance Public Interface IClass1 End Int ...Show All

  • Windows Forms DataGridView, Binding Navigator, and Multiple BindingSources

    I have a form with a Binding Navigator, DataGridView and two BindingSources. One bindingsource is bound to the bindingnavigator and other controls on the form (i.e. textboxes, comboboxes, etc.). The other bindingsource is the data source for the datagridview. The datagridview displays records filtered from the bindingsource (based upon the text in one of the comboboxes). Here's the problem: If I put the code to filter the bindingsource in the ...Show All

  • SQL Server How to encrypt database in SQLServer2000, please help me, thanks

    I have 2 questions: 1. How to encrypt data of database in SQL Server 2000 Someone can't see true data if without password or something else. 2. If i have 2 database . All of them have same table, structure, ....How to update or insert or change in the second database when i update or insert or change in the first database automatically Thank you very much. Oops, I didn't realize you were referring to SQL Server ...Show All

  • .NET Development Can't get a new table into my dataset

    Can't get a new table into my dataset I created a new table Person in my Access 2003 database.  However, I can't get it into my dataset. I tried refresh, the designer, and confiqure with the wizard, however the table Person doesn't appear. Is this a bug Or am I just being an idiot, as usual dennist Paul, <g> A copy of the .mdb was in the body of the project.  How I missed it I don't know. I ...Show All

  • SQL Server Microsoft.SqlServer.Management.Smo Backup and Restore classes

    Hi, Hopefully someone out there will be able to help me with this question. I'm trying to setup my C# program to use the Backup and Restore classes to perform backups and restores on an SQL Express 2005 database. From the documentation I've read... it seems that when you go to restore the database, it's a good idea to backup the current transaction log. But when I do this using the Backup.SqlBackup method I get an error saying that no data ...Show All

  • Visual Studio Team System Rule Interface

    HI...I'm trying to check that an interface name begins with the letter "i" using the following code: public override ProblemCollection Check(TypeNode type) { Interface interfaz = type as Interface; if (!(type is Interface)) return null; if (!(type.Name.Name.StartsWith("I"))) { Problems.Add(new Problem(new Resolution("Interfaces deben empezar con 'I'"), type.FullName)); } retur ...Show All

  • Software Development for Windows Vista how to implement human workflow in asp.net

    Hi. I am developing one application that is in asp.net. Here, I am using WWF beta 1.0 with vs 2005 beta 2.0. The application is login based. A "user" can log in to site and raise a request for a resource. After this , at any thime, a "reviewer" can log in and review the request and approve it. Then "QA" logs in and can aprrove the requset. I implemented this with sequential workflow. I am starting each time ...Show All

  • Visual Studio Team System How to test Smart Client Windows Forms using VS 2005 Tester

    Is there a way to test a Smart Client Windows Forms application (one that is not invoked through IE) Or: How can we test web services directly from VS 2005 Tester without using IE as the interface Thanks, Burkhard   Microsoft Partners such as Compuware and AutomatedQA will offer integration packages for functional UI testing - TestPartner 5.4 from Compuware, TestComplete 4 from Automated Q ...Show All

  • Visual C++ Problem Using ExitWindowsEx

    Hello, after getting an answer about how to close the system, I have a different problem. I wrote the following code: #include "stdafx.h" #include <windows.h> int _tmain( int argc, _TCHAR* argv[]) {     ExitWindowsEx(EWX_FORCE,     SHTDN_REASON_FLAG_PLANNED);     return 0; }   I get the following errors: >error LNK2019: unresolved external symbol __imp__ExitWindowsEx@8 refer ...Show All

  • .NET Development Multiple FTP commands via one connection

    Another FTP question.  :) What's the best way to use the 2.0 Framework to send multiple FTP commands during one connection The FtpWebRequest class seems to make a separate connection for each command.  I'd like to connect/login once, send two or more FTP commands, receive the response to each, then disconnect.  Karen   mahjayar wrote: For that request where you want to close it you c ...Show All

  • Windows Forms Grid questions

    Hi, Im making a grid for windows forms , and i need some feedback. If anyone have the time , could you please answer some of the questions located at: http://www.compona.com/gridfeedback.txt[^] (its about 20 grid related questions) //Roger  Is there a ...Show All

  • SQL Server Sql Server 2005 Client Configuration Manager

    How do you install the Sql Server Configuration Manager for clients Can't just copy the SQLServerManager.msc file to System32 - won't run - must have dependencies. ...Show All

  • Visual Studio Team System How to: Add Data Binding to a Web Test

    According to this walkthrough: http://msdn2.microsoft.com/library/ms182546(en-us,vs.80).aspx I should be able take values from a Table Column and use them as values for QueryString Parameters. In my case, I want to use them as Form Post Parameters instead of QueryString but either way, I get the same result: First, When I add the Data Source, the thing says something like 'Invalid Object' when I try to run the test, My data Source is Adve ...Show All

  • Visual Studio Tools for Office Infopath project under source control/tfs

    In the following scenario, working with VS2005, TFS, InfoPath and Biztalk 2006 in one solution, the following issues occur: - All files (.xsf, .xsd, etc) needs to be checked-out if you only want to edit the Layout of the infopath form - It is not clear how to share the XSD between the InfoPath project and BizTalk (I did not find a way to 'link' the xsd like in regular VS projects) - I find it more convenient to edit the schema in vs 20 ...Show All

  • SQL Server Flat File Connection with quote encapsulated fields

    I’m trying to evaluate SSIS for managing the import of files that have quote encapsulated fields, but not all fields are encapsulated. The fields are encapsulated to allow for embedded commas. For example: AAA,"BBB",CCC,"DDD","EEE","FFF",GGG,"HHHH",IIII AAA,"BBB",CCC,"DDD","EE,E","FFF",,"HH,H",   When importing this file I have to alter the delimiter from column AAA to deal with the quote from column BBB like this: {,}" And ...Show All

©2008 Software Development Network

powered by phorum