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

Software Development Network >> Dinesh Reddy N Y's Q&A profile

Dinesh Reddy N Y

Member List

PatriotB
pawel.krakowiak
henton
zinc
Agent00
IrenaP
Moje_pink_Squirrel
adebarnecutt
mark drury
dlausch
mafandon
Sreraman Narasimhan
Rob Relyea
Jeff Levinson
Smartphone Newb
fireparser
rfmfix
Mohamed Hussein
mingming
Michael1956
Only Title

Dinesh Reddy N Y's Q&A profile

  • Windows Forms Installer cutom action?

    I've created a custom action that point to a install class I've created. There is no code in the install class yet. When I run the depolyment project on the destination machine it gives me an error at the end of the install, "Cannot find file C:\test\test_action.InstallState". Am I not including something that the custom action needs in the installer When you have an installer class you must include a call to it during the install phase.  It creates the file it uses for running other actions.  The code that does this is included in the base class so you do not have to impliment anything. ...Show All

  • Visual C++ .Net 2005 An internal error has occurred in the compiler...

    Hi I have around 250 projects in my solution and if I clean and start the build I get the following internal error for atleast 3 to 4 projects. If I compile the same projects once again, the error goes away. Is there a solution for this. I need to have consistent error free compilation for my projects. Otherwise .Net 2005 is unusable. xxx.h : fatal error C1001: An internal error has occurred in the compiler. (compiler file 'f:\rtm\vctools\compiler\utc\src\P2\main.c[0x10BCC81B:0x00000030]', line 182) To work around this problem, try simplifying or changing the program near the locations listed above. Please choose the Technical Support ...Show All

  • SQL Server SQL Server and Windows Update

    I've read in various places that SQL Server 2005 will be part of the Windows Update process, available at http://update.microsoft.com/ . I have SQL Server 2005 Developer edition installed on both an XP machine, and a WS2003 machine. However, on neither of these machines can I see "SQL Server 2005" as a product on the left (under "Select by Product"). Even when there are no products to install, there should still be an entry (eg. Windows XP (0) ) appears when there are no OS updates to install. My question: When/How will SQL Server 2005 have this support and/or what do I need to do to enable it SQL Server 2 ...Show All

  • Windows Forms Possible MDI Bug in .Net 1.1

    I have created a MDI application with 2 childforms using VB.Net and VS 2003.   Each childform has some textboxes and a few buttons.  The textboxes have a  keypress handler that checks for the Enter key being pressed and then  converts it to a tab key so that the next control gets the focus. The event handler works fine when you first open&nbs ...Show All

  • Visual C# Threading in C#

    Hello Everyone, I have a tab application, which initially I made single threaded....I added a dll which has a form. Now when I change to a tab method in that dll gets fired and form comes up, which makes everything else unresponsive.... Whats the best solution to implement thread to solve that problem.... Secondly, I tried doing something this way..... namespace something { public partial class Some : Form { public Some() { } // Then here more procedures } // Here I created another class which fires the method from dll.... public partial class Test { public DLLFire() { } } Now If i ...Show All

  • Windows Forms help me

    when i try to display something after i selected date from the combo box which is of date/time data type , using Ms Access it reports error when i using this code sql=" select distinct from barcode where date_id=' " & cboDate.selectedItem & " ' " tablename- barcodecodeinfo fieldname - date_id , type - date/time data type combo box name - cboDate when i try this code sql = "selet distinct from barcode where date_id= ' " & CDate(cboDate.Text).ToString("dd/MM/yyyy") & " ' it takes only date , so it doesn't display anything how to change this on ...Show All

  • Visual Studio Team System could not access table 'tablename' in data source

    Hello, I have a simple login script which databinding the loginID and password from the database table and it is running perfectly fine from webtest, but when I ran this same script from generated code I ran into this error message... "could not access table 'Tablename' in data source. - Any ideas why it is failing from generated code Thanks so much for your help. Hi Bay, Most likely your user id and password that access your databound database is missing from the DSN connect string.  When you generate the code from a webtest, the code generator intentionally removes any userid and password information.  If you put that info ...Show All

  • SQL Server Disable event handlers not valid for sub packages

    I have followed Jamie's excelent article on logging to a table to follow the execution of a package. I have a master package; with an OnPostExecute event handler, and a looping sub package that is called from the master. The problem is that ALL steps from the sub package are going through the master's event handler whether the disable event handler is set to true or not. (including any event handler steps in the sub package) Is this a bug or an anomally for the sub/master relationship Interestingly enough, when there are Onpostexecute event handlers in both packages the sub steps gets logged twice, once as part of the master ...Show All

  • SQL Server Is it possible to execute a container regardless of the checkpoint file?

    I have a situation where I need to make sure a task executes regardless of whether the package starts from a checkpoint or not. Is this possible Here's the scenario: I have a package with 3 tasks {TaskA, TaskB, TaskC} that execute serially using OnSuccess precedence constraints. The package is setup to use checkpoints so that if a task fails the package will restart from that failed task TaskA is insignificant here. TaskB fetches some data and puts it in a raw file TaskC inserts that raw file data into a table. Problem is that the insertion violates an integrity constraint in the database - so it fails. The problem is ...Show All

  • Visual Studio Team System Visual Studio 2005 Team Suite Release on MSDN Subscriber Downloads (Universal)

    Hello everybody, Today Visual Studio 2005 Professional was released on MSDN Subscriber Downloads. We were unable to find the Team Suite Release. Any help Best regards Ralf Rottmann Word on the newsgroups is that your transition options are limited by your partner level. I've heard variously that - Gold partners get Team Developer, no role choice, no upgrade - Standard partners get Professional only, no Team System at all - Gold partners with a competency (possibly only ISV) get Team Suite - Standard partners with a competency (possibly only ISV) get Team Developer If you ask me, this is unacceptable s ...Show All

  • Windows Forms Image Property

    It would seem that you can create a new bitmap with an ImageFormat of Icon as long as the icon exists in a file (i.e. myfile.ico). Why then can I not assign an Icon to a new bitmap  I know I can assign it by converting to bitmap, but that results in the ImageFormat being MemoryBitmap which totally destroys the Shadow area of the Ico ...Show All

  • Microsoft ISV Community Center Forums vba in excel

    Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Hi John Try the below, you can amend as necessary, I have added a function which will help name the file as per your example Public Sub CopyStuff() Dim lngRow As Long Dim strFileName As String Dim strRange, StrRow As String On Error Resume Next MkDir ("C:\Files") On Error GoTo 0 For lngRow = 1 To 2 StrRow = Trim$(Str$(lngRow)) strRange = "A" & StrRow & ":B" & StrRow Range(strRange).Select Selection.Copy Workbooks.Add Range("A1:B1").Select ActiveSheet.Paste Application.CutCopyMode = False Appl ...Show All

  • Windows Forms Zooming in and out on picture boxes

    I have a picture box on a form that is a satellite photo taken from space. Does anyone know of a way that I can take a section of that photo and zoom in on it and resize that section to the whole picture box Any help would be greatly appreciated, smtraber Hi, First you must have the part of the Image you want to zoom, define variables such as: int zoomFactor = 2; // ZOOM 2x size Rectangle rectangleToZoom = new Rectangle(100,100,40,40); Where your zoomFactor is the number of times the image get expanded. rectangleToZoom is the location of the Image you want to zoom (from your map); Next, extract the image part from your map using the ...Show All

  • Visual Studio Change from Beta 2 to RC 1

    Sorry for my english . . . . . . (I'm a english-beginner) i have changed from Visual studio 2005 Beta 2 to RC 1 and now i habe 2 problems: on Beta 2 is possible to do this: oRpt.SetDataSource( Me .KenusDBDS. KRTempBHFehler ) now i have to do this: oRpt.SetDataSource( Me .KenusDBDS.Tables( "KRTempBHFehler" )) but, the bigger problem is: I have created a lot of reports (Beta 2) with: with = ca. 20 cm (default) Now all reports are reduced to ca. 15 cm, and i can't change this. Do you can help me i can't find a solution for this problem. Than you Robert Koller Hello Robert, For the bigger problem, what exactly do you mean by ...Show All

  • .NET Development deleting control characters in string builder

    hi! I have a simple string builder instance that read a xml entry from an rss file: StringBuilder strbld = new StringBuilder (reader.ReadString()); now if the string in the rss enclosure has some control characters like for example "\n", string builder will read this too. by the time I read the whole thing into the database I have strange characters there, the db seems not to understand these control characters. so, what I want to do is simply deleting all the control characters out of string builder and this in an efficient way. I implemented a function that uses regex to delete "\n", but I really don't want ...Show All

©2008 Software Development Network