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

Software Development Network >> *karthic's Q&A profile

*karthic

Member List

June Rigsbee Copeland
Kliot
fastboxster
Greg Smolyn
Sun - By - Night
Jav74411
Aaron Smith
samithad
Alain Martineau
Malik05
T.C.
occam123
iifu
Geoffrey Jacoby
hoang khoa
VBA Derks
Chris R. Timmons
Sergey Dubinets - MSFT
Alain de la Kethulle
PotatoHead
Only Title

*karthic's Q&A profile

  • Visual Studio Visual SourceSafe Internet troubles

    I found this VSS for Internet web page ( http://alinconstantin.homeip.net/webdocs/scc/vss_internet.htm ) via a forum post (Visual SourceSafe Internet... http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=147130&SiteID=1 )   I'm going through the instructions and everything went fine up until step 12 under "Setting up SourceSafe and VisualStudio for Internet access (HTTP)". When I click on the Advanced button, instead of seeing the dialog shown with the "Always use SSL to connect to the server", I am prompted with the SourceSafe login screen (see screen shot at http://webpub.byu.net/mjk2/vss1.png ).&n ...Show All

  • Visual C# resource problem

    I have added an xml-file (Signals.xml) containting a definition of a dataset to my project in visual studio. I then marked the xml-file as a embedded resource, and everything works fine. I read the xml-file in a class extending DataSet like:  this .ReadXmlSchema("Signals3.xml") and everything works fine. When I later add another resource (for instance a background image), I get the following error message: An exception occured while trying to create an instance of MyNameSpace.MyDataSet. The exception was "Could not find file "C:\Documents and Settings\peter\Desktop\Backgrounds\Signals.xml".". Now it looks like visual studio ...Show All

  • Visual FoxPro column summation

    To all fellow foxpro enthusiats, If i have a table that looks like so, year enter exit net 1995 1 0 0 1996 2 1 1 1997 3 2 1 1998 4 2 2 1999 5 1 4 2000 10 3 7 how would i make a new row at the bottom, where i sum up the columns.. like --> year enter exit net 1995 1 0 0 1996 2 1 1 1997 3 2 1 1998 4 2 2 1999 5 1 4 2000 10 3 7 TOTAL 25 9 15 regards, Mike select year,enter,exit,net from table; union all; select 'Total' as year,sum(enter) as enter,sum(exit) as exit,sum(net) as net from table ; group by year ...Show All

  • Visual J# VS.NET B2 - Object Test Bench

    Hey, I was using Object test bench on Beta1 and that is really amazin feature. I use Beta2 now and I cant use Object Test Bench. In some project it is working.. but others dont include object test bench. I didnt understand what is wrong Yes, we are considering that. We have plan of supporting OTB for active project (currently selected project) rather than startup project. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. CLR and DirectX

    Should there be any slow downs when enabling common lanuage runtime (/clr) in a directX app I have done this to allow the use of windows forms for the options dialog of a directx screensaver I am developing but it causes a massive frame rate hit. Thanks for your help. Andy. This depends on several factors, the least of which is if your DirectX application itself is using Managed DirectX (you didn't specify).  Initial loading of the CLR can cause a frame-rate hit at the start, but otherwise you shouldn't see a performance hit.  Have you run a profiler on the code to see where the delays a ...Show All

  • Windows Forms TreeView duplicating nodes in Internet Explorer

    I'm having some serious problems with the TreeView control. I've got a control that inherits TreeView and has some methods that firstly create a TreeNode then does some recursive procedure to add all the children from a database of a sort. Then once this is complete I clear the nodes, then add the TreeNode so it should be the only root node. The only problem is that for some very VERY strange reason there are two root nodes, with duplicate child nodes. This is very bizare as this.Nodes.Count returns 1 and base.Nodes.Count also returns 1, so there SHOULD be 1 root node but there are two. Also, I created another TreeView inherited ...Show All

  • Visual C++ debugging: where are the variables?

    Let me start by saying that I am a beginning C++ programmer and am very new to Visual Studio 2005, so please forgive me if this is a silly question. When running the debugger on a simple program such as the one listed below, I find that it doesn't bother to display anything for most of the variables, and even for the variables it does display for, it seems to be garbage. #include <iostream> using namespace std; void main() { const int arraySize = 12; double sales[arraySize] = {0}; int count = 0; double smallestSales = 0; int smallestSalesMonth = 0; for (count = 0; count < arraySize; ++count) { cout << "En ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Mouse input

    why am i getting theses numbers from my mouse http://img393.imageshack.us/img393/4944/untitled5tb.jpg please help thanks private ACEIDev ACEMouse; public int ACEMouseX=0; public int ACEMouseY = 0; public int ACEMouseZ = 0; public ACEMou(Control ff) { ACEMouse = new ACEIDev(SystemGuid.Mouse); ACEMouse.Properties.AxisModeAbsolute = true ; ACEMouse.SetCooperativeLevel(ff, CooperativeLevelFlags.Foreground | CooperativeLevelFlags.Exclusive); ACEMouse.Acquire(); } public Vector3 ACEMouseGetPos() { MouseState ACEState = ACEMouse.CurrentMouseState; ACEMouseX=ACEState.X; ACEMouseY = ACEState.Y; A ...Show All

  • Visual Basic VB 2005 references problems

    Long time C# user and used 2005 since beta 1. Have done some VB class libraries with no problem but the Web IDE is telling me I have references I don't have in my project and don't show up on property pages...Is there a patch for VB 2005 Or am I missing something I think you need to explain further. The IDE says you have references - why And what makes you think that you don't have them if it says you do ...Show All

  • Smart Device Development Smartphone Camera / Device Cameras

    Is there a recommended generic way to deal with cameras on the smart phone etc I've been informed that there is no common API for dealing with these devices and that each of these devices must be handled seperately using a native library provided by the manufacturer. Whats the plan to deal with these imaging devices moving forward Thanks again! So, with this new API, do all cameras have to support it, or ... is this up to the manufacturer. Is it possible that some imaging devices won't be supported under this API Thanks! ...Show All

  • Visual Studio Tools for Office SelectionChange only fires once

    I am trying to run some logic as a user selects different folders in Outlook (e.g. - Inbox to a subfolder to another subfolder, etc.) I want to enable / dusable some commandbuttons, etc. The problem is that the event fires once and no more. What is the best event to handle for this purpose Is it SelectionChange Why would the event stop firing WHat could I have done wrong in my code   Sounds a lot like "My button stopped working" problem as described here . You need to make sure the object exposing the SelectionChange event is not a local variable inside your method. It is just getting Garba ...Show All

  • .NET Development An attempt to attach an auto-named database for file....

    I'm having problems with ASP.NET Beta 2 web applications connecting to SQLExpress databases.  Below is the error I get when running the Personal Web Site Starter Kit. An attempt to attach an auto-named database for file e:\InetPub\Clients\aspnet2.test.net\App_Data\Personal.mdf failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share. Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code. Exception Details: System.Data.SqlCli ...Show All

  • Software Development for Windows Vista DelayActivity dynamic update

    Hello, I would like to ask you if it is possible to update DelayActivity.TimeDuration value when DelayActivity is executing I want to achieve scenario like this: workflow is configured to simulate delay specified in the DelayActivity. After DelayActivity starts waiting, user wants to change delay value for the running instance (increase or decrease the delay value). Applying WorkflowChanges to the running workflow instance with different DelayActivity.TimeDuration value set does not work (no errors, old delay value is respected). I was also trying to remove DelayActivity from the running workflow instance and recreate it ...Show All

  • Windows Forms Some labels cut off at 2/3 height on some computers

    Hi there, We're developing a windows app.  Amongst other things, we're displaying two labels on a form.  Another dev created these, and set the height of the labels to 13px.  The forms display fine on his computer, but on my laptop only the top two thirds of the text is shown, and the bottom third is invisible.  When I set the label height to 19px, I can see the entire label. My question is why would this be different on his computer and mine   It's very frustrating. My laptop is also reasonably new (Acer Ferrari 4005 if it makes any difference) and I have experience this problem in another couple of apps I use, that ...Show All

  • Visual Studio Team System MS Project intagration problems

    MS Project/TeamSystemGantt Bugs 1.When deleting item it may stay not deleted 2.When close/show diagramm it contains some main parent items only(collapse,expand to see all items) 3.When project summary task is not used, but one custom summary task is used. And move level2 item to upper level (level 1) -> we don't have 2 main parent items and project plan becomes corrupted. 4.We cannot filter resources by autofilter I'm sorry but this forum is for supporting people with Team Foundation Server issues and we don't have a great deal of expertise with Project and Project Server specific issues. I'd ...Show All

©2008 Software Development Network