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

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

NawarT

Member List

sneakyfeline
Marc Kuperstein - MSFT
Jim Tanner
Plantron
P47
Claudio Biancardi
Roger McKinney
BobDaBuilder
Peter Zabback
Nisarck
DougP
Mike for VB
phunkie
David Hernandez Diez
Tan Silliksaar
Teddy Chen
Espens
geneus
Alone64179
Jamoflaw
Only Title

NawarT's Q&A profile

  • Visual Studio Team System Error 32000 During Installation of TFS Beta 2

    I've done some searching but can't find a resolution for this issue yet. I've tried uninstalling ADAM, rebooting, and restarting the install. No go. During the installation of TFS, I get the following error: "Error 32000. The commandline "(temp)\getadminport.exe /vstf" returned non-zero value: 1" where "temp" is my local user's temp folder. When I run getadminport.exe thru the command line myself, I see this: Setting NTAuthenticationProvider ...Show All

  • Windows Forms imports user32.dll into vb.net

    Hi, I'm trying to overload the system menu of my window form. for that purpose i'm using the "user32.dll". my statements are as this: Private Declare Function GetSystemMenu Lib "user32" ( ByVal hwnd As Int32, ByVal bRevert As Boolean ) As Int32 Private Declare Function AppendMenu Lib "user32" Alias "AppendMenuA" ( ByVal hMenu As Int32, ByVal wFlags As Int32, ByVal wIDNewItem As Int32, ...Show All

  • Visual Studio Team System TFS Mapped Folders - WSS

    Our project is using TFS for both source code and all project requirements, design and management documents.  We have set up numerous TFS groups to control read/write access for our various project roles.  We have been having a lot of problems with novice business analyst users attempting to add documents from outside the local folder areas for which they have write access priveledges in the corresponding server folder areas.  ...Show All

  • Smart Device Development C++/CLI?

    I distinctly remember being told that it would be possible in VS2005 to use C++ to develop using the .NET CF. I can't find any way to create such a project however. What gives You sure can use C++, but native only. Managed C++ support was never promised: http://groups.google.com/group/microsoft.public.dotnet.framework.compactframework/browse_frm/thread/a184d802972e440c/d8f4085cc37d6d39#d8f4085cc37d6d39 ...Show All

  • Windows Forms ComboBox

    Hi, using the ComboBox with the normal style, that is, including the edit portion, is not very nice yet for power users of the application. Suppose that what you set out to do is add a browser address bar to your application, just like the  ...Show All

  • Smart Device Development CeGetFileNotificationInfo

    Hello everyone, I'm looking for details on how to use CeGetFileNotificationInfo. The MSDN documentation ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/wcedata5/html/wce50lrfCeGetFileNotificationInfo.asp ) is not very clear on how to use function. What are the dwFlags supposed to set with Should I provide lpBuffer a reference to a FILE_NOTIFY_INFORMATION or a reference to a pointer I've used FindFirstChangeNotificatio ...Show All

  • Smart Device Development Need SQLCE samples

    Hi, I was looking for some SQLCE examples for .net 2.0 and sql server 2005 mobile edition. I'd really appreciate it if anyone can provide me this. Thanks Hi, Here is a sample on Gotdotnet site: http://www.gotdotnet.com/Community/UserSamples/Details.aspx SampleGuid=67280a8b-5473-47eb-aec2-710117f04b23 Regards, Vikram ...Show All

  • Visual Studio Express Editions Help Please on Visual Express Database Saving

    I just recently downloaded visual basic express and i've found it to be a very powerful tool despite being free. I've been moving right along through the tutorial and ran into a simple problem..... I got to this page on the "How Do I" help training: "Adding or Modifying Your Records: Updating Data" I created a project and connected it to a database. When I run the form and "update" the database on the form( ...Show All

  • Windows Forms Datagrid as 2DTable with labeled rows and columns

    Hi, How can I make datagrid look like a Table with both rows and columns labeled that looks something like below                  CD                Prints      &nb ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Point Sprite are displayed at the correct place

    Hi, I'm using point sprites in a 2D engine, based on some tutorials. It works quite well, but point sprites are not centered on (X, Y), instead of that, (X, Y) is the lower-right corner. The code is something like: result = lpDirect3DDevice9->SetFVF( D3DFVF_PARTICLEVERTEX ); result = lpDirect3DDevice9->SetRenderState(D3DRS_POINTSPRITEENABLE, TRUE ); result = lpDirect3DDevice9->SetRenderState(D3DRS_POINTSCALEENABLE, FALSE ); result = ...Show All

  • Visual C# CSC error when serializing as Windows is shutting down

    I have an application that saves data as an XML file when the application exits. There is no problem with this process when the application exits. If the application is running when Windows XP is shut down, I receive the following error box: csc.exe - Application Error The applciation failed to initialize properly (0xc0000142). Click on OK to terminate the application. What can I do to serialize out the data so I do not recieve this err ...Show All

  • Visual Studio 2008 (Pre-release) Positioning elements generated by a data template on a Grid or Canvas

    I'm trying to use an XML data source and a data template to generate some TextBlock elements from this data and present them using an ItemsControl. The TextBlocks are generated correctly, but I can't figure out how to position them on a Grid or Canvas panel. It seems the attached properties (Grid.Column, Grid.Row, Canvas.Left, etc) that I define on the TextBlocks are somehow ignored. This is the XAML code I'm using: <StackPanel xmlns="http ...Show All

  • Visual Studio Team System TF30177: Team Project Creation Failed

    Hi all, I install Team Foundation Server Beta3 in Single-Server mode, and I didn't have errors on the installation, but when I try to create a new team project the follow error appears: ------------------------------------------------------------------------------------------------------ Error TF30170: The Plugin Microsoft.ProjectCreationWizard.Portal failed during task SharePointPortal from group Portal. Explanation Plugin err ...Show All

  • Visual Studio Team System Web Test: error 400 Bad Request?

    I am connected through our internal network to the server hosting the webservice. If I remote into the Server and bring up web service asmx page, I have the option of entering values and invoking the specific method. I copy n' paste appropriate values in the textbox, click Invoke, and it's successful. If I use the very same data on my machine, then run the webtest, it fails with error 400 Bad Request. Are there any issues with the webtes ...Show All

  • Smart Device Development IOException when SerialPort.Open()

    Hi I am trying to open serialport on COM1 so that I can print some messages to it for debugging purposes. When I invoke this function below, it does list COM1 and says Port is Closed. But raises IOException at port.Open(). private void Func() { SerialPort port = new SerialPort ( "COM1" ,115200, Parity .None); //this works string [] ports = SerialPort .GetPortNames(); foreach ( string str in ...Show All

©2008 Software Development Network

powered by phorum