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

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

epsilon_ro

Member List

jcarlos.net
ihatems2
Renan Souza
ChandraP
wei hong tao
Tatworth
h1
devexpert
tssweb
Ori'
Steve1999
Samant B Jain
abuck
Wolfsvein
SpoonsJTD
Gus B
Ted.
kcchesnut
debraj dhar
nglow
Only Title

epsilon_ro's Q&A profile

  • Windows Forms designer can't load form. Where is 'more information'?

    after going from beta2 to rc1, the designer all of a sudden cannot load my forms anymore. instead, i get the infamous window with the red top that says some errors may go away building the project, while other need code changes. needles to say: the file compiles fine, the form could be opened with the beta2 and vs2003 designers and obviously doing a rebuild doesn't help at all. now what the additional error message says; Unable to load one or more of the requested types. Retrieve the LoaderExceptions property for more information. ok - great. now how do i retrieve the loader exception property. how can i fix this where can i find more info about whats going on   WM_THXADVANCE thomas woelfer http://www.die.de/blog ...Show All

  • Visual C++ This code snippet makes no sense...

    I've come across some code syntax I've never seen. It compiled, but I don't know how, or what it even does! I've been reading a book about DirectX, and in one of the examples, this little piece of code was present: D3DXMATRIX *D3DXMatrixIdentity(D3DXMATRIX *pout); "D3DXMATRIX" is a type, of course. And "D3DXMatrixIdentity" is a function, of course. Now I don't see how this works. Okay, to break it down, first we have a type, which is D3DXMATRIX, then we have the indirection-operator (which I assume is a pointer), and then we have a function (perhaps a call) with a new D3DXMATRIX (pointer) as it's only parameter. How the heck does this work It isn't just a regular function-call. It isn't a function-call that' ...Show All

  • Visual Studio 2008 (Pre-release) TextBlock versus Label

    What is the difference When to use one versus the other Unlike Label, a TextBlock element can do ... Thank you in advance for your help. Pradeep Thank you all for your help. In summary: 1. Use Label if you need accelerator keys. 2. For all other purposes, use TextBlock as it is more efficient. Regards, Pradeep ...Show All

  • Visual Studio Express Editions Problem Adding DLL to C# Project

    Hi, I wrote a simple dll in C++. I am trying to add it to a new C# project but I get this: "A reference to... could no be added. This is a not valid assembly or COM component. Only assemblies with extension 'dll' and COM components can be referenced. Please make sure that the file is accessible , and that it is a valid assembly or COM component" The file I'm trying to add called: Worker_Class.dll Please help, what could be the problem Iram Ah sure, that's just IntelliSense. The brackets [] tell the compiler to look for DllImportAttribute instead of DllImport. So just paste the code like I posted it, and see if it works (after changing the DLL and method name to yours). ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Crash when rendering billboard

    Hi I am trying to port beta 1 to beta 2 code. I have this crash in the rendering. Can someone tell me what I am doing wrong //Load effect myCompiledEffect = Effect.CompileEffectFromFile("content\\shaders\\bb_shader.fx", null, null, CompilerOptions.Debug | CompilerOptions.SkipOptimization, TargetPlatform.Windows); myEffect = new Effect(Game1.graphics.GraphicsDevice, myCompiledEffect.GetEffectCode(), CompilerOptions.SkipOptimization, null); public override void render() { myEffect.Parameters["WorldViewProj"].SetValue(myTransformNode.getTransform() * myScene.myView * myScene.myProj); myEffect.Parameters["WorldViewMat"].SetValue(myTransformNode.getTransform() * myScene.myView); myEffect.Para ...Show All

  • Visual Studio Team System Availability and Licensing?

    Does anyone know when this edition is expected to ship Also, will you be able to upgrade from the old MSDN Universal to VSTS Databasa Professionals JonM - The team is still targetting the initial release before the end of the year (2006). I'll need to let someone else answer the upgrade question as I'm not up to speed on the licensing aspects. thanks, ...Show All

  • Visual Studio Express Editions Revision control

    Is there any revision control mechanism available with VC++ Express edition Is there an easy way to roll back to a previous version of an application, or have different versions available for debugging/comparison Thanks, Kumar Yes and no. They can be integrated with a revision control system like Visual Source Safe but they don't come out of the box with a revision control system. ...Show All

  • Visual C# predefined attributes

    Are there any references on the ~200 predefined attributes in .Net/C# I can't find -any- information.. Can only get references on STAThread, Obsolete, Usage, Conditional.. Is there a way to create a customized attribute interacting with the IDE such as the ObsoleteAttribute one, which underline in blue the element... In fact I want to create my own MyHintAttribute attribute in order to display in the console during the compilation phase the hint specified... ...Show All

  • Windows Forms Control values do not refresh

    I have 2 projects: Project 1: A strongly typed dataset with a table etc. I have some code in the ColumnChanged event that looks like this: Select Case e.Column.ColumnName Case Me.columnDISCOUNT.ColumnName Dim r As REQUEST_LINERow = CType(e.Row, REQUEST_LINERow) r.UNIT_COST = r.LINE_PRICE * r.DISCOUNT End Select Project 2: A windows form that has the above dataset placed on it, a BindingSource (bound to the dataset) and several textboxes (bound to the BindingSource). When the user changes the discount text box (by tying a new value). I would expect the Unit Cost text box to update with the newly calculated value as a result of the ColumnChanged event. However the new value does not appear. The new value howev ...Show All

  • Software Development for Windows Vista Starting a WF from a WF

    Hi, I'm trying to create a custom listener activity that starts other workflows and running into problems getting a handle on the WF Runtime. We are calling this particular activity from an ASP.NET site. On my local machine it works fine when I do this: WorkflowRuntime wfRuntime = new WorkflowRuntime("WorkflowRuntime"); wfRuntime.StartRuntime(); Dictionary < string , object > parameters = new Dictionary < string , object >(); parameters.Add( "TaskId" , taskId ); WorkflowInstance wfTask = wfRuntime.CreateWorkflow( typeof ( j1pTask ), parameters); wfTask.Start(); But when we publish the site to the server we get errors on the first line. From my reading it appears that this shouldn't w ...Show All

  • Visual C++ doubt about visual studio 2005

    I’m using cisual c++ from visual studio 2005, and i am a new usuer of visaul c++, it’s my first time using. And what i want to know is i create a window application (for example, that show a message of welcome), i can take the file . EXE to a pc without visual studio or any aplication that build c++ code, and execute and work without problem. I ask that, becouse a build the a opensource program that was create using visual c++, and take to another computer without visual studio and this erro was show: It could not initiate the application so that the configuration is incorrect. Reinstalar the application can solve the problem. The original message it’s in spanish. Maybe that error was becouse i miss the transfer ...Show All

  • Visual Studio 'Build failed' - Approaching deadline, please help!

    for some reason i can no longer build setup projects within visual studio 2005. all the other project types (VSTO, WinForm, class libraries) build just fine. i have narrowed this problem down to the bare bones by creating a new solution consisting of only a new blank setup project. I then tried to build this, but again without success. All I get is a message down in the bottom left hand corner saying "Build failed". I am loathe to reinstall visual studio as this means i will also have to reinstall VSTO, the outlook 2007 template, the web project templates, etc, so this is going to take me all day. Please can anyone offer a solution as im stuck and up against a deadline. As ind ...Show All

  • Windows Forms MDI - First Child delay

    I have an application that consists of a prent MDI form. There is a menu tree in which each item equates to a seperate child form. The child forms are seperate assemblies. The problem I am having is that after loading the parent application (warm/cold) the first child form takes alot longer to load than the subsiquent ones. It does not matter which child form is opened first. I am not so much concerned with the start time of the entire application, but the load time of the first child form that is loaded. Any tips would be greatly appreciated. Thanks, Brad Sounds like you're seeing the JIT compiler taking time to compile the assembly. Try using Ngen.exe ... ...Show All

  • Commerce Server creating catalogs

    I cannot create a catalog for either the CSharp or StarterSite from the CS Catalog Manager on my development server. In Tasks there is no option to create a new catalog and the menu item under File..New is grayed out even though the connection was opened successfully Here's what I did (e.g. for Catalog Service-did same for Orders,Marketing and Profiles). This was not the ideal security scenario but I am just trying to get this product up and running so I can show my boss how it works. Installed MSCS2K7 pre-requisites installed SQL2k5 Installed MSCS2K7 on my windows 2K3 box unpacked both the CSharp and StarterSite Created a local admin acct for MSCS2K7 (call it locadmin) which I used for all 4 services Assigned w ...Show All

  • Visual Studio Team System Confused about install requirements.

    Hi, I have been reading the posts w.r.t install requirements for VSTE DBPro RTM. I have a MSDN Universal subscription and hence have VSTE SP1 installed. That is what came in my MSDN subscription. My understanding is that I can't install VSTE DBPro RTM. Is this right I suppose my first thought is how can this be Then my second thought is how can I get VSTE DBPro RTM installed without changing my install of VSTE (because I need it work, i.e. no trial jazz). There seems to be some confusion between what the read me states and CTP6 -> CTP7 changes. Can someone clarify the install requirements for MSDN folks Thanks, -Allen Mickey is right. You state you have an MSDN Subscription. Are you sure ...Show All

©2008 Software Development Network