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

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

narend

Member List

Somthing Wrong
Tom Medhurst
Beneventi
dfl
BelalSalah
Francis Tracey
davinci coding
Joel Triemstra
soconne
Brad Smith
Aaron Leiby
Michael Per
Blake01
Tomasz K.
Sara_H
unthreaded
cybertaz69
adb123
MosheDeutsch
AndyPham
Only Title

narend's Q&A profile

  • Visual Studio Express Editions Adding more than one record

    I can't seem to add more than one record at a time. If I want to add another record after the last record added, I have to go out of the programme completely and re-run my programme. If I don't, an exception is thrown, any ideas why this is happening Here's my code below: Private Sub btnSave_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click Dim newVenueRow As WhiteboardDataSet.VenueRow newVenueRow = Me .WhiteboardDataSet.Venue.NewVenueRow() newVenueRow.VenueName = txtVenueName.Text newVenueRow.description = txtDescription.Text Me .WhiteboardDataSet.Venue.Rows.Add(newVenueRow) Try Me .Validate() Me .VenueBindingSource.EndEdit() Me .VenueTableAdapter ...Show All

  • Visual Studio Team System Filtering work item with a data range and returning the date as part of the datasets fields simultaneously

    Hi, I'm able to filter based on a date range. The problem is that I can't find a way to add the Date dimension to the list of column returned by the dataset. In other words, I want to return a list of work item that is filtered based on a "from date" and "to date" and have the date of each work item records in the returned list. Here is the query I am using (sorry I am pretty new to MDX...): SELECT NON EMPTY { [Measures].[Current Work Item Count] } ON COLUMNS, NON EMPTY {( (StrToMember(@StartDateParam):StrToMember(@EndDateParam)), [Work Item].[System_Id].[System_Id].ALLMEMBERS * [Work Item].[System_Title].[System_Title].ALLMEMBERS * [Area].[Area Path].[Area Path].ALLMEMBERS * [Work Item].[System_ ...Show All

  • .NET Development Question about Ngen.exe and the assembly "Core question".

    Hello all Simply, when i build an assembly and try to run it, we all know that the JIT(Just in-time Complilation) will start building native CPU instructions that represents my assembly then run it. also we know that if i tried to run it again within the same session i will find it faster than the first time cause the CLR has cached the CPU instructions for my code for future uses. but we know that if you restarted you machine, the CLR will redo all the stuff again and again. My question is: if i used Ngen.exe with my assembly, will i get a fully native code file that will run witout needing to be converted to native code again i know that the answer is yes, but i want the details exactly plz. Second Question, why the out ...Show All

  • Visual C++ Adding a window within a window.

    Hi all, I have created a window(without title bar) class with image manipulating functionalities. Just I want to show this window as part of another window, that is with in a window just like controls. I know to display as a separate window. But I just want to show as part of parent window, like a control. I hope my question is clear. I am using Visual Studio 2005. :) Purusothaman A I think you should create your window with WS_CHILD style, but without styles specific to separate windows. When you create it with CreateWindow function, specify the parent window as a parameter. The proper place for creating child controls is the handler for WM_CREATE or WM_INITDIALOG notifications.   I hope thi ...Show All

  • Smart Device Development How to install .NET Compact Framework 2.0

    I may be missing something, but I have looked everywhere on how to install CF v2. I have a new iPAQ hx2495b with windows Mobile 5.0. Just applied the new ROM update from HP. Installed a small app I developed using one of the mobile webcasts. When I ran the app it gives an error saying it was using a later version of the cf than the one installed on the device. I read somewhere on a Microsoft site that new Windows Mobile 5.0 PC's did not come with v2 in their ROMS and you would have to install it. I used remote registry viewer and indeed it looks like cf is v1. So is there a step by step guide on how to install v2 onto the DEVICE If you don't have VS 2005: 1. Download NETCF V2 installer: http://ww ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Game Components Demo

    I've posted a video of my Game Components demo I did at Gamefest. http://blogs.msdn.com/xna/archive/2006/08/31/734204.aspx One thing though - have you guys given any thought to a licencing model for the (more complex) components For instance, GarageGames allow 3rd party developers a way of selling add-ons. Seems to me that there are likely to be a few experienced games developers knocking around these forums, who could produce some excellent components if they could keep the source to themselves, and sell them on (paid per developer seat, or just when deployed as a sold game). After all, this is exactly what has driven the professional component market on the desktop. Andy. ...Show All

  • Visual Studio Team System FxCop 1.35 Released!

    We have just released FxCop 1.35! See the following blog entry for more information: http://blogs.msdn.com/fxcop/archive/2006/06/23/644638.aspx David, I'm trying to add some custom rules in FxCop. I've built the dll but I need to know which IDs i can assign to avoid collision with existing rules. Thanks in advance, Arunava ...Show All

  • Visual Studio Team System Can't delete projects using TFSDeleteProject

    I'm attempting to delete a project using the TFSDeleteProject command from a client machine. However I get the a " TF50309: You do not have sufficient permissions to perform this operation." error. The output is below: Deleting from Build ... Done Deleting from Work Item Tracking ... Server was unable to process request. ---> TF50309: You do not have sufficient permissions to perform this operation. Server was unable to process request. ---> TF50309: You do not have sufficient permissions to perform this operation. I've checked my permissions and I am part of the '[server]\Team Foundation Administrators' group by way of a/d group membership. I can create projects without any problem. I've also tried using the ...Show All

  • Smart Device Development setting margin to ListView?

    Hi, Can any one tell me how to set the left margin for the listview at I need space at left side (before the text). Thanks in Advance, Hello Malleswar, Could you please tell me where the left margin locates In a ListViewItem Or just an empty column acts like a space Thanks, Zero Dai - MSFT ...Show All

  • SQL Server Performance problems with SQL commands in data flow task

    SQL statement within an OLE DB Command component is extremely slow (hours, days). Same SQL statement executed within a query window of SQL Server Management Studio takes only a few seconds. Using a fairly simple SQL UPDATE statement against a table with only 21,000 rows. Query: UPDATE Pearson_Load SET Process_Flag = 'E', Error_Msg = 'Error: Missing address elements Address_Line_1, City, and/or State' WHERE (Address_Line_1 = ' ' OR City = ' ' OR State = ' ') AND Process_Flag = ' ' Any suggestions on how to improve the performance of this task or an alternate solution are appreciated. Thank you. Thank you Phil! I just moved the queries (I actually had 4 separate queries) that I was execu ...Show All

  • SharePoint Products and Technologies transfer local moss site to WSS .. its possible~????

    Hello I want to know if its possible transfer local Sharepoint Server 2007 sites (with their funcionality's) to WSS server (there is no Sharepoint Server Portal, only WSS) its possible and how using backup and restore thanks My best regards, I wonder if it's now possible in the v3 products. In the v2 products it was only possible from WSS 2.0 to SPS 2003. The reason it was not possible from SPS 2003 to WSS 2.0 was because of the extra functionality available (even if not used) in those SPS 2003 sites. I would have thought the same would apply to v3 too, but maybe if you restrict the question to only those sites that are based on common template types (so not Publishing for instance which WSS 3.0 doesn't know about) it ...Show All

  • Windows Forms Tab Control tooltip

    Hey I am using Visual C# 2005, How do you make it so that if you put your mouse over a tab on a tab control then it will show a tooltip like this: Title of site URL of site So a 2 lined tooltip Thanks :) Still, it does not show the tooltip when my mouse is over the tab... this is what I have for tabpage 1: this .tabControl1.ShowToolTips = true ; tabPage1.ToolTipText = (thiswebpage.Document.Title + thiswebpage.Document.Url.ToString()); ...Show All

  • Visual Basic Installing VS 2005 keeps on asking ' Please insert the disk: Visual studio 2005'

    The installation process for Visual Studio 2005 prompts ' Please insert the disk: Visual Studio 2005' everytime when I try to install VS2005. This is what I did: * Downloaded VS 2005 from the MSDN members download site.    File name: en_vs_2005_pro_dvd.iso (size=2,825,748 KB) * Used MagicISO tool to unpack the files   * Used Nero 6 to write the extracted files to the DVD * Created a brand new Virtual PC with Windows XP + SP2 * Start the install process in the VPC by clicking on the setup.exe    in \vs on the dvd * Select the default installation options * Installation starts for a long time and then prompts:    Please insert the disk: Visual Studio 2005'    The screen show:   ...Show All

  • SQL Server composite stored procedure

    Hi, I am trying to write a procedure in SQL which will composite values in a table. I have an increment list, which increments by 0.1, I need to average values so I produce composites for 0-1, 1-2 etc grouping by id. The script below produces a table then a procedure, but I'm stuck on the syntax and get the error Column 'Increment.increment' is invalid in the select list because it is not contained in either an aggregate function or the GROUP BY clause The script will run on the master database. The end result should look like the following: thanks for any help id inc_from inc_to comp_val ---------------------------------------------------- 1a 0 1 4.6 1a 1 2 4 1b 0 1 3.9 1b 1 2 ...Show All

  • Visual Studio 2008 (Pre-release) Using UserControl's

    Hi, I just noticed that the WinFX Extensions for Visual Studio adds a template for creating a WPF UserControl. So in order to experiment with it I created a new UserControl. Lets say the UserControl class has a namespace myNamespace , and the class itself is called myUserControl I then went into my main windows XAML and added a mapping element above the root like so... < Mapping XmlNamespace="ns" ClrNamespace="myNamespace" > After that I added an extra attribute to the main Window node like so... xmlns:ns="ns" So basically  my main windows XAML looks like... < Mapping XmlNamespace="uc" ClrNamespace="myNamespace" > <Window x:Class="MyWindow.Window1"     xmlns= ...Show All

©2008 Software Development Network