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

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

RajLakamana

Member List

titus505
ddCONFUSED
Bloom326984
KrisK
airwalker2000
vb2005
jomon
jake williamson
orent
S10n
bj16060
Lasse.Knudsen
Marcie103
Xargo
khuong.ngo
slesniak123
error1408
zenkick
Andy Ho
Gess Man
Only Title

RajLakamana's Q&A profile

  • Visual Studio Team System Code Coverage for User Controls

    Is it possible to perform Code Coverage Analysis for User Controls in Visual Studio Team System. If Yes, do we need to do any thing different from that what is needed for normal Windows control Yes. It is indeed possible to perform code coverage for user controls. What I missed during my earlier analysis was that we need to add the assembly file for user control explicity in the code coverage artifact list. ...Show All

  • SQL Server Unable to initialize - The encrypted value for "logoncred" configuration setting cannot be decrypted.

    I am unable to initialize the reportserver: gettting the folowing error: is it possible to reinitialize the server: *********************************************************************************** The encrypted value for "logoncred" configuration setting cannot be decrypted. (rsFailedTodecryptConfigInformation) *********************************************************************************** Please help thank you very much for the information. Did you copy the config file from another machine The encryption used in the config file is tied to a specific machine. You can repopulate the value using the database panel of the report server configuration tool. ...Show All

  • Microsoft ISV Community Center Forums .onAction assign value

    In my macro when the user presses a button I use the following code: Set stapelDiagramKnapp = .Controls.Add(Type:=msoControlButton) With stapelDiagramKnapp .Caption = "Stapeldiagram" .OnAction = "ChartModul1.arrayLoop" ....here I want to assign a value to a global variable (declared in a differen place) so that I can keep track of which button is pressed. Alternatively I can assign a value to an "ordinary" variable and pass that along to the other modules as an argumnet. Can someone please help me with the code for this Thanks to you all very much! Since you didn't inlcude the With line, I'm having to use my crystal ball to figure out WHAT your adding the control to. I'm gu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Displaying textured 3D objects

    Hi there, I've been working my way through the tutorials at http://xna101.spaces.live.com/ , and I am stuck on lesson 16, the first 3D tutorial. The download of die.x didn't work, so I whipped up my own little 3D cube in Blender and applied a simple 64x64 pixel texture to it and saved it in DirectX format as cube.x. I was able to add it to my Project fine, but when I try to compile the program, it has all sorts of trouble understanding any texture I put on the thing. It will say the texture file is not found in the debug/bin directory; or it will give me other error messages about the structure of the texture file. I tried saving the cube as cube.3ds and cube.x3d and whatnot, and none of that worked. (Indeed, the Project didn't even rec ...Show All

  • Visual Studio How can backup sourcesafe for only project and its histories

    hi All, My sourcesafe database has many projects such as : project A, project B, project C. How can I backup sourcesafe database for project A and its histories only, Thanks ...Show All

  • .NET Development Event Bubbling

    Please explain with example the concept of event-bubbling. The "concept" for event-bubbling is quite a simple one. All you are doing is trapping an event and then forwarding (bubbling) it back up the chain. For example, if you are wrapping the functionality of a class (A) into a more generic class (B), then you may want the user interface (C) to respond to the events of A. The way this is achieved is that class B handles the event, in the handler you would raise the same event again for class B, using the arguments returned by class A. The user interface will then listen for the event in question being raised by class B. This is more apparent when the user interface has access to class B, but not ...Show All

  • Visual Basic Computer info?

    How would I show PC info as in CPU(Name/GHz) RAM(total in MB) Sound(card name) Video(card name) Hi, try WMI. You will find script samples on MSDN script center, e.g. http://www.microsoft.com/technet/scriptcenter/scripts/hardware/devices/default.mspx .Net has some WMI functionality in the System.Management namespace -- SvenC ...Show All

  • .NET Development Escaping decimal points in regular expressions

    I'm trying to do something that ought to be very simple. I'm trying to test whether a string (which is an argument to a command) is a valid value of the type I need. That is, I want it to be convertable to a double and be in the range 0.1-1.0. I have this line in my code: Regex ValidPause = new Regex("^((1\.0)|(0\.[1-9]))$"); The problem is that VS marks the string as bad and gives me the message "Unrecognized escape sequence." If I take out the backslashes, the red squiggly line goes away, but then it matches "0x0", which is obviously not what I want. How should I escape the decimal points correctly Actually, it does work to match what I meant it to match. I just wonder, si ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Changing colors of a texture on the fly?

    Let's say I have a black and white image and I want to be able to replace the white in the image with another random color on the fly. How would I go about doing this Would it also be possible to replace BOTH colors at the same time You could do this in a pixels shader. something like color = tex2D(....) finalColor = color * colorW + (1-color) * colorB; this will replace the white with colorW, and the blacks with colorB ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Looking for a Risk Starter Kit

    im looking for a starter kit to handle a risk like game of terratory conquest. if anyone knows a good spot please let me know. ive done searches but havent found much. thanks There really isn't one. I can think of about 5 ways to implement a Risk-like game off the top of my head, all different. Your best bet is to learn game programming fundamentals. From there, I don't think you'll have any trouble implementing a game like that. When it comes to game programming, there are no real "short cuts". Even with a "starter kit", you still need to master the fundamentals. ...Show All

  • Visual C++ DirectX Symbol Not Found, Can anyone help?

    Hi this is some sample code i have been trying to run in Visual Studio Express: #define STRICT #define WIN32_LEAN_AND_MEAN #include "stdafx.h" #include <windows.h> #include <d3d9.h> #include <d3dx9.h> #include "resource.h" //----------------------------------------------------------------------------- // GLOBALS //----------------------------------------------------------------------------- HWND g_hWnd = NULL; LPDIRECT3D9 g_pD3D = NULL; LPDIRECT3DDEVICE9 g_pd3dDevice = NULL; //----------------------------------------------------------------------------- // PROTOTYPES //------------------------------------------------------------ ...Show All

  • Visual Studio Crystal reports is displaying messed up report

    Hi, I am creating an application for the last couple weeks, and about a week ago I created a report that came out just fine. Anywyas this morning I needed to add another field to the report, and once I did the report came out all screwed up: text is being cut off, fields arn't being alligned correctly, etc..   This is the way it is suppose to look ( this is using the preview) Pic1 this is the way it turns out Pic 2 The words in the second image should be Issue 1,    Test Person test,  General,  11/16/06,  Test Person,  Plant Management   As you can see a lot of the words are being cut off  and they deffiently arn't ceneted like the one in the first image. I ...Show All

  • Visual Basic why my clickonce downloading not completed?

    I made publish for new version of my application, what happen is, One of my customer download 60% of my new version, and stop. what is the problem yes it is, and One of them mostly download at 100% or near of them and then show this message I don't know if swap connection (I mean bad connection goes high and goes low), appear this error !! ...Show All

  • Visual Studio Express Editions one last question with a boolean

    well i have one last question on my program like before. the idea of it is to type in a child's last name and it will read from a txt file with all its info and bring out the info in a rich txt box. otherwise it will say "child not found". well right now no matter what i put in im getting "child not found" Private Sub Button3_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button3.Click Dim strChildFirstName As String Dim strChildLastName As String Dim chrChildGender As Char Dim strParentLastName As String Dim strParentFirstName As String Dim chrParentRelationship As Char Dim decAnnualIncome As Decimal Dim intParentAge As Integer Dim intNumberOfKids As Integer Dim Readfile As System.IO.StreamRe ...Show All

  • Visual Studio Express Editions Newbie About Box Question

    I added the about box template to my project. I went ahead and changed all the labels to fit my project. I'm using Form f = new AboutBox1 (); f.ShowDialog(); to display the form but when run all the labels are back to using their default values. I know I can change them in code after I create the forum, I'm just curious why this isn't working the way my brain expects it to. Thanks... Darren DRamey wrote: Ahem, I just figured out the problem after composing a 3 paragraph reply. I never did bother checking to see if there were any default values being assigned in the code of the about box itself.. Nevermind! Thanks for the reply anyway, it got me thinking :) When you solve a question by yoursel ...Show All

©2008 Software Development Network