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

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

Chmely

Member List

igp04gueniat
notanotherusername
Balaji Rathakrishnan
Markus Buhmann
Atilla
Ravi Kumar Patel
firstspirit
Steven Somer
insanepickle
Paul Smith - Sagestore
O.S.S
Ralph11234
Alains
Neil Munro
Marwan Tarek
Sameerhanda
Cathal
Monia Anand
GregR
Dennis Cheng.MSFT
Only Title

Chmely's Q&A profile

  • Software Development for Windows Vista Boot Configuration Store File, BCDEDIT says i dont have one.

    Hi all, i have a copy of vista on my c partition and XP on the D. Vista seems to be "all there" but i can't get it to load. After scouring the internet for very little info i learned of bcdedt to modify boot up for vista. I read about vista having an additional boot loader that loads first and it can be modded with bcdedit, well i tried to use it and when i run it i get the following error message. " The boot configuration store file could not be found. " Also, i have not seen any other boot loader other than the standard "boot.ini" one. I created an entry for Longhorn in the boot.ini (which is stored o ...Show All

  • Visual FoxPro How to get IP Address on Clien of LAN....? Help me!!!!!!

    Hi,! I want get IP Address on Clien of LAN, but I don't know what to use for get it. I need your help, please. Thanks all...!     How about :- o = CREATEOBJECT("MSWinsock.Winsock") o.LocalIP HTH, Robbo. ...Show All

  • SQL Server SQLDependency and stored procedures

    Hi, Some info about my setup (all on the same local network): Sql Server 2005 Standard Edition running on a Windows Server 2003 Standard Edition R2 development server VS Studio .NET Standard Edition running on my XP Pro x64 workstation. I am working with the source code for transact-sql and console application that can be found here: http://www.codeproject.com/useritems/SqlDependencyPermissions.asp This example works perfectly. I am now trying to get SQLDependency working with a stored procedure. I create a sp via Studio Manager on my workstation with the following transact-sql: SET ANSI_NULLS ON GO SET ...Show All

  • Visual Studio Get Latest from IDE doesn't always Get Latest

    Here is our setup: Development machine: WindowsXP, VS2005, VSS2005 SourceSafe Server: Windows2003, VSS2005 Peridically when developers get latest version of a project or even the whole solution from the VS2005 IDE, it will not get the latest version of all files. There have been instances where one developer will check in a change and the other developer tries to get the latest version and the IDE does not get it. No error..it just didnt get the latest. Then if they try it again on the project or even on the specific file, it will work. So in some cases, it might take 2-3 tries of Get Latest for it to actually work. Anyone ever seen th ...Show All

  • SQL Server VS2005 YES! Management Studio NO ...

    I have a machine running Windows Server 2003 x64. It has VS2003 running on it and VS2005. in VS2003 I can connect fine to a SQL Server 2000 database running on another machine on my network. If I launch SQL Server Management Studio, I cannot connect to it.  Generally, the error is a timeout. The VS2003 credentials seem to be much the same as the ones I enter for Management studio (Integrated security, same name, same database). The one I'm trying to attach to is not seen in the browse list - another one is visible though I fail to get through to it which I try and connect! I've done all the things I can think of with enabling protocols ...Show All

  • .NET Development No symbols are loaded for any call stack frame. The source code cannot be displayed.

    Hello. I installed VisualStudio.NET 2005 a few days ago.  ( not beta ) While I'm debugging, I'm faced with strange message box. -- MessageBox -- No symbols are loaded for any call stack frame. The source code cannot be displayed. -- Debug Detail Window -- FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x7a2b5aec, on thread 0x358. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stac ...Show All

  • SQL Server Stored Procedure being saved in System Stored Procedures

    We recently upgraded to SQL Server 2005. We had several stored procedures in the master database and, rather than completely rewriting a lot of code, we just recreated these stored procedures in the new master database. For some reason, some of these stored procedures are getting stored as "System Stored Procedures" rather than just as "Stored Procedures". Queries to sys.Objects and sys.Procedures shows that these procs are being saved with the is_ms_shipped field set to 1, even though they obviously were not shipped with the product. I can't update the sys.Objects or sys.Procedures views in 2005. What effect wi ...Show All

  • .NET Development The new version: 2.0.50727

    I have heard that. But not sure. Thanks http://www.microsoft.com/downloads/details.aspx FamilyID=0856eacb-4362-4b0d-8edd-aab15c5e04f5&DisplayLang=en ...Show All

  • Windows Forms DataGridView - Select row programatically

    How can I programatically make a row in a DataGridView selected The SelectedRows property is read only. "Rows" is a property of the DataGridView that returns all the rows as a collection. For a particular Row, you can set the .Selected property to True (or False) to select (or unselect) that Row. For example, dgv = new DataGridView . . . dgv.Rows(index).Selected = True ...Show All

  • Windows Forms Problem with Adapter.Update

    I have a datagrid, dataadapter anda dataset. I need to update the database when the user moves to the next row in the datagrid. I have awritten the following code in DataRowChangeEventHandler. But it is not updating my datatbase. Can someone please help me with this   Adapter.Update(ds.GetChanges(),"AllModels"); ds.AcceptChanges(); The event is firing but it is not savin ...Show All

  • SQL Server Reporting service with sql server 2005

    I am developing an application using Visual C# 2005 and SQL Server 2005. I would like to make report services from feature of SQL Server 2005. Can I make report from reporting service with SQL Server 2005 How to make the report service Best regards, Simba   Hello, I use Visual Studio 2005 and SQL Reporting Service 2005. My computer is windows 2003 Server. I have created one reporting service project. In my project, I have two parameters namely @startdate and @enddate. I have one matrix. I want to format background row of the matrix to have different colors. I use the expression like IIF(RowNumber(Nothing) Mod 2,&q ...Show All

  • Windows Forms ThreadStateException from background thread manipulating its control

    Hi, I came to this exception: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it. and I don't know what to do with it. My application creates some Panels with a lot of components at run time (according to the database entries). Each panel takes a second or two to load so I decied to use multithreading and choosed the ThreadPool. Simply something like that: (for each page in Form_Shown) Thread.QueueUserWorkItem( <delegate to CreateFormPage> ) ... private Panel CreateFormPage( byte page) { Panel r = new Panel(); ...Show All

  • Windows Forms DataGrid with hidden columns ColumnHeader Text GUI Bug?

    Hello - I have a DataTable with about 50 columns. I display the DataTable in a DataGrid. I have created DataGridColumnStyles for each of the 50 or so columns. Because I want to allow my user to decide during runtime what columns to see, I have implemented "hiding" DataGrid columns by setting the DataGridColumnStyle Width property for the columns I want to hide to 0. Unfortuantely, I'm getting some weird GUI effects.  The columns are correctly hidden or visible, but the Column Header Text in my last visible column looks like it contains all the hidden Column Header Texts. It looks like the DataGrid control, for some odd reason, is painti ...Show All

  • Windows Forms Custom Actions: FolderBrowserDialog not working properly

    I have added an installer class with the wizard and use a custom action to start my custom action in the installer class. But when I try to show a Folder Browse Dialog, the folders are missing, so there is nothing to browse with! All the buttons are there OK. Imports System.ComponentModel Imports System.Configuration.Install Public Class Installer Public Sub New () MyBase .New() 'This call is required by the Component Designer. InitializeComponent() 'Add initialization code after the call to InitializeComponent End Sub Public ...Show All

  • SQL Server How can I use a Date Picker in a report

    I have a parametrized report which actually uses a combo with dates to render the report. And I want to change it for a Date picker. Can I do it Thanks in advance. That's right - the date picker was added after Beta 2 (from what I can recall, it first appeared in the June CTP). At this point, Beta 2 is way out of date, and you should be looking at the released version, if possible ... ...Show All

©2008 Software Development Network