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

Software Development Network >> ram krishna tripathi's Q&A profile

ram krishna tripathi

Member List

Oussou
JaySch_MS
BlisteringIce
fanse
Jonathan Barbara
Direct9.0SDK Itanium Version
G72
MarlAtkins
Marcos Antonio
Sumabobby
felicity argyrakis
Adiraz
JohnnyTheDon
Neil D
Rulery
rvUser
Venkata Subba Rao
Biodevuk
SirThomas
Zeesha
Only Title

ram krishna tripathi's Q&A profile

  • .NET Development XML, XSL, and UML

    Hi, I am a complete newbie to XML parsing. I have some questions and hope this forum can provide me some answers. I did browse through some websites but didnt help. My questions might be very simple and stupid, but I am thoroughly confused. Okay here is my situation: i have a huge huge XML file that contains information about UML class diagram. Now how does having an XSL file help. I mean what purpose does it serve Do I have to have XSL file to read XML file If I need to have XSL file, can anyone point me to a place where I can get XSL file for UML Is it same as UML metamodel Thanks a million, ...Show All

  • Windows Forms CR Viewer

    Does Crystal Report 9 come with a viewer (i.e. user can view the report but cannot modify it.) Sorry, couldn't say. I even asked around the office to see if anyone else knew.  :(  ...Show All

  • Visual Studio 2008 (Pre-release) Need Help With XAML Data Binding

    i am trying to learn XAML data binding and have developed a simple demo application to this end. forgive me, i am trying my best here. i will post my code below. if any bright spark could spare 5 minutes to look at my application, perhaps they could explain to me what is going wrong. i have been wrestling with this thing all day long... the idea is that when you select an item in the ListView, the TextBox should update to reflect the currently selected item. Also when I click the SAVE button, the ListView should automatically rebind to show the new contents of the array. Some questions please: 1. My TextBox refreshes properly at fir ...Show All

  • SQL Server Problem with triggers not fireing on SQL2000

    Hi, I have 2 sql serveres with merge replication of some tables in a DB. On each DB, there is user triggers on the replicated tables to alter tables not replicated. For some reason these triggers don't fire when rows is replicated. This worked fine on SQL server 7.0. Regards Thor Milde Can you please explain what these triggers are doing in a little more detail Are these triggers declared as not for replication When do you expect these triggers to fire After user updates or when updates are done by replication agent or always ...Show All

  • Smart Device Development AnimationControl issues

    Hi All, In my application (C# CFNET 1.0), I do utilize one animation control. It has been running fine until I introduced a separate thread to perform background processing (BinaryReader) The problem is, the animation stop moving when the background thread is start running. The control is still active though. Because, if I try to call other form, the animation will change a little bit. I heard that animation control refer to IEnumerator and IEnumerator is not thread-friendly. Is that true Can I know on how to work around this issue Also, in Compact Framework 1.0, can I know what are the tools we can use to debug all these thin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. draw sprite doesn't work when inside VS (executable works fine)

    This may be a known issue, but I haven't been able to find it anywhere... and I'm a good googler =o)... I have this code (directly taken from Microsoft) to draw a simple sprite: public Device device=null; public Microsoft.DirectX.Direct3D.Spr ite sprite=null; public Texture tex=null; public void InitGraphics() { PresentParameters p=new PresentParameters(); p.SwapEffect=SwapEffect.Discar d; p.Windowed=true; device=new Device(0, DeviceType.Hardware, this, CreateFlags.SoftwareVertexProc essing, p); sprite=new Sprite(device); tex=TextureLoader.FromFile(dev ice, "F:\\eber\\charmed2.bmp"); } public void doRender() { device.Clear(ClearFl ...Show All

  • SQL Server How do I escape ampersands in stored procedure?

    I am using the following stored procedure to gather information from one of my tables: CREATE PROCEDURE usr_GetCustomerNumber @custName varchar(20)  AS SELECT CUNO FROM CIPNAME0 WHERE CUNM LIKE @custName GO The problem I am facing is that some of the customers have ampersands (&) in their names, i.e. A & M Auto Supply.  When I feed in anything with an ampersand to @custName, procedure doesn't return any information.  I am using the following code to call the stored procedure:     Private Sub btnSelect_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSelect.Click  &nb ...Show All

  • Software Development for Windows Vista Replicating State Machine Workflows

    I am wondering if it is possible to replicate n number of state machine workflows from within the state initialization activity.  Thanks I don't think that solution would work, as the activity would be an InvokeWorkflow, not the child state machine workflow.  From within the workflow, you can use 'this.WorkflowInstanceId' or from an InvokedWorkflow, you can use 'invokedWorkflowActivity.InstanceId'. Arjun ...Show All

  • Visual C# C# Help

    Ive Downloaded Visual C# 2005 & the MSDN from the site and have watched every video and pretty much understand whats going on my question is where do i go from here to learn more about the language. Would like to know more about functions and the different Librarys and how to use them. Thanks :) QuickStarts in .NET Framework SDK is a great place to explore .NET Framwork. You can install all samples in QuickStart locally on your machine as a part of installation. I believe ASP.NET 1.1 and 2.0 quickstarts are available online on www.asp.net website. Checkout QuickStart link in MSDN for more information: http://msdn.microsoft.com/libr ...Show All

  • .NET Development When to call dispose when using SqlConnection and SqlCommand?

       What is the best practice when running code as follows: //### code start #### SqlConnection conn = new SqlConnection("xxxx"); SqlCommand cmd = conn.CreateCommand(); //...do the necessary processing cmd.Dispose(); conn.Close(); conn.Dispose(); //### code end #### calling Dispose on the cmd and the connection seems redundant.  Additionally, if I am disposing hte connection should I first explicitly call Close()   The shortest form is simply to call conn.Close(); however even this is questionable.  conn.Close() may be valid since the connection is aware of the cmd object created with the conn.CreateCommand(), ho ...Show All

  • Visual Studio Team System How to know if a class is Public or Private ?

    Hi All, How to know if a class is Public ou Private Thanks, Marcelo. Hi  public override ProblemCollection Check(Member member)  {             Method method = member as Method;             if (method == null)             {                 return null;             }          & ...Show All

  • Visual C# Assembly.LoadWithPartialName, what's so bad about it?

    I was wondering why LoadWithPartialName has been deprecated, anyone know If I have multiple versions of MyAssmbly.dll in the GAC for example and I want my app to load the latest version, LoadWithPartialName does the trick. What's the alternative now it's been deprecated in .NET 2.0 Very interesting point. I've just automatically thought to change the assembly version for patched assemblies, and I haven't really differentiated between file version and assembly version. I assume Windows Installer will obey file overwrite rules looking at the file version, so the assembly will actually be o ...Show All

  • Windows Forms Error Publishing my project to localhost

    hi folks i made simple windows application called WindowsApplication1 but when ever i try topublish the project i keep getting this error message: Error 1 Failed to connect to 'http://localhost/WindowsApplication1/' with the following error: Unable to create the Web 'http://localhost/WindowsApplication1/'. An error occurred accessing your Windows SharePoint Services site files. Authors - if authoring against a Web server, please contact the Webmaster for this server's Web site. WebMasters - please see the server's application event log for more details. 1 1 WindowsApplication1 please any help Do you even have Internet Informati ...Show All

  • SQL Server Server does not exist messages.. ?!

    We have recently upgraded our SQL Express 2005 server, to SQL Server Standard 2005. It refused to install a new default instance during install, so i upgraded the SQLEXPRESS instance instead. Im now trying to install Microsoft CRM but when it tries to connect to the SQL server get the following error: "Setup was unable to verify that the SQL Server Agent (SQLSERVERAGENT) was running." "[DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied." "Microsoft SQL Server Reporting Services [DBNETLIB][ConnectionOpen (Connect ()).]SQL Server does not exist or access denied." As ...Show All

  • Visual Basic playing mp3 file..

    hi ppl. it's rather a easy question for all u geeks..but i want to know how to play or embed a .mp3 file in a form.. i know how to play midi files or .wav files using windows api function plz help me.. ashish Theres a number of different ways. The easiest is to create a process or shell out to an installed player e.g. mplay32.exe -play mytrack.mp3. Alternatively, you can convert the mp3 to a wav or use a library that handles the necessary api calls for you.  Codeproject   have a good section dedicated to audio. Cathal ...Show All

©2008 Software Development Network