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

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

Jurg

Member List

Kulwant Dhaliwal
yassir
Philippe B
Leo Huang
__Jim__
Marc Young
Chris Lee - MSFT
Pieter van Kampen
Drew McCauley
SparkyFlooner
naylouvar
Verne Logan
Mark E. Johnson
Phil Winder
Wolverine10
Vlado H
Prasad Honrao
DotNet_Lover
pr123
abhig
Only Title

Jurg's Q&A profile

  • .NET Development Taking Values

    Hi Ive been trying to figure out how to take a value from a cell in a datagrid that imports data from excel so that i can take the value perform a calculation and move it to another cell on another datagrid but i cant find a way to remove the value or move it can anyone help plz its urgent! thx The purpose of the datagrid control is primairly for display purposes. If you want to manipulate the data ...Show All

  • Visual C# how to hide menu item with child menus

    Hi, In menu contraller we can hide child menus by seting there text property to empty. if that child menu has his child menus even if we set all text properties to empty it shows a empty arrorw on the menu. if any one know please tell me how to over come this. i mean i want to hide menu items with child items , in programaticaly. Thanks and regards Jenifer Hello Jennifer. I'm not sure what classes/ob ...Show All

  • Windows Forms help with Saving Files and Folders (not using Dialog)...

    I am a neb with Windows Forms but I have working with Asp.Net web apps for about a year. I am writing  my first Windows Forms program and I am trying to write a simple program for renaming pictures in a folder. For example, lets  ...Show All

  • SQL Server multiple calls to SP

    Hi group, I've got a performance issue. Here's in global what the sp (Let's call it SP_A) does. Step 1 Call a different SP (Lets call it SP_B) and store the output in a variable Step 2 SP_B runs a select statement that returns 1 value Step 3 SP_A uses this value as a parameter in a select statement. Step 4 The result of the SP_A is the result of the select statement (744 rows (always)) All tables used in SP_A and SP_B are temp tables. Total perf ...Show All

  • Windows Forms Windows Form Resizing !

    I've recently switched from my desktop to widescreen laptop and some of the windows forms in my project are misbehaving. I've been trying to eliminate the problem, and the following is the outcome: * All Forms opened in Designer and saved on my laptop (resolution: 1680 * 1050, widescreen), these are the forms affected by not resizing appropriately on lower resolution computers * If i go back to a machine, which has 1280 * 1024 resolutio ...Show All

  • .NET Development TimeSpan or Stopwatch not as accurate as Environment.TickCount

    Can someone, maybe preferably from Microsoft, confirm a behavior that I'm noticing concerning the lesser accuracy of using TimeSpan and the Stopwatch object to time something in milliseconds versus using Environment.TickCount. Specifically, I'm noticing that in my Ping class that when I use Environment.TickCount to measure how long a host responds to my message, the result in milliseconds is accurate compared to the results when I use  ...Show All

  • .NET Development Hai everyone this is new commer may u teach me well with lots of expectations i have joined this forum.

    how to get the result of the button on the next page with out occupying space on the displaying page. Indetail: when we add the data to a feild and click update after sucessfull completion of update i want to receive an message "updatedsucessfully" in a page which navigate after the update function. i dont like to occupy any space in this regard of placing a label which i had done untill now. can any one help me on my wa ...Show All

  • .NET Development c# or vb.net

      What is going on. When c# first came out M$ was pushing users to move to that. Now I see an article that show that you can now translate c# to vb.net.   http://msdn.microsoft.com/vbasic/default.aspx pull=/msdnmag/issues/06/02/PasteAs/default.aspx   why does it seem like vb.net is being pushed so much more in the 2005 version. I just decided to move to c# from vb.net because of the following. 1.forced declaration ...Show All

  • Visual Studio 2008 (Pre-release) Sparkle panels UI

    Anyone know if the main user interface controls in Sparkle will be available as a sample or as controls The UI would be great for a test app I'm working on and I don't want to reinvent the wheel if major parts of it will be available. Hi John, We don't have plans for that in version 1 of our product, but we will try and publish as many of the “cool things” in Sparkle as components. For example, our welcom ...Show All

  • .NET Development XslArgumentList conversion problem: values not passed

    In my previous post: XslTransform conversion problem: "White space cannot be stripped from input documents that have already been loaded.", I described problems getting an XslTransform to work. I have since been able to verify that the XmlReader option that I had tried was indeed producing data. The problem seems to be that the XslArgumentList parameters are not being set in the xsl file. The values can be verified via the debugger at ...Show All

  • Visual Studio Team System Continuous project checkout

    I'm experiencing a rather frustrating problem with a few projects that are being automatically checked out every time I access any solutions which reference said project.  I get a specific message each time it occurs: "There appears to be a discrepancy between the solution's source control information about some project(s) and the information in the project file(s). To resolve this discrepancy it will be necessary to check out the project ...Show All

  • Visual Studio Package Load Failure - VS 2005 Final Release

    I just installed the VS 2005 final on a machine that has had no beta software installed on it (just the prior version of VS 2003 - which i removed before installing 2005) and when i started it i get errors about "Package Load Failure" or the "visual studio common ide package".  I've found some post about this proble in beta 2 and they seem related to not uninstalling the previous beta correctly... but i am installing this brand new... why w ...Show All

  • SQL Server Sharing time intelligence across cubes

    I have a couple of cubes (orders, deals, etc) and they all share the same Time dimension. For one of the cubes (Orders) I added time intelligence features like Year Growth %, etc. This process added one attribute to my Time dimension. My question is, do I have to go through this process again with every cube if I want the same time intelligence features This means the process will add more attributes to the time dimension for every other cube ...Show All

  • SQL Server SSIS The product level is insufficient for component "Fuzzy Grouping"

    Hello, I have a Dataflow with a Fuzzy Grouping component. When I load this package in my application and execute it, i get the following error message: The product level is insufficient for component "Fuzzy Grouping" (561). Whithout the Fuzzy Grouping component the Dataflow works properly. I work on a client machine with following installations: framework 2.0, SQL 2005 Standard with all services, VS 2005.  What's wrong, can you ...Show All

  • Windows Forms Accessing Form Caption in Subclass

    I'm using .NET 1.1 I have a form class called BaseForm, and I create a subclass of BaseForm called SubclassForm. In the constructor of Baseform, I add text to the end of the Text property: public class BaseForm:Form {    public BaseForm(string sSuffix)    {       this.Text+=sSuffix;    } } public class SubclassForm:BaseForm {    public SubclassForm(string s ...Show All

©2008 Software Development Network

powered by phorum