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

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

Kiranvukkadala

Member List

DBass63
yogaboy
beelzeboris
LK440
Holy Eggplant
CMarc
RobertP2
justinjosephsmith
planedownstairs
Andy_1979
Jaden
nandinho
Jed Atreides
efetty
Boris L
liujj_xujj
bigbrains
Steve4125
Darian Miller
.NetDeveloper
Only Title

Kiranvukkadala's Q&A profile

  • Visual C++ Question about interface method and implementation

    Hi All, I'm trying the Visual Studio 2005 Beta 2, especially for C++/CLI implementation in VC++.  I was wondering if someone could please help me with a question that I have. Any suggestions would be greatly appreciated. I've defined an interface like this: public interface class IMyInterface {     void TryAndTry(); }; and a class implementing this interface ref class MyClass: IMyInterface { public:     void TryAndTry()     {         Console::WriteLine("DONE");     } }; I've a test program that simply creates an instance of this class. When I com ...Show All

  • SQL Server Guids as primary keys

    Is it a good idea to use Guids as primary key. What is the impact on performance. Guids are random by nature that may have an impact on writing clustered index. Any comments or suggestions Actually, (and you're not the only one ni the forum to make this mistake) a GUID in SQL Server is 32 bytes. MS Access uses a 16 byte GUID, but for replication only. As far as using a GUID for a primary key, I'm working with a database that has 125M+ rows and a GUID defnied as the PK. The performance is horrible. I count this as one of my worse decisions. If you truly need a globally unique identity, then by all ...Show All

  • Visual Studio Express Editions Pass on variables?

    In windows form application I made two forms... One is the dialog thing and one is the main form... I made it so that the variable "selectedPath" equals a certain thing... Then I need to confirm the path... and label3 is placed in the dialog... so when I type in: label3.Text = selectedPath   it says that the variable "selectedPath" is not defined... How can I make it so that the main form passes on the variable "selectedPath" to the dialog Thank You very much Keehun Nam yes, you are correct in the last name occidentals! Thank You for your kind reply! Now I can get it to work in full Thank You! Keehun Nam ...Show All

  • .NET Development Delay

    What command in C# make a delay in program (like Sleep() in C++) What are you trying to achieve with the Sleep Although, you can sleep the current thread via Thread.Sleep, doing this on the main thread is typically a bad thing as this will prevent Windows messages from being processed, and to the user it will seem like your application has locked up. If you are using this in a Windows Forms application, it is probably better to use a Timer class. ...Show All

  • Visual Studio Shape inside a shape

    Is there a way to put a shape inside a shape. I would like to put a shape inside a shape the same way as creating a compartiment for attributes.  Is it possible Example : Having a Square shape  I would like to put inside the square a circle or a roundedrectangle in some way that allows me connect to any shape in the diagram. Thanks Luiz Ricci   Luiz, am I correct in my understanding that the functionality you're trying to implement would allow to drag & drop the nested small shape to another shape and this drag & drop action would start a creation of connection on the diagram If that's the case, yo ...Show All

  • Microsoft ISV Community Center Forums experiences with MS software testing?

    hi, just wondering has anyone done microsoft ISV software tests   i'm a one-person ISV and i'm interested to hear from others who have been through the testing process.  i've been on the ISV empower program for the last 18 months and i'll be taking my tests shortly.  i intend to apply under the "platform" tests, doing the windows client test, and web services + .net framework.  i read the instructions from the testing company VeriTest and it sounds very basic to be honest... don't crash the system, don't delete files without permission etc.  etc.  i was expecting my source code to be FxCop'd but it see ...Show All

  • Windows Forms PropertyGrid internals

    Hi! Please, help me to exchange "Name" and "Value" columns in PropertyGrid for proper localization for right-to-left languages.  If there is any possible way to do that - or - If I can somehow access ListBox, which is inside PropertyGrid object Thanks ahead. ...Show All

  • Visual Studio Help with formula

    I have had several reports dumped on me and I need to get them integrated into a web based, .net, application. I am using VS.NET 2003 and Crystal Reports for VS.NET 2003. So far, I have been able to change the datasource so that it points to the database on the server. I have created an ASPX page that has a cr viewer. This points to the .RPT file. I can see the file in design mode. When I run the report I get the following error: Error in File D:\Projects\Cole Group\TheColeGroupWeb\ConnsInvoice.rpt: Error in formula <Text28>. 'Dim strName as string ' A number, currency amount, boolean, date, time, date-time, or string is expected here ...Show All

  • .NET Development SqlDateTime Overflow Error

    I'm getting SqlDateTime Overflow Error when I try to INSERT a DateTimepicker.Value.ToShortTimeString (e.g. "10:57 PM") into my Sql 2005 database column (type nvarchar50). It used to be a Date/Time type column but I changed it. I changed it in the db, I changed it in the dataset designer but still the same error. How can I make Visual studio forget it was a Date/Time column and allow me to store 10:57 PM as a string Where else do I need to change/remove the Date/Time setting Thanks for any help. Of course it does (when using strong typing ) and it is a good thing. Otherwise you never know the ty ...Show All

  • Windows Forms custom textbox that draws the Text highlighted when the control is disabled.

    Hi folks, I have a custom textbox that draws the Text highlighted when the control is disabled. And here is the code snippet that I have used.However,the TextAlignment property does not change to center and right when property is set.It always seems to show the default alignment. public class txt:System.Windows.Forms.TextBox { public txt() { this.SetStyle (ControlStyles.UserPaint ,true); } protected override void OnPaint( PaintEventArgs e ) { Brush b = new SolidBrush(this.ForeColor); e.Graphics.DrawString(this.Text, this.Font, b, 0f,0f); } } RightToLeft is also not working.Does anyone know how to proceed furthur.Since I ...Show All

  • SQL Server Cannot run job created by SMO

    I've create a SQL Agent job using C# SMO to process an Analysis Service Database (see code below).  When I tried to start job from Management Studio, I get the following error message...any ideas TITLE: Microsoft.SqlServer.Smo ------------------------------ Start failed for Job 'Schedule Job OLAPProj'. For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.1314.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Start+Job&LinkId=20476 ------------------------------ ADDITIONAL INFORMATION: An exception occurred while executing a Transa ...Show All

  • SQL Server Fact table load - will receive 31968 rows vs. will receive 52428 rows

    I am getting different performance results when importing two different fact tables, and I'm wondering what I can do to tweak the other table so that it is faster. Both are using MSDAORA.1 OLE-DB source and SQL Server Destination. Both have 100,000 defaultbuffermaxrows and 10 enginethreads. Both are set to readcommitted. Can someone tell me what could be causing these two SSIS packages to have different results when reading from Oracle and writing to SQL Server ...Show All

  • SQL Server Unable to run "Management Studio(ssmsee.exe)" for Sql Express edition

    Hi, I have downloaded Sql Express edition for Yukon. After that I installed the UI - Management Studio (SQLServer2005_SSMSEE). I checked and I was able to open and work using the Management studio. Afterwards I installed some "SQL Server 2005 Express Edition Documentation and Samples" from the following link ... http://www.microsoft.com/downloads/details.aspx FamilyID=2adbc1a8-ae5c-497d-b584-eab6719300cd&DisplayLang=en#filelist Now after installing this, I am not able to access the Management Studio. I tried to uninstall and resinstall it , but it was of no help. Now when I click on the link of "Management Studio", it just do nothing. ...Show All

  • Windows Forms Multiple images on a TreeNode in a TreeView control

    Hello, Is it possible to have more than one image on a tree node in a TreeView control I need to display status of items in the tree and that would be the best way of showing it. I can't find any samples on this. Thanks! Amit Is there a way to force the TreeNode to display its state image on the RIGHT side of the Node image ...Show All

  • Windows Forms printout/report generation ideas

    A quick question to ask what people tend to use as a reporting tool for winforms application that DONT use a database as their underlying data storage. In the past we've tried various methods from writing our own routines, data dynamics, component one and devexpress and found all un-satisfactory in one way or another. What I'd like is to give the end users the ability to create a template in say word and drop in markers and then fill this in, however I don't want to impose a restriction that the end users machine has to have word installed. The type of data to be filled in would be things such as graphics and other sub report ...Show All

©2008 Software Development Network