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

Software Development Network >> Prakash Raman's Q&A profile

Prakash Raman

Member List

WolfKC
bob_monkhouse_book_of_gags
theinspector
Lyners
Seradex
Len Weaver
greenie
Faris Mlaeb
Nick Cole
_Ben_
Roger Swetnam
mendraz
Petr Melichar
Santosh
cagla
MHoess
Kh??ng Duy
DanMelson
Jcking
rakesh_halder
Only Title

Prakash Raman's Q&A profile

  • Windows Forms designer can't load form. Where is 'more information'?

    after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info ...Show All

  • Visual C# How to define arrays in C# Struct

    Hello, I've searched through forum using search for my problem and finally I got to make new one. Here we go. I'm trying to make a structure in C# which converted from this Delphi code. When it comes to "Array [0..3] of String[128]", I don't know how to make a C# structure to match this type of structure. I'd like to know if there is any method available to declare arrays like this in C# or not. So far I've tried, I cannot declare and cannot even marshal the C# array too. TCardDB = Record CardNo : String[10]; FName : String[15]; LName : String[15]; OpenMode : Integer; FingerCount : ...Show All

  • Visual C++ Debug in Windows NT

    Hi, I am using Visual Studio 2005, How do I debug my MFC application in Windows NT Regards Manoj Jangid VS2005 doesn't run under NT I guess that means you can't, unless you can connect to debug remotely. For debugging on anything apart from my dev environment, I would use error logging rather than install VS on lots of machines. For starters, I'm not legally entitled to, I don't believe. Also, it's better to test on a virgin machine and work out machine specific issues through a mechanism that also gives you a way to gather information when a crash on happens on specific *client* machines. And believe me, this DOES ...Show All

  • Visual Studio Deploying Crystal Reports via Prerequisites + Windows 2000 test failed.

    G'day, I'm upgrading a VS2003 Crystal Reports solution to VS2005 and Crystal Reports (10 I assume) and my MSI needed to be migrated. Following some research http://msdn2.microsoft.com/en-us/library/ms225227(VS.80).aspx I've determined that creating a new MSI Project in the VS2005 IDE seems to be the best way forward. I've elected to use the MSI Property pages "Prerequisites", "Download prerequisites from the same location as my application." I selected the following:- Microsoft Data Access Component 2.8 .net Framework 2.0 Crystal Reports for .net framework 2.0 Windows installer 3.1 So the MSI build an ...Show All

  • SQL Server After Install of 2005 still 2000 Engine!

    I have installed the new SQL Server 2005, but I see my local database as version 8.9.193, means SQL Server 2000. I do not know why setup did not upgrade it. What do I need to do now  I think some new options are now working because of that... Was your SQL Server 2005 installation successful   And did you do an upgrade, or a separate instance installation   Check to see if you have a second instance of sql server running, this may be your SQL 2005 installation. ...Show All

  • Windows Forms MDI child window and buttons not responding

    I am writing an order entry app. The main data entry windows is an MDI child window, which contains a tabcontrol with 5 tabpages, each representing a step in the order entry process. At the beginning of a cycle only a single tab page is shown; when a step is completed the next tab is shown. When an order is entered completely the tab pag ...Show All

  • Smart Device Development using bit values in VS 2005 database manager

    Hi, Here's my problem : I'm using the server explorer to manage my sdf database, some collumns are in bit format, when I put some data in it (using the manager), I got checkboxes (to put the value to 1 or 0 I figure). But if I don't edit the checkbox (meaning : if i don't put the checkbox to "check" value) the manager let the collumn value do DBNull. I guess I can check then uncheck the cell... but doing so on more than 10 collumns in 5 separate tables with at least 20 rows in each... I think you can figure out how long it takes. Are you planning on updating this part thanks! Seta, I understand what you' ...Show All

  • Smart Device Development how to run media player programmatically on a smartphone

    Dear All, i am executing System.diagnostics.Process.Start("xxx.wmv","") statement to run .wmv file on my smartphone emulator in visual studio.net 2005. It is giving some alert message,"Cannot play the file or the file format was not supported". But it succesfully runs on emulator when i copied to shared folder. I just could not run using System.diagnostics.Process.Start("xxx.wmv","") help me , Thanx hai Eugene, When i try, "System.Diagnostics.Process.Start(@" \Windows \wmplayer.exe","xxx.wmv")" It opens player but could not play. I have send some incorrect information in my last reply. Its giving error message as, "Can not play ...Show All

  • Smart Device Development Application Settings

    Compact Framework 2.0 does not support application settings (appSettings class, etc.). I am wandering : what is the best way to preserve user and application settings in the compact framework Any idea Emphyrio You can save them to the file or registry whichever you prefer. File can be in any format, for example XML. It is recommended to use <your application name>.exe.config file in XML format. You can use DOM to process this XML file. ...Show All

  • Visual C# NAnt and .Net 2.0

    Hi, Can anyone help me please. I am a learner using NAnt build files for my ASP.NET web applications. It works fine for .cs files, but when i try to use .aspx files, it gives me an error. The problem is "Partial" modifier on the declaration of class. If I remove this, NAnt works, but my web form gives me error. Here is my buildfile < xml version="1.0" > <project name="Hello World" default="build"> <property name ="TestProject" value ="TestProject"/> <property name="debug" value="true"/> <property name ="Test" value = ...Show All

  • Software Development for Windows Vista How to prevent an Workflowinstance from terminating

    Hi there I'm currently working on a (runtime-)service that should start a workflow for errorhandling if an instance faults. The service works fine as long as I trigger it by the instance's terminate event (Runtime -> WorkflowTerminated), but I want to prevent  the instance from terminating and instead suspend it so it could be resumed and starts at the State that caused an error previously. Is anyone there who could give me a hint how to stop the instances termination By the way: I can't use the Sequence Workflow's Fault view to handle errors 'cause I've got to implement my Errorhandling in base classes from which our w ...Show All

  • SQL Server using TransactionOption in April CTP

    Hello. I am using April CTP. In the main package, i am setting the TransactionOption to Required whereas in the child packages to Supported. But i'm getting the following error: The DTS Runtime has failed to start the distributed transaction due to error 0x8004D01C "A connection with the transaction manager was lost.". The DTC transaction failed to start. This could occur because the MSDTC Service is not running. However the MSDTC service is running. What could be the cause Thanks Christina Hi Christina, I'm getting the same error. I know it happended to you a year ago, but do you st ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. DirectX Error

    I am making a game called Battle Tank and I referenced a DirectX reference just as the tutorial said but I'm getting an error saying: 1 Error, The type 'Microsoft.DirectX.Direct3D.Device' exists in both 'c:\WINDOWS\Microsoft.NET\DirectX for Managed Code\2.0.0.0_x86\Microsoft.DirectX.dll' and 'c:\WINDOWS\Microsoft.NET\DirectX for Managed Code\1.0.2902.0\Microsoft.DirectX.Direct3D.dll' Here's my code to the game: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using Microsoft.Samples ...Show All

  • Software Development for Windows Vista workflows memory consumption

    dear members, i have some questions that looks basic: first what is the difference between placing an entire code inside workflows or just calling that code. the second question is how the workflow performance/effectiveness could be enhanced. and finaly how does CLR interpret workflows. thanks,   Abssi wrote: first what is the difference between placing an entire code inside workflows or just calling that code.   With workflow you have the additional overhead of the workflow runtime and any services, like persistence or tracking, that you add.   If all you are going to d ...Show All

  • Windows Forms ClickOnce Deployment from Web and IE "File Download - Security Warning" Dialog

    We are deploying via ClickOnce from an IIS web source (.Net Framework 2.0 & VS2005). Have signed deployment and application manifests using VS2005 signing tab with Verisign-issued certificate. After adding public key to the client's Trusted Publisher store, security dialogs have been suppressed, with the exception of one last (simple) case - the "File Download - Security Warning' dialog, prompting the user to save or run the file. Anyone know how to suppress this We would prefer to make the application(s) available online-only, so that the suite of applications can be accessed from a portal web menu. Having the users respond to ...Show All

©2008 Software Development Network