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

Software Development Network >> Jesper Ekenberg's Q&A profile

Jesper Ekenberg

Member List

JACorona
TomasLeung
Ray C
Bill McKnight
UnWiNd
smartpi
joey022461
Pankaj11
proddl
Troy Lundin
Regis Brid
Elham Sarikhani
Haplo_69
Amos Soma
Esterill
hrd2hndl67
RuiSousa
Fusion54
kaizen
RizwanSharp
Only Title

Jesper Ekenberg's Q&A profile

  • Visual Studio Team System I cannot open the Process Template Editor Tool

    Process Template Editor on http://www.gotdotnet.com/ Used to graphically manage process templates, work item types, and global lists. but While i am starting the tool it gives me the following error "Could not Load file or assimbly 'Microsoft.TeamFoundation.WorkItemTracking.Client, version =8.0.0.0, Culture=natural, PublicKeyToken=b03f5f11d0a3a' or one of its dependencies. the system cannot find the file specified." Can any one tell me what's wrong Apparantly the tool is not able to find the object model dll, so have you tried installing the tool Was there any changes done like removing it from GAC Last option would be to debug the assembly loading by using fusion log viewer http://msdn2.mic ...Show All

  • .NET Development data access problem

    I am working on a winforms app that utilizes ODBC to acces paradox tables and a WinMobile database(.sdf) in order to sync table records. My problenm is that as soon as I add a grid with one of the Mobile database tables I get this error Unable to load DLL 'sqlceme30.dll': The specified module could not be found. (Exception from HRESULT: 0x8007007E) From this code [System.Diagnostics. DebuggerNonUserCodeAttribute ()] private System.Data.SqlServerCe. SqlCeDataAdapter Adapter { get { if (( this ._adapter == null )) { this .InitAdapter(); Error on this line.... } return this ._adapter; Already tried this http://msdn2.microsoft.com/en-us/library/ms171861.aspx I thought that was containe ...Show All

  • Smart Device Development How to pre-integrate an application to BSP image

    I wonder how to write an application and build it with my BSP image, so that I don't need to execute installation procedure for the application after my BSP image downloaded and boot up. For example, I like to write a new game application, and I hope to make it appear on the game zone with the orignal two built-in games right after I download my BSP image to my board. Thanks. I found the term should be "pre-bundled" in MSDN link http://msdn2.microsoft.com/en-us/library/ms832368.aspx So, my question can be corrected as how to integrate a "pre-bundled" application to Windows Mobile OS image Thanks for any help in this question. ...Show All

  • .NET Development Microsoft .Net Framewok 2.0 Windows-Based Client Development

    Hi This is really for the authors for the above book namely Mathew Stoecker. I am woking through the exercises in the book, chapter6 lesson2 exercise3 working with parameters in sql. It refers to stored procedure GetFreightCost for the Northwind database but this proc is not in the database. The msdn downloads offer only the AdventureWorks for the SQL2k5 Express I am using Visual Studio 2005 Standard with SQL Express. pleases could someone tell me if there is a latest version of Nothwind, or supply me with the script for the SProcs mentioned in this book. I am a beginner so a bit stuck. Thanks Baldev Hi, I created this one just to help me get past this chapter.... H ...Show All

  • Commerce Server Commerce Server 2007 Shipping Options

    Hello, I am trying to figure out how to get shipping rates including the price and MaxLimit (the data from ShippingRates table). I can get the shipping method data by using the ShippingMethodHelper.GetShippingMethod() method, but I can not figure out to get the child data from ShippingRates table. Please help. Thank you, Dmitry If you need to display exact cost based on the items in the basket you can create a custom pipeline which calls the shipping calculation pipeline components. The pseudo code: ShippingMethod[] shippingMethods = ShippingMethodManager.GetShippingMethods() foreach(ShippingMethod shippingMethod in shippingMethods) { foreach(LineItem lineItem in basket.LineItems) { lineItem.Shippi ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Individual mesh material transparency and reflection

    I have a room, which is a mesh; it is made up of approx 100 materials. A few of these materials are glass windows. I would like to make materials which use a specific texture (glass) to be transparent (and, if possible, reflective). Any ideas on how to get started This is my render method which is called in the Direct3D render loop: public void Render() { for ( int i = 0; i < content.LobbySceneMaterials.Length; i++) { ExtendedMaterial material = content.LobbySceneMaterials ; string key = material.TextureFilename; if (! String .IsNullOrEmpty(key)) { // Set texture from content where filename matches. Texture texture = content.LobbySceneTextures[key]; device.SetTexture(0, texture); ...Show All

  • Software Development for Windows Vista Design Pattern

    Does anyone have a design pattern for creating a workflow that allows passing properties from one activity to another. It seems pointless having a workflow where custom activites cannot store a property at run-time for another activity to use at run-time because of activity cloning. I am trying to build a IVR workflow using Windows WF. One of the activites I created plays a wav file to the caller and waits for a response. Once a response is received the activity is closed and the response is stored in a property. The next activity needs to know what this response is in order to excecute. This next activity may be in another state, or within a while loop activity or ifelse activity etc... I do not want to have to store these acti ...Show All

  • Windows Forms renaming a picture to a file

    i need to change the format of an image from jpg to dll so i can use it as an icon. im using this vb code to handle the conversion theBitmapSize.Save(savefiledialog1, System.Drawing.Imaging.ImageFormat.dll) i can't get it to accept the dll part can someone help The reason you got errors when trying to save it as ImageFormat dll is because dll is not an image format. At all. Gqlu's method works good except that when you go to view your icon via Windows Explorer, it will not show its picture in certain views. You will have to use the GetThumbnail function to fix this I believe. ...Show All

  • SQL Server SSIS logic for storedprocedures

    Hi,       Do you have any suggestions of how to transform the below code in SSIS       I guess we should use foreach loop container...... also i would appreciate if you can post some related articles.   UtsavV wrote: better if u place iot as pseudocode Quite right. ...Show All

  • Visual C# MenuStrip problems

    I have a MenuStrip with a bunch of ToolStripMenuItems on it. My problem is that my form can have 3 different sizes (set in code and not modifiable by the user). The middle and larger sizes everything is fine. But when the window is resized to the smallest size the MenuStrip no longer displays all the items that it contains, it cuts off the last one. I noticed there was a "CanOverflow" property on the menustrip but setting it to true did nothing to help me out. Anyone know of anything I can do that doesnt invovle changing the size of my window Thanks in advance Fradam wrote: WHen i set it to flow it just causes the last item on the menu to go to a new line (not what i want). Th ...Show All

  • SQL Server How to update a column in input dataset by SQL Query?

    I'm bothered by an issue of updating a column in input dataset from a update query. It looks like SSIS has a very poor function on this. Example, I have an input dataset of name, salary, dept_no, and I have another table called departments which has fields of dept_no, Dept_name, basic_salary now I want to update salary column in input dataset with basic_salary if it's salary is smaller than the basic_salary. update #tmp set salary = basic_salary where #tmp.salary <departments.basic_salary and #tmp.dept_no = departments.dept_no   how could I impletement this in SSIS package I tried with lookup, modify scripts by enabling memory restriction. It doesn't say any error when I save the package, but I never get pass debu ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Space Dust And Particles

    So one thing I wanted in my game was a way to fill the space up with dust and particles. Just little things here and there to give a sense of motion when there aren't any larger objects around. Any ideas how to go about this My one idea was simply to use billboarded textures for various sized particles but I'm not sure I could create the number I wanted. So before I went ahead with this slightly more tedious approach (which also requires I create all the objects), I figured I'd see if anyone had any ideas. Whatever you do, just make sure that you pull our dust sprites/billboards/whatever from a pool of existing ones. that way, as you move along ... particles that move offscreen can simply be repositioned a ...Show All

  • Windows Forms How to create shorcut in a Setup Project

    How to create web page shorcut in a Setup Project My project has two componets, Server components and Client Service components. Server components is composed of two web applications. It has a separate installer to be installed on the web server. Client components is simply a windows forms application. It also has separate installer. My problem is, I want the Client installer to create two web shorcut on User Desktop and Start Menu/Program Files/Client Components folder. The challenge here is that the client installer dont know what is the path of those two web applications. Path of these two web app is dynamic depends of what administrator enterd on my custom Configurator window during server component's installtion. hm ...Show All

  • Visual Studio 2008 (Pre-release) Using an image as a repeating background

    I want to use an image as a background for my canvas but I just can't get it to work. The image should be tiled -not stretched - and in it's original size. Heres the XAML: < Canvas Width="300" Height="300" > < Canvas.Background > < ImageBrush Stretch = " None " TileMode = " Tile " ImageSource = " Background.jpg " /> </ Canvas.Background > </ Canvas > It just won't tile... Any ideas Thanks! I found the answer: < ImageBrush Stretch = " None " TileMode = " Tile " Viewport = " 0,0,[image width],[image height] " ViewportUnits = " Absolute " ...Show All

  • Visual C# Docking problem

    Hi, I've got a mdi form with a toolstrippanel(+toolstrip) left and one on the right. I've also got a panel between the toolstrips. I want it to dock(fill) it, but when I do this, the panel is filled also behind the toolstrippanel instead of only between the toolstrips. Anybody how to solve this I've tried about everything now Stil the same result. Only when I add a toolstripcontainer it works. But because i've got controls on the back of the Mdi_parent I can't use it. The controls are always drawn over everything else(forms/panels/...). ...Show All

©2008 Software Development Network