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

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

santhoshbharadwaj

Member List

rose-man
Bhavz
SdwOne
jupzi
evdberg
rkonda
Acolin
EnergyCrush
Gideon Schlen
Payteq
Alexander Dsugan
Michael__H
Mitch Kupferman
Tara Nerurkar
timn_1
Steven Twitchell - MSFT
chris seddon
Usman Mahmood
Edward Zhou - MSFT
Saamy
Only Title

santhoshbharadwaj's Q&A profile

  • Smart Device Development SQL Query Tool

    Are there any tools that I can run sql queries against my server's database via my windows mobile device Yes for SQL Mobile and SQL CE (Query Analyzer tool), no for any other database. ...Show All

  • .NET Development Using partial trust client with fully trusted assembly

    I'm trying to understand what happens when a web client set to medium trust calls a fully trusted assembly in .Net v2.0.  I have a simple assembly that is signed with a strong name, and has been granted full trust using: caspol -af fulltrust.dll.  The fulltrust code has an assembly level attribute to allow partially trusted callers:  [assembly: AllowPartiallyTrustedCallers]. In most cases, this works as I would expect.  That is to say the web client can access methods in the fulltrust assembly without any problem.  However there is one case where it fails, and I'm trying to understand why.  The method in questio ...Show All

  • .NET Development Assembly class -- Cannot release its resouces after loadfrom

    I am using Assembly.LoadFrom to load an assembly check its version and copy a file over if its old. However, once I load an assembly that process has the resources to that file and the file copy fails. There is no Assembly.Close(), how do I release those resouces Assembly test = Assembly.LoadFrom("test.exe"); String ver = test.GetName().Version; // ....... some conditional logic checking version try { File.Copy(CurrentVersion, NewVersion, true); } catch(Exception e) { // will fail with file is in use by another process.. However, if I take out the Assembly.Loadfrom // and associated code it ...Show All

  • Visual Studio Team System Can I create new link types?

    In the OM I found the collection RegisteredLinkTypes. But it has the isFixedSize set to true. Is there someway I can add new link types How is the types RelatedLink and ExternalLink mapped to the these RegisteredLinkTypes I guess that "Related Workitem" and the type RelatedLink match each other. What purpose does the "RegisteredLinkTypes" serve And a bonus question :-) Can I link WIs together when I populate the project with WI at creation time (editing the project template) Thanks Hi J or gen, To clarify my response below, the OM and all the classes you mention is specifically the WorkItem Object Mo ...Show All

  • Windows Forms Problem binding a dataset to controls

    I am having the following problem: Columns in a dataset refuse to bind to the controls on a tab surface in my tabbed form. (The binding process works on the other tab surfaces.) When my code executes a DataBindings.Add statement on each control, the corresponding data for a particular column in the first record in the dataset is supposed to appear in that control. This fails to happen. Moreover, none of the controls visibly appear on the tab surface! I know the following to be true: 1. The data is there in the dataset. 2. Binding a control twice generates an error: VB.NET thinks the first binding was successful. 3. Manually mapping colum ...Show All

  • Windows Forms VS.Net 2005 Crashes on Overriding BackColor, ForeColor properties of User Control

    I'm working on a User Control and everything was working fine. Then i added code to override the FORECOLOR & BACKCOLOR properties and after that when i rebuild the solution and tried to add the control in a sample Windows Forms and the moment i do this the VS.Net 2005 IDE crashes and closes without any warning / error message as to what happened. This is very annoying. I have been trying to resolve this since 3 days but no solutions so far. Can anyone help me out in here...... -Jay With all due respect, i can understand why the CLR would behave that way, it makes sense. But the least that VS2005 shou ...Show All

  • SQL Server best approach

    I've been banging my head for a while now, and it is sore! :-P I'm a best practice/Microsoft approach type of person and want to make sure I do things correctly. I have a database, kind of like a forum. Obviously executing multiple queries in one "batch" (stored proc) would have an impact on the performance. Now, I would like to give a more detailed/specific error back to the caller (either by aid of error code or whatever) with such situations like... "EditReply" Edit reply takes the threadID, replyID and userID. Before actually commiting the changes, it needs to check: 1) does the user ex ...Show All

  • .NET Development Custom Culture ASP.NET 2.0

    I need some help about localization. I try to create a custom culture like ‘fr-Student’ because we want to stored picture and string text for student.  This sepcific culture is base on the ‘fr-CA’ culture.  So, I create a resx file for my default page page.fr-Student.resx in the App_LocalResources folder. Now, I want to create the specific culture.  So, I create a class CustomCulture (see on the buttom on the message).  In the global.asax file, on the Application_AcquireRequestState, I create the custom culture and set it to the current thread.  Doing this, I think it will initialize correctly the currentCulture of ...Show All

  • Windows Forms after doing sorting, was not able to get the sorted rows

    Hi ALL, Ive a datagrid with 10 rows, when I do sorting by clicking on column header, I was able to sort it properly, but I was not able to print the rows after sorting. DataView drv = ((DataView)(((CurrencyManager)( this .BindingContext[uDataGrid1.DataSource])).List)); I am using above code to display all rows after I sort. Thanks Mogli ...Show All

  • Windows Forms ADO.net (Yes I know) .GetChildRows() request

    Right now you can do a GetChildRows() and return all of the child rows as a dataRow[] array. This is fine for only one task that is common. I would have liked to see this returned as a DataTable but in lou of that, please pass on my request to have a Filter and sort properties that you can pass to GetChildRows() just like the .Selec ...Show All

  • Windows Forms Combobox as a Column header in datagrid???

    Hi, Is there a way of having a 'Column header' as a dropdown list 'Combobox' in a Windows Forms DataGrid. I know I can create an entire Column of type Combobox by deriving the DataGridColumnStyle but that does not solve my problem! One other possibility is to add the Combobox control at runtime to the Columns but then again I was not able to& ...Show All

  • SQL Server Non-English Characters in Table/Stored Procedure Names

    Could you tell me what are the limitations/concerns regarding Non-English characters being used for Table/Views/Stored Procedure Names I have been studying that very topic, my web site is built on 12 languages at present, and storing documents with UTF-8 encoding in SQL text fields works well. Its a bit tricky though with HTML tags embedded. ...Show All

  • Visual Studio Express Editions Databases!!!

    Hello, I have a problem trying to connect to an Access Database, the problem is that I want to make a working project without thecontrols, I only need the source code to do that. I would like to know about working with databases without using the bindingnavigator, how can i do that. I don't know, please help!!!:D I imagine the code in this article will cover what you want to know, there's lots of similar articles on that site as well: http://www.codeproject.com/vb/net/atcl.asp ...Show All

  • SQL Server Installing SQL Server 2005 Express

    Hi, I have installed the Visual Web Developer 2005 trial IDE. The installation also came with SQL Server 2005 Express. I have used other versions of SQL Server in the past and have been able to navigate the databases, use Query Analyzer etc. In the current (SQL Server 2005 Express edition) installation all I have is a program group named "MS SQL Server 2005">"Configuration Tools">"SQL Server Configuration Manager", "SQL Server Error and Usage Reporting" and "SQL Server Surface Area Configuration". My question is 'Have I not completed the installation ". How do I create databa ...Show All

  • SQL Server How to upload rdl programmatically

    Hey everyone I have a requirment here. I create a report that works fine in my local machine. But I want to keep this in a server so that every body can access it. How do I do that any clues please.How to set that what are steps to do that thanks but I have another question. now I need to create subscription for a report. there is a method called createsubscription. but I don't know the values of parameters. in msdn documents, it says extensionParams[0] = new ParameterValue(); extensionParams[0].Name = "ReplyTo" ; extensionParams[0].Value = "reporting@microsoft.com " ; for example. but how do we know that the name should be "Re ...Show All

©2008 Software Development Network