Software Development Network Logo
  • Visual Studio
  • SharePoint Products
  • Windows Vista
  • Visual C++
  • SQL Server
  • Visual C#
  • VS Team System
  • Game Technologies
  • Microsoft ISV
  • Windows Forms
  • Visual FoxPro
  • Smart Devicet
  • Visual Basic
  • .NET Development
  • IE Development

Software Development Network >> Laxmi Narsimha Rao ORUGANTI MSFT's Q&A profile

Laxmi Narsimha Rao ORUGANTI MSFT

Member List

eldiener
filson
Bob Emerson
niroshanonline
Fahad349
L R
Bert666
naylouvar
Mikhail Kazakov
PatMcHargue
dbcuser
Eric Delaune
Aureon
Chih Huang
roadresident
MarcoSartore
kinki
Trekkie_SG9
Doug 123
wtrn
Only Title

Laxmi Narsimha Rao ORUGANTI MSFT's Q&A profile

  • Visual Studio 2008 (Pre-release) Frame.set_Source throws NullReferenceException in RC1

    This happens (consistently, although some URLs seem to be effected more than others) after I opened and closed at least one Window containing a Frame. Each of these windows is created on a separate (STA) thread so that my main UI remains responsive. The Uri that I pass is definitely not null, I suspect that this is some kind of threading issue with the Frame control. After the issue occurs for the first time, it same issue occurs everytime I set the Source property on a Frame, so basically the process can't display any web pages anymore. This is the call stack: System.NullReferenceException occurred Message="Object reference not set to an instance of an object." Source="WindowsBase" StackTrace: at MS.Win3 ...Show All

  • Visual C# How to Store Passwords in the Code

    Hello Everyone, I have a username and password which I want to use to access some stuff but If I disassemble the .exe I cant see the UserName and Password.... What is the best way to hide it within the code..... Thanks, Harsimrat may this help you The Art & Science of Storing Passwords How To Store Secrets On A Machine Enter a topic name to show or a new topic name to create; then press Enter ...Show All

  • .NET Development Microsoft Oracle .NET Data Provider Performance - repeated internal SQL

    Hi, We are noticing several similar SQLs (listed below) which execute many thousands of times per day. The SQL in question does not access any application tables, it accesses the Oracle data dictionary to retrieve metadata, which is essentially static in this context. On one particular day the SQL is issued some 24,024 times, performing 401 million block accesses and consuming 2,080 seconds of CPU. Our concern is that as our transaction rate increases that this SQL may become a performance bottleneck. I'm wondering if there are any configuration settings within ODP or application coding guidelines which may allow the SQLs to be issued once and the results held locally for re-use I have read about connection pooling and statement caching. ...Show All

  • Visual C# Generic Multi-Dimensional Arrays Comparison

          Hi,     I need to compare multi-dimensional arrays in a function which takes 2 multi-dim arrays which can be any type(int, double, bool...etc). Comparison is done by Object.Equals() of each value in each index of the arrays. As a result, Generic and  Multi-Dimensional is what I need to combine. Any idea I compare 1 Dimensional-arrays with the below code of mine: public static bool AreArraysEqualByVal<T>( IList <T> src, IList <T> dest) { if (src == null || dest == null ) throw new ArgumentNullException ( "source or destination array is null." ); if (src.Count != dest.Count) { Debug .WriteLine( "Array lengths were not equal." ...Show All

  • Visual Studio Express Editions Store a TableAdapter as a variable

    I am trying to refer to a tableadapter in a code and am having trouble: i am trying to do something like this: Dim tblAdpt As Object For i = 1 to 10 tblAdpt = Main.Controls( "Table" & i & "TableAdapter1" ) 'loop through and update 10 tables ' define items of dr tblAdpt.Update(dr) next i Is it possible to do something like this Thanks in advance. Pete M   Actually that should work.  However I think you should define TableAdapter as TableAdapter and not an object. Wait... what is Main.Controls   What class is Main ...Show All

  • SQL Server Data encryption and keys

    Hi, I would like to encrypt data in my database. I want encrypted column value to be viewable only for certain group of users. Users that has access to my database doesn't meant they can access to my encrypted data. Currently, I am using the following "approach" as my key management. create master key encryption by password= 'MasterKeyPass' CREATE ASYMMETRIC KEY MyAsymmKey AUTHORIZATION MyUser WITH ALGORITHM = RSA_1024 ENCRYPTION BY PASSWORD ='MyAsymmPass' CREATE SYMMETRIC KEY MySymmKey WITH ALGORITHM = DES ENCRYPTION BY ASYMMETRIC KEY MyAsymmKey My data will be encrypted using Symmetric key MySymmKey. User who want to access my data must have MasterKey and MyAsymmKey password. Is it OK Any better way Thank you ...Show All

  • Visual Studio Express Editions about library In C++

    Hi evryone... while I using VC.NET 2005 To programing project I want to insert(add) some library to my project. what I doing to do that where can I find [component and controls] in VC.NET comment:( I founded thy library but I can add it ) and thanx early.. Take a look at http://msdn2.microsoft.com/en-us/library/ba1z7822.aspx that describes how to link other libraries to your project. Thanks, Ayman Shoukry VC++ Team ...Show All

  • Windows Live Developer Forums local.live.com Interface

    Does anyone know of any resources to build an interface within VE similar to the local.live.com interface The site has a full screen VE control with menu panels that collapse / expand, icons linked to menu panes, links to routes etc. I really like the it and can see the logical step with custom VE applications is to move to this style of interface. Is the interface code for local.live.com available John. Thanks Jeff, That is really useful. You don't have any recommendation or some favorties for where to find useful bit of javascript code like this do you (website or book) John. ...Show All

  • Commerce Server campaign items

    hi 4 all, if we have multilanguages commerce website. how can we specify which of the campaign items (Ads, or discounts) will display for anonymous user suppose that we have 4 languages, should we create 4 campaign items for each thanks for all. I am not sure I understand the question about anonymous users. Are you asking that you are going to target registered and anonymous users If yes, then you will need to create an Ad for both user types and one for each language. -Max ...Show All

  • Visual Studio 2008 (Pre-release) svcutil / wsdl creates duplicate types in the proxy file

    I have a solution that includes several wcf services. Everything works great until I add a new service and include it in the wsdl generation. What happens is that several of my enumerations get listed twice, once as a System.Xml.Serialization.XmlTypeAttribute, and one as a System.Runtime.Serialization.DataContractAttribute. I've included a code example below showing one of my enum types behaving this way. I can't figure out the pattern of way this only happens when this new service is included, and why only some of the enums are duped, and some are not. [System.CodeDom.Compiler. GeneratedCodeAttribute ( "svcutil" , "3.0.3906.22" )] [System. SerializableAttribute ()] [System.Xml.Serialization. XmlTypeAttribute ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. OpenGL wglCreateContext fails when rendering onto a bitmap when not having rendered onto a window first

    Hi, I'm having a frustrating problem with the wglCreateContext call. I'm using DirectX for rendering on screen, and I'm using OpenGL to render the same thing onto a bitmap (for printing). When not using DirectX, the OpenGL bitmap creation works fine, but when using DirectX, the wglCreateContext call fails and GetLastError returns 8 ("Not enough storage is available to process this command"). Anybody got any thoughts on this A number of calls are succeeding before this call fails: getting the screen DC, CreateDIBSection, SetPixelFormat all succeed. All help is appreciated! Wout I'm just getting more insight in what the problem is. It doesn't have to do anything with DirectX, the problem seems t ...Show All

  • Visual Basic Printing screen through code

    Is there code to print screen through VB Dim theScreenShotBitmap As New Bitmap(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height, Imaging.PixelFormat.Format24bppRgb) Dim theGraphics As Graphics = Graphics.FromImage(theScreenShotBitmap) theGraphics.CopyFromScreen(Screen.PrimaryScreen.Bounds.X, Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, CopyPixelOperation.SourceCopy) ' theScreenShotBitmap.Save("C:\raj.bmp", System.Drawing.Imaging.ImageFormat.Bmp) My .Computer.Clipboard.SetImage(theScreenShotBitmap) rtb.Paste() the above code will get u the execat screen shot of the screen and it is purely dependent on frame wo ...Show All

  • .NET Development querry on daemon Process

    Hello, Many services like ftp,Smtp would be starting at the boot time and starts listening to accept the incoming req's after the O.s is loaded...(i think those r called as Daemon process) So, how can i do in Windows to make it any server program which was i written as a daemon process which has to work as similar as service "ftp' by default it is listeeninig at port #21. So, I will write a server program and make it to listen at some Port #xxx by default / at system starts without need to execute frequently.... Can Anybody Help in this Regard Thanx in Advance ...Show All

  • Commerce Server Who is using Commerce Server 2007?

    I am looking for companies using Commerce Server 2007 One of my clients, wants to move to Commerce Server 2007 but I am not sure how successful it is. Any help is appreciated! -- Salim Hemdani Salim, My company was the first to go live on Commerce Server 2007 (under Microsoft's Technology Access Program) and we've been using it for over a year now. Please feel free to ping me or call me and I would be happy to speak with your client about our experiences. Jeff Lynch E-Commerce Manager Gulf Coast Seal, Ltd. 713-910-7700 jeff.lynch@[nospam]gulfcoastseal.com MVP Windows Server System - Commerce Server http://codebetter.com/blogs/jeff.lynch ...Show All

  • Visual Studio Express Editions files in a project

    Hi All I am new to C#, I have downloaded VC#2005 EE, it's a great product! I have 3 questions: 1) If I create a simple windows forms new application I can find inside the solution explorer basically something like this: ... Properties... References... Form1.cs Form1.Designer.cs ... If I click on the Form1.Designer.cs node I open the Windows Form Designer generated code /// <summary> /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// </summary> It's ok But if for example I open the following project ("Crafting a C# Forms Editor from scratch") (http://www.codeproject.com/csharp/SharpFormEditorDemo.asp) ...Show All

©2008 Software Development Network