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

Software Development Network >> Narasimha T.'s Q&A profile

Narasimha T.

Member List

Brs5tettba
AnthonyAM444
frazi
JeriC_hsk
R.J.
Rrstock
Hagop
NUMBSCULL
megamacy
MikeMoorhouse
Patrick Knocke
New2Avalon
jain_arun
kimcat
ddm
Tomas Floyd
Zhimao Guo
Wolfgang Rues
Kieran Mockford
phousley17
Only Title

Narasimha T.'s Q&A profile

  • .NET Development Mails that are being sent from smtpmail sometimes disappear...

    Hey all, I've been trying to look for similar problems all around the net, but I didn't succeed... Anyway, my problem is like that: I wrote a little command line mailer that tries to send a mail to a given address (a parameter to the command line) when certain events happen (if a batch file execution fails for example). The mail program works wonderfullu most of the times. But in some specific cases where it sends mail 3 times in a row (3 diffrent critical errors f.e) I get a variable number of mails (from 1 mail to 3 mails). So, it stills sends mail, but for some reason only some of the mails reaches the Exchange server, and as I said, s ...Show All

  • Smart Device Development Using ANT to build eVC projects

    Can someone please inform me on what is the best way to compile a project in eVC++ using ANT I don't know if anyone on this board has ever attempted this. I forked your message off of the other thread it was attached to and retitled it to give you a better chance of getting an answer. Thanks, Jeff ...Show All

  • Windows Forms Autosize listview

    Hi, I would like to autosize the width of the ListView columns. This code works from the outside of the control: foreach (ColumnHeader ch in prontoListView1.Columns) ch.Width = -1; ...However, I would like this to be done inside the control. Could someone please tell me wich method I should override to add this functionality  The derived control is inherited from a r ...Show All

  • Visual C# Convert 8bpp .gif file to 24bppRgb Bitmap

    Hi, I'm trying to convert using this code, because some future logic only accepts Format24bppRgb bitmaps. This seems to work for jpeg files, but gif files don't convert: viewable_img is still Format8bppIndexed after the Clone(). Any help would be much appreciated! Bitmap temp = new Bitmap (s); // Other logic only accepts 24bppRgb. if (temp.PixelFormat != PixelFormat .Format24bppRgb) { viewable_img = temp.Clone( new Rectangle (0, 0, temp.Width, temp.Height), PixelFormat .Format24bppRgb); temp.Dispose(); } ...Show All

  • Visual Studio Team System MSF X CMMI GAP ANALYSIS

    Hi members, I woud like about itens found in Gap Analysis did in MSF for CMMI. For example: Maintain Bidirectional Traceability of Requirements not exists activities for this SP. My Question is, All itens found in Gap Analysis will to resolve in final version. When MSF for CMMI final version will be avalible Thanks and regards Team Foundation Server, which includes MSF for Agile Software Development & MSF for CMMI Process Improvement, will ship in Q1 CY06. ...Show All

  • Visual Studio VS2005 + MyProject\licenses.licx Auto Checkout.

    Guys, Why is the VS2005 IDE contantly editing the Licenses.licx file when you go to open any form with user controls.  All our solution use an exensive set of user controls on all forms.  We have a base form which is inherited for all other forms in a project. (you know, stuff like control validation, gradient panels, custom lables, bla bla bla) When one developer wants to checkout and work on one form, they lock all the other users from editing any other form, because source control checks out the  licenses.licx file exclusively to that user. This is pure madness.   Most of the time you just wan ...Show All

  • Visual Studio Express Editions User Login Troubles

    Hi, I pretty new to all of this. I have followed the tutorial on http://beta.asp.net/guidedtour2/  and is working all ok locally. When I uploaded to IIS 6 on a Windows Server 2003 SP1 and tried logging in using login.aspx it gave me this error: An attempt to attach an auto-named database for file C:\Documents and Settings\Administrator\My Documents\Visual Studio 2005\WebSites\WebSite1\App_Data\aspnetdb.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. What solution(s) can I try to get the loggin script working If anymore info is required like the Stack Trace I will ...Show All

  • Visual C++ visual studio 2005 recompiles all

    Hi, I just installed Visual Studio 2005 (on an XP64). Visual Studio 2005 recompiles all files in the project everytime, regardless whether changes were made or not. I browsed through all options, but can't find anything related to this. Minimal rebuild doesn't do it. Is there something I'm missing Thanks. Has your system clock changed That can sometimes make the system think all your files have changed and need building. ...Show All

  • Visual C++ Resize managed array inside a function

    Hi, I'm having a little problem using managed arrays. It seems I can not resize an array with Array::Resize within a function. I wanted to do something like this (pseudocode): void manipulatearray(array<int> ^test) { // in reality this function processes some data (unknown how much elements, taking 10 for the example) and fills the array with it System::Array::Resize (test, 10); for(unsigned int i = 0; i < 10; i++) test[ i ] = i; } void mainfunction(void) { array<int> ^a = gcnew array<int>(1); // to avoid a 0-length array manipulatearray(a); unsigned int n = a->GetLenght(0); // ...Show All

  • SQL Server .Net framework 1.0, SQL ce 2.0 and Windows mobile 5.0 work together?

    Hi, Does anyone know if I have created a replication using SQL Server 2000 (sp3a), .Netframework 1.0 with Pocket pc Sql Server CE 2.0 will work or not in pocket pc windows mobile 5.0 environment (with the .netframework for pocket pc(netcf.core.ppc3.arm.cab) and sql ce file (sqlce.ppc3.arm.CAB) installed in pocket pc) I have it working in pocket pc Windows mobile 2003 version. But, after I tried to install the exact same cab files and system into Windows mobile 5.0, the replication fail. Anyone has any idea Hi AngelaC, Same CABs do not work for both PPC 2003 and PPC 2005. ...Show All

  • SQL Server How to address hierarchies with different # of members in lowest level

    I have a cube with 2 hierarchies for Geography dimension 1) Standard Hierarchy: Levels (ALL-> Group -> Division -> Region -> Country) 2) Custom Hierarchy: Levels (ALL -> Country) The lowest level is the same in both hierarchies (COUNTRY), but I have different # of Countries for each hierarchy. I will have 3 possibilities for the Country Level: 1) Countries that are in both hierarchies 2) Countries that should be only in Standard Hierarchy 3) Countries that should be only in Custom Hierarchy Right now, Analysis Services 2005 is creating a "Unknown" parent for the countries that don't have pare ...Show All

  • .NET Development Creating a remoting poxy for interface with generic types

    I've created a class that inherits from MarshalByRefObject. This class has methods that have generic types as arguments and return types. The remoting object is hosted by a windows service. I'm aware that I can't use SOAP with generics, but the TCP channel appears to work. What I want to accomplish is to create a proxy class like the ones soapsuds.exe create. That way I will not have to put the entire server application on the client, only the proxy. But the soapsuds.exe tool doesn't appear to support generics - not event with the -types argument. Is there a way around this, or will I have to put the full assembly on the client side Thanks ...Show All

  • Visual C++ VC++ 2005 Beta2, Mixed types not supported

    I just switched from Beta1 to Beta2 and try to recompile the code I have written with Beta1. In a managed class I get a new error: error C4368: cannot define 'PrevMinX' as a member of managed 'MyNamespace::MyPlot': mixed types are not supported The error was given for the following class member: double PrevMinX[5]; Why do I get this error now -- Helge Hi, Definitley, you cannot have a native array of doubles as a member of a managed type. It's because native arrays are allocated on the native stack whereas managed objects are on the managed heap, hence creating a problem. Remember that managed types are& ...Show All

  • SQL Server Excel problem

    I am trying to import data from sql server to excel. it creates a new worksheet with name 'mytable' and excel file also has 3 sheets (by default as well). when package is executed, Data gets transferred first time. When I try to execute package again it gives me an error - that Table 'mytable' already exists. To solve this I added another task before it creates the table ('mytable' sheet in excel), where I drop this table with the statement " DROP TABLE 'mytable' " (Connectiontype is EXCEL) it works now, but I need to have this table 'mytable' in the excel, when ever I need to execute the package. Is there any statement like in sql where I c ...Show All

  • Visual Studio Team System Timeout during unit test

    Greetings. I've recently been introduced to VSTSs integrated unit testing abilities, and quickly decided to adopt them and write an extensive suite of tests for some software component or another. Much to my regret, however, I soon stumbled upon a rather annoying problem as some of my tests take a relatively long time to perform. I'd tell you how long, but unfortunately I can't quite tell since the testing framework decides to terminate the tests on its own account with the following message: "Test on Agent, X, exceeded execution timeout period" where X is the agent on which the test had run. I would expect that nasty little timeout to ...Show All

©2008 Software Development Network