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

Software Development Network >> Jenothan's Q&A profile

Jenothan

Member List

jeez
tcw
OLD_TIMES
krhyzsy
Solitaire
DaweiHuang
Daqing
szelee
Leancavalheiro
Bill Foust
joemorel - MSFT
fanse
Fidel delgado Mojica
chandan_chandan
TomSavage
sjj668
ChristianD
Haydee I
Karry
Paul Cronk
Only Title

Jenothan's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Books on XBox 360 and XBox Live Development for eLearning?

    Hello, I'm sorry to be such a noob, but if you have children, please consider offering me some assistance. I'm studying what it would take to put a SCORM compliant Learning Management System like Moodle ( http://moodle.org ) on XBox Live with the goal of offering downloadable eLearning that would lead to "Achievements" in things like basic math, geography, and other academic topics, in an entertaining manner. Before I get started, I'd like to read a book on XBox 360 and XBox Live development and find out a few things. Can someone please recommend a good book on XBox 360 and XBox Live development, targeted at an inter ...Show All

  • Windows Forms No touch deployment - offline question.

    Hi, I've been reading a lot about no touch deployment and it could be the solution to my design. But I have a question: What happens if the client is not 'connected' Is there anyway to run the app from the client chache Where can I find information about that I've read in some articles on MSDN about this posibility, but I can't find any info  ...Show All

  • Visual Basic An array of variables

    I have the following variables Public Shared angstroms As Double = 0.0000000001 Public Shared astronomical_units As Double = 149598550000 Public Shared barleycorns As Double = 0.008467 Public Shared bohr_radius As Double = 5.291772083 * 0.0000000001 + 19 * 1.0E-19 Public Shared cables As Double = 182.88 Public Shared centimeters As Double = 0.01 Public Shared chains As Double = 20.116840233680467 Public Shared cubits As Double = 0.45 Public Shared decimeters As Double = 0.1 Public Shared ells As Double = 0.875 I want to store them in a Double(). How would I do this I want to store them by name because I call them by name. s ...Show All

  • Visual Studio Visual Studio 2005 Beta 2 setup fails immediately

    Hi, I'm installing Visual Studio 2005 Team Suite from the Beta 2 DVD handed out at one of the recent MEDC events. I have: Windows XP Pro + SP2, 1.6Ghz, 256MB RAM, 4Gb disk space free. No problem with the DVD drive that I am aware of. No previous betas installed. I have VS 2003, eVC++4.0, Embedded Visual Tools 3.0 installed. Following error appears: AppName: setup.exe AppVer: 8.0.50215.44 ModName: setup.exe ModVer: 8.0.50215.44 Offset: 00029002 Any ideas I can send the full error log if you give me an address. Regards, Ade W You could try running FileMon or RegMon and see if they throw up any erro ...Show All

  • Visual C# Two clients, server and TCP

    Hi, I'm learning .NET Framework 2 so I've got an basci question. I'd like to write simple program to communicate between programs. There is one server, which recives messages from a client and sends it to another client (using TCP). How to do that I found TCPClient and TCPListener classes. I tried to use them but I don't know how. Thanks in advance. Wojteq I thought about TCP with sockets and streams but without Remoting. I'd like to go the better way only. ...Show All

  • .NET Development Calculate URL Size

    I need to calculate the size of a page when I enter its URL.  The size should include the total size with the images, css and scripts. I don't have a clue how to begin. Thanks Thanks that helped. I can get the main HTML size and the source for the HTML page but don't realy know how to go further. Dawid ...Show All

  • Visual Studio How to copy VS2005 to another computer ?

    My ISP charges for incoming traffic, so I paid $30+ for downloading VS2005 express edition during the setup. Now I need to install it with same configuration to another computer in my LAN. Is there exist a way for doing that without redundant (and expensive) downloading of the huge binaries Thanks. You can try ordering a CD version of VB or C# express. Otherwise, they are only installable via the internet. ...Show All

  • Windows Forms Exception reading manifest

    Hi, I wanted to test out the Click Once deployment feature in Whidbey. I created a sample Windows app with a single form and no controls on it. In the signing tab of the project properties, i selected the option for signing the manifest as well as the assembly. Created a new test certificate and a new strong name bey file for this. Then i&nbs ...Show All

  • Visual Studio Cannot find disassembly and memory view windows

    I am trying to debug a low-level interop-related problem in a C# program. When doing this I want to be able to look at disassembly, and also look at memory contents. These functions are available in the disassembly window and the memory windows. I can enable these windows using the keyboard combinations (Ctrl-Alt-D or Ctrl-Alt-M, 1) My question is why are these windows not available on any menu or toolbar The documentation mentions that they should be available on the Debug > Windows submenu when the debugger is stopped at a breakpoint, but they are not. I am using the RTM version of Team system developer edition of Visual Studio ...Show All

  • Visual Studio 2008 (Pre-release) CustomControl woes

    I spent all day trying to get a very simple CustomControl working. All I wanted it to do was to display a Button. To do so, I followed the Case Study by Kevin Moore ( http://winfx.msdn.microsoft.com/library/default.asp url=/library/en-us/wcp_conceptual/html/ecb97ed4-e659-48a4-a1e0-893309569f2f.asp ) wherein he shows how to implement a Color Picker Control. At one point in the study there is the sentence : "For now we will just put in a TextBlock to make sure things are working correctly." ... I did exactly that (not even bothering with a Button). I built a Avalon Application to test the Control ... but lo, the TextBlock was not displayed. ...Show All

  • Software Development for Windows Vista RPC errors when calling remote COM+ transactional server

    I'm getting a variety of RPC errors (800706bf & 800706ba mostly) when making a burst of simultaneous calls on a remote (transactional) COM+ application. The application is part of a small research project into the proper way to measure throughput, not a production application. The errors only happen when I make a number of simultaneous RPC calls. For example, one variant of the test driver creates a number of test threads, each with their own remote COM+ object, and, once all the test driver threads have a reference to their object, lets them all go to synchronise the start of the actual calls. I start getting RPC errors at about 50 c ...Show All

  • SQL Server unique values query

    Hi, I have been asked to write some code that can check a large table for duplicate values in a non pk column. The table may have up to 1000000 rows. The PK column is an auto increment field. For performance reasons the column in question could not be set to unique values only for inserts, an algorithm is used to create unique no's before the insert but what I am doing is double checking that their have been no duplicates created accidently. If their are duplicates I need to know what rows they occurred on. Thanks One way select a.id,a.field1,a.field2 from ( select field1,field2 from table1 group by fiel ...Show All

  • SQL Server Currency conversion wizard - performance

    We have created a cube in which we want to do many-to-many currency conversion - i.e. we have a measure group with amounts measured in 4 different currencies, and we want to be able to display these amounts in any of these 4 currencies. The measure group is linked to a company dimension which in turn is linked to a currency dimension via a referenced relationship (there are 3-4 more dimensions in the cube). Running the currency conversion wizard yields the expected results and we can show our measures in any available currency using the "Reporting Currency" dimension... However - it is SLOW! We realize that the calculations in the MDX script ...Show All

  • .NET Development bug in Int32.Parse

    In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't.  The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP:     Microsoft Visual Studio 2005     Version 8.0.50727.42  (RTM.050727-4200)     Microsoft .NET Framework     Version 2.0.50727     Installed Edition: Professional int x = 0; x = Int32.Parse("0")        // throws FormatException x = Int32.Parse("00")       // works fine x = Int32.Parse("000") & ...Show All

  • Visual C# Send form within web browser

    I have been searching for a way to allow the user of my programs to submit forms that are contained within a web browser control by clicking a button located elsewhere on the windows form. Could someone please help me out by telling me the best way to do this, or some type of function I could use, or if it is even possible Thank you for your time. chk this link out . hope this helps u ..... http://www.c-sharpcorner.com/UploadFile/Ashish1/webbrowser01302006142540PM/webbrowser.aspx ArticleID=07e708de-b4fd-4b3c-bf74-bfe16b66fd68 ...Show All

©2008 Software Development Network