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

Software Development Network >> Vijay Chegu's Q&A profile

Vijay Chegu

Member List

prozac11
laja
Obal Orrestad
Prabu.
Old Jeffrey Zhao
James Bannan
sugrhigh
JIM.H.
Drew Marsh
SeanMSDN
Jackys
LiamD
robhare
CiNN
DanielN305517
Zooma
Steve Whitley
Module
Elad_23
agentf1
Only Title

Vijay Chegu's Q&A profile

  • Visual C# Conversion Issue from VS.NET 2002 to VS.NET 2005

    All the classes are converted to partial and in the user controls the shared property has following error. "Reference to a non-shared member requires an object reference". Hi, Vishal VS 2005 uses partial classes to allow multi-source-file classes. Especially useful when separating the Form developer from the code behind the form. As for the shared properties, at each of these errors you should get an option to replace the object reference with the class name. Shared properties and methods cannot access internal data structures in the class, thus the error. ...Show All

  • Windows Live Developer Forums Certificate validation failed

    We are getting this error since saturday night: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path validation failed: java.security.cert.CertPathValidatorException: signature check failed Our client is linux/axis. Anybody else seeing that I am having the same issue and have sent mutiple emails to MSN api help. They have not explicitly confirmed any issues but did say they are looking into it. I upgraded my WSDL and readded certificates to the java keystore to no avail. If this is working for anyone (using Apache Axis), can you please tell me what you have specified as the ApiUserAuthHeader parameter as well as the URL used in the Locator to get the Soap service ...Show All

  • Visual Studio Express Editions Publishing Problem

    Hey I published my program and put it online and the downloading works except every time I download my program it puts in Xml format not application. I'm not sure but I think my problem for this happening is because I made it so it was a online program where it just pops up when you download it. What did I do rounge to have it show in XML format and not application. When you see xml when clicking on a .application file, it usually means that the MIME types are not configured correctly on the server. The needed mime types are: .manifest application/octet-stream .application application/x-ms-application .deploy application/octet-stream For entire website: Open the Computer Ma ...Show All

  • SQL Server SQL Server 2005 code error

    Hey, I need someone to look at a small piece of code and tell me where I'm going wrong in SQL 2005 Server. Where should I post Thanks in advance, Danny Problem: When I run this I'm told NoOfContractsCount is an invalid column name when I try creating my cusor USE SLXDEV SELECT Count ( MCS2_CONTRACT . accountid ) AS NoOfContractsCOUNT , MCS2_CONTRACT . accountid , CONTACTID INTO #TempTable FROM sysdba . MCS2_CONTRACT , CONTACT WHERE MCS2_CONTRACT . accountid = CONTACT . accountid GROUP BY MCS2_CONTRACT . accountid , CONTACTID HAVING Count ( MCS2_CONTRACT . accountid ) > 1 DECLARE @CountTemp int DECLARE @accountIDTemp CHAR ( 12 ) DECLARE @ContactIDTemp CHAR ( 1 ...Show All

  • Visual Studio What caused creation of THOUSANDS of tmp files in SourceSafe users directory?

    I'm using Visual Studio 2005 and VSS 6.0d. Visual Studio and VSS were getting slower and slower, and my entire computer was too, if those apps were active. To make a long story short, the culprit was this: there were 65536 0-byte *.tmp files in the VSS <database>\users\<username> directory. That's, right 65K 0-byte files. This wasn't in the <database>\temp directory, but in a directory for users .. the one with the ss.ini in it. Anyway, I deleted 'em and all is well. But I'm a guy who likes to know 'why'. Anyone know -BillyB In general tmp files in user's ini folder may be caused by: - VSS crashing during save of ini files so it doesn't get to the point where the tmp files are deleted - antivirus keep ...Show All

  • Windows Forms Toolbar Trouble

    Hi folks, I'm having a problem with a Toolbar in my WinForm where the buttons images aren't showing up when I launch the app. The toolbar is displayed, the button text is visible, mouse-overs work properly... but no images. Has anyone seen this behavior before I'm at a loss as to what's happening... The WinForm project was made with Visual C++ (managed) using Studio 2003. Any thoughts/wisdom/advice -Zero Weird... no one has seen this behavior before I've been over all of the settings and I'm beating my head against a brick wall now - I just cannot figure out why the images aren't showing up when I'm testing the program... ...Show All

  • Visual Studio Side by Side run - Is it possible

    Hi, I currently got Visual Studio 2003 with .net 1.1. Is it possible to install Visutal Studio 2005 with .net 2.x without uninstalling existing versions Reason being - I got some other applications which is running in V1.1. In case any changes needed, I need to support those application too. Reason why I am asking for V2.x is because I need to start working on one more new application in this version. And how about IIS Currently my OS is Windows XP Professional with IIS 5. Is it possible Thanks in Advance, Sachi Very possible. just like ahmedilyas said, you will need to modify ur IIS settings to use .net 2.0 enjoy InstallGuy ...Show All

  • .NET Development AccessViolationException when sharing a pointer between C# and C++ DLLimport problem.

    Hi all, I am facing an AccessViolationException and I can't seem to pinpoint where have I gone wrong. I hope the experts here are able to provide me with an answer. Scenario: A C# WinForms (.net 2.0) program that creates a background/worker thread to call a C++ function via Interop (static extern method). The C++ function will internally do a loop, that will "break" out of the loop once a flag in the C# program is triggered. Now, issue is that it works for a few times before the AccessViolationException kicks in. The VS debugger points to the C++ function call as the culprit. C++ Function: _declspec ( dllexport ) bool StartCall( unsigned int *position, unsigned int *maxLength, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. "Use of unassigned local variable" error on Xbox360 but not Windows

    Anyone know why the compiler produces an error when the following code is compiled in an Xb0x360 project but not when it is compiled on a Windows project public void GetTileRect( int tileX, int tileY, out Rectangle tileRect) { Rectangle myRect; myRect.X = tileX * tileWidth; myRect.Y = tileY * tileHeight; myRect.Width = tileWidth; myRect.Height = tileHeight; tileRect = myRect; } I get a "Use of unassigned local variable 'myRect'" when assigning it to tileRect. It's not a big deal, I can get around it by simply using "myRect = new Rectangle()". I'm just wondering why it works in one case but not the other. Stephen Styrchak - MSFT wro ...Show All

  • Windows Forms Using addingnew with bindingsource

    I have a table with an autoincrement field as primary key and a few other fields. I have successfully created data binding it works fine. I s possible to have a value filled in one of the fields whenever i click the plus(+) button on the toolstrip of the binding navigator. The field which i want to fill is not the primary key field. I tried using addingnew event of the binding source but its now working well. Thank you. Private WithEvents myTable As DataTable Private defaultName As String = "Orchids" Private Sub myTable_TableNewRow( ByVal sender As Object , ByVal e As System.Data.DataTableNewRowEventArgs) Handles myTable.TableNewRow e.Row.Item( "theColumn" ) = defaultName E ...Show All

  • SQL Server Dimension Range

    I have a simple cube based on just 2 DB tables. I have 1 measure and 5 Dimensions. I need to create some ranges out of 2 numeric Dimensions. Can anyone suggest how to go about it. It may be a simple thing- but I am just a learner...I have tried to use DiscretizationMethod but my ranges are very specific so it does not help. What are the numeric dimensions, and what are the ranges you want to create on the numeric dimensions Your answers will point us in the direction of a solution. An example would be very helpful. PGoldy ...Show All

  • .NET Development SerialPort using RS485 that doesn't support DTR

    Hello, I need to know if there is any way to use the SerialPort component for an RS485 port without full modem support. I'm trying to use serial ports from a programmable serial interface card which does not support full modem signals (DTR, etc). Specifically, the .NET SerialPort component is throwing an IOException when it tries to set the DtrEnable property of the underlying SerialStream when SerialPort.Open is called saying that "The parameter is incorrect". After speaking with the vendor, full modem is not supported for any of the card's channels, so the card's driver returns an invalid parameter error when any of the control pins associated with full modem functionality are controlled. In the vendor's unmanag ...Show All

  • SQL Server How to hide a value within a Dimension

    Hello, I am trying to hide a value within a Dimension. Currently, the Dimension contains (NewBooker, RepeatedBooker, Others). I would like to hide Others (so people cannot see and filter on this value) while for Total (ALL)still show the GrandTotal (including Others). I would rename the Dimension name so users would understand Total includes Others. Is it a MDX statement I have to specify at Dimension or Cube level to hide this scenario. Any help is appreciated! -Lawrence Sorry, it was getting late and I was a bit brief with my response. If you only have one level, what I would do would be to insert your own top level and turn off the automatic All level. You either give the member you want t ...Show All

  • Windows Live Developer Forums Error: Object doesn't support this action

    I'm doing Live Contacts Control intro from: http://dev.live.com/contactscontrol/v0.2/getstarted.aspx When I refresh the page I see the control and logo for a moment then it shows an error: "Error: Object doesn't support this action" How can I debug this First, which browser are you using If you're using Firefox 1.5, you'll need to get the Venkman plugin to debug JavaScript in Firefox. If you're using IE6 or IE7, you'll need to enable script debugging in the browser (Tools: Internet Options: Advanced, uncheck both "Disable script debugging" options), and possibly add a script debugger (I can't recall if the script debugger is already there or not). If you have Visual Studio installed, you're done, as it ...Show All

  • Software Development for Windows Vista Enumerating Audio Source Lines in Vista ?

    hi, What Interface or API to use for enumerating Audio Source Lines (i.e Line IN, microphone, phone Line, CD Audio) In Vista Anis, this was answered offline, but the answer is: You can't. Here's the rest of my private email to you on the subject: If you want to set the volume of the audio device, then the IAudioEndpointVolume is what you want. The "source" lines that you used to see on the mixer APIs are only used for certain VERY specific scenarios (for instance, the "CD Audio" source line is only used when playing back CDs using the analog cable output from the CD rom drive – to my knowledge, no non-home built computer has shipped with this cable connected in almo ...Show All

©2008 Software Development Network