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

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

Stanley35

Member List

Tewks
Kloda
Alan Reed
WPINO
Scott Ramuno
SpokaneDude
DenisG
davidpmiller
shine
LucaTarrini
AntonS55
Jeffory
McROBBHOOD
spyders
DeveloperDan
FranF
ajlopez
Debasish
Ahmadbondk
W1JEQ
Only Title

Stanley35's Q&A profile

  • SQL Server install in customer server

    Hello, I'm looking for a script to export all reports from server A (include all folder tree/datasource and reports) to a file in order to import in server B I'm looking the export and import scrip in order to install my reports in the customer server (I'm using SQL 2005) Thanks There are some KB Articles see http://support.microsoft.com/default.aspx scid=kb;en-us;842425 and some links in ...Show All

  • Smart Device Development .NET CF Capturing Keystrokes

    To capture keystrokes on a form I overrode the OnKeyDown method as shown below.    The only issue here is when the form loses focus (ie: to a button etc), the messages aren't relayed to the parent form.  How can I make this happen, without overriding the OnKeyDown for every object I drop on my form. I understand V2 of the .NET CF may help here.  Can you tell me if it's still beta, and if so, how can I make this happen wi ...Show All

  • Windows Forms missed controls/properties?

    My project is an user interface for an access 2003 file. I need these things: ComboBox that check the item The user may click the arrow and select the item using the dropdown list and he can also enter the text. The ComboBox must show a messagebox telling the value is wrong. (Ive another unresolved thread for this http://forums.microsoft.com/msdn/ShowPost.aspx PostID=13251 ) TextBox for Dates TextBox for Double TextBox for Integer T ...Show All

  • Visual Basic Icons in Toolbox out to Lunch

    I don't know if this has been posted (I looked through a few pages and coudn't see any mention of it). Has anyone else ran into where the icons in the toolbox for: BackgroundWorker BindingNavigator BindingSource Button CheckBox are all represented by the same icon - a checkbox icon Is there a way to customize these if this is a 'feature' ............ also, is there a way to stop losing all the items on your form ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. backward compatability issues

    Does any one out there agree that there is a need for a backward direcy x compatability program and if this will be added to windows vista,Id like to see a separate mode for the issues raised with direct x post you thoughts on this matter please,john... I fully agree that backwards compatability is a basic requirement of both the individual technologies as well as the OS as a whole. I've also not seen anything ...Show All

  • Windows Forms Folder Browsing TreeView (like in Windows Explorer)

    Is there a control out there that is just like the left bar of Windows Explorer I want to be able to force a specific root directory, and change some of the context menus on it for my application. I would rather modify a control than ...Show All

  • Visual Studio VS2005 RC CodeAnalysis + Solution Folders = Rebuild all failed

    When I enable Code Analysis for a  C# project that is placed into a Solution Folder 'rebuild' and 'run code analysis' generate the message "Rebuild all failed". Has anybody else experienced this behavior My creation steps: Start Visual Studio Create a new C# Class Library  (select create a directory for the solution) Enable Code Analysis Rebuild the project.  As expected Analysis warnings are displayed in  ...Show All

  • Visual Studio Team System deleting a workspace from a specific repository

    in the process of uninstalling and reinstalling VSTF on my server I have created a small problem with my workspace mappings that I am having trouble resolving. Basically, I want to wipe out the workspaces for a given user, so I tried this: h.exe workspaces (to see what workspaces existed) it outputs something likes this: Repository: dpmserv1 DPMSERV1  <domain>\<user> DPMSERV1  Main project workspace Repository: http ...Show All

  • Windows Forms Databing a grid with web service object

    I was using a datagrid binding it with a web service object, i was just wondering whether it is better to bind a grid with the webservice object directly or using certain datasets to bind the datagrid to the webservice object. Please help me understand what you mean by "bind to the WebService directly"   Normally, you'll make a call on a web service method and it will return data and you bind to that data.& ...Show All

  • SQL Server IIS 6 MMC problem with ReportServer and ASP.NET configuration

    Hello, I had a working Report server till I did the following: - Go to IIS 6 MMC - Display Reportserver vs properties - click on the ASP.NET tab (2.0 50727) - click on the "Edit Configuration" button - Look at the config, do not change nothing - Click OK This has kill the Report server, it is now giving an error: An internal error occurred on the report server. See the error log for more details. (rsIn ...Show All

  • Visual Basic VB 8 or VB.NET 2.0

    Just a quick question about what people are calling the new version of Visual Basic.  Around the office we call it VB 8 and regard VB.NET as the worlds worst marketing decision.  So how come Visual Basic was the only microsoft product that didn't ditch the .NET tag   Was it just to confuse us when searching google for code When the .NET framework first came out every microsoft product got tagged with .NET.  There was W ...Show All

  • Visual C++ AfxBeginThread error.

    Hi again! I don't know that what did I wrong! this my code: void CThreadTestDlg::OnRunth() { ///-----------------CWinThread* m_pThread as public HANDLE hThread= m_pThread-> m_hThread; ::WaitForSingleObject(hThread,INFINITE); m_pThread=AfxBeginThread(ThreadSimple,(LPVOID)NULL); } UINT CThreadTestDlg::ThreadSimple(LPVOID pParam) { CTest *pTest=( CTest *)pParam; pTest-> AddToListBox (&m_list); UpdateData(FALSE); return 0; } ...Show All

  • Visual C++ fstream issue in VS 2005

    Hi I had a project in VS 6.0 in which I was using fstream to get and put data into a file. After conversion to VS 2005 there is a problem with the fstream functions. I manage to open the stream once and read something from it, and then I close the stream and reopen it in binary mode and now the get operation returns an empty buffer. is.get( szBuf, 10000, '|' ); Maybe I'm doing something wrong and I would really appreciate your help because it's ...Show All

  • Visual Studio Team System Every thing is "Added Later" in the report Unplanned Work

    When I look at the report Unplanned Work I see a graph only containing "Added Later" figures. How come every thing is Unplanned Work How does TFS keep track of what is planned and what isn't This report doesn't make any sense for me as it is right now. I'm using TFS Beta 3 Refresh with The MSF for Agile Software Development (build 98) and Visual Studio 2005 RTM. Thanks , Kristofer Hi Kr ...Show All

  • Visual C# How to write a binary literal in C# ?

    I know that hexadecimal literals can be provided with the '0x' prefix, but the '0b' prefix does not seem to work for binary literals. What is the syntax for binary literal in C# Thanks in advance, Joannes I have posted a suggestion about this at http://lab.msdn.microsoft.com/ProductFeedback/viewfeedback.aspx feedbackid=e3427948-237b-4ffd-95d6-2c3ddbf3d87a (If you're interested too, you can vote on the sugge ...Show All

©2008 Software Development Network

powered by phorum