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

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

skywave

Member List

yhalldorsson
Lars Middendorf
Bill52
skyover
Kevinxox
Pete Lux
upsun
Hoqenishy
short-stuff
Kerry_Dixon
Nylyst
Scott Michael
AnObject
RayHzz
NanaKV
Bill Gammill
panacea911
albnig
Marm
amitabhcy
Only Title

skywave's Q&A profile

  • Windows Forms DataGridViewCheckBoxColumn with Text Information

    [C# Windows Form] I would like to have one of myDataGridView columns as CheckBox column with a text displayed next to the checkbox . using DataGridViewCheckBoxColumn I am able to display the checkbox but the text info. Is there any solution for this I tried inherting DataGridViewColum and added a checkbox to it, but CheckBox is  getting displayed in the cell which has the focus .   Here is some code that paints the text in the check box column according to whether the cell is selected or not: // Paint the string. // Checking the Data Grid View Cell's Selected property un-shares the row. // So use the ele ...Show All

  • Visual Studio Express Editions shakalama thanks bud, one more question though, sorry

    Alrighty here's my deal, I used this code to enable my program to save... I'm making this for all of you to use, please get the simple beta program I've made so far from http://www.johnplaird.com on the upper left hand corner is a download link called ("VB Pad"), anyway here's the problem... ' from tool box get a save dialog form to put on your form, or this wont work. ' The code private sub is automatically loaded. Private Sub SaveFileDialog1_FileOk(ByVal sender As System.Object, ByVal e As System.ComponentModel.CancelEventArgs) Handles SaveFileDialog1.FileOk ' this is what you need Try My.Computer.FileSystem.WriteAl ...Show All

  • Visual Studio Cannot install GAT or any other guidance package

    Trying to install GAT or any other guidance package gives me the following error on a dialog box - "Operation is not valid due to the current state of the object" - clicking on the OK button rolls back the installation. GAX Preview release (Dec 2005) installed - no problem GAT version: Preview release (Dec 2005) Visual Studio version: VSTS (2005) O/S: Windows XP service pack 2 .NET: Version 1.1 and 2.0 installed MSI: Version 3.1 EXCERPT OF THE VERBOSE MSI LOG: === Verbose logging started: 3/31/2006 14:47:19 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: C:\WINDOWS\system32\msiexec.exe === MSI (c) ( ...Show All

  • Visual Studio Team System Error: 28002 During Install

    I've seen some other people post about this error, but I haven't really seen any solutions. I'm installing a single server deployment of TFS on a Win2K3 server with a domain admin account. The error i get is Error 28002 about halfway into the install. Here's the details from my Event Log. Detailed Message: TF50621: GSS: Failed to retrieve identity from source : [S-1-5-21-3001352713-997110418-654693162-1110] Exception Message: The specified domain does not exist or cannot be contacted. (type ActiveDirectoryObjectNotFoundException) Exception Stack Trace: at System.DirectoryServices.ActiveDirectory.Domain.GetDomain(DirectoryContext context) a ...Show All

  • Visual Studio Team System Report - developers who are not checking in their code regularly

    I would like to create a report showing code that has been checked-out for longer than 2 weeks. I don't see this type of information contained in the BisDWDB, so I would assume I need to access the VSTeamSCC db instead. Is this correct If so, what tables would I need to select Substitute "tf.exe" for "h.exe". When Buck wrote that post we hadn't removed codenames yet (Hatteras -> Team Foundation). ...Show All

  • Visual C++ lstrlenWInternal Link problems

    I can't link to the lstrlenW, lstrcpyW series of functions. The application is not compiled as Unicode, it linked perfectly in VS .Net 2003. Have the functions moved to a separate .lib Thanks, Flavio. 1>folder_shel.obj : error LNK2019: unresolved external symbol "int __stdcall lstrlenWInternal(wchar_t const *)" ( lstrlenWInternal@@YGHPB_W@Z) referenced in function "int __cdecl ocslen(wchar_t const *)" ( ocslen@@YAHPB_W@Z) The definition is in <wxutil.h>, included by <streams.h>, i.e. DirectShow (DirectX 9.0 SDK). Putting #undef lstrlenW after the include solved the problem. I have still many ...Show All

  • SQL Server Conditionally format subtotal for matrix report

    I have a matrix that will pull out the current quarters sales figures. I want to change the color of the subtotal font ONLY when we are in the current period. I have a boolean field in the matrix report that is true when it is the current month. For example, at the end of last month it displays January, February and March figures. I want the sub total to display the totals for January and February in white, whilst the totals for March are Yellow. Any ideas anyone You can use expression for the subtotal style. Just check the value of your bool field in the expression, and return the corresponding color. ...Show All

  • SQL Server Failed to install IDE using September CTP

    While installation of September 2005 CTP, the installation failed to install ID E SQL projects . Is this known issue or did I miss any thing. Regards, V SQL Server 2005 does not ship Visual Studio 2005 SQL projects. You would need to install it separately. Thanks, -Vineet. ...Show All

  • Visual Basic An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll?

    Hello everyone, I'm using the latest VB release (2005 beta 2 ) and the latest .NET framework (2.0 ). Everything was working fine earlier today as I was working on my application, which plays MP3s. It contains several forms and I moved the control I use to play media from one form to the other and changed my code accordingly. After this I began receiving the error: An unhandled exception of type 'System.StackOverflowException' occurred in mscorlib.dll I have no idea what this means and it doesnt give me a specific line that's erroring but I still set out and looked around to try and find out what's wrong, but I couldn't. I've comme ...Show All

  • SQL Server Package Validation Error + Code 0xC004801C

    Hi, I am learning to use SSIS for creating packages. I am getting the following error when I try to execute my package... Package Validation Error Error at Data Flow Task[DTS. Pipeline]:The "runtime connection "FlatFileConnection "(122)" in the connection manager collection, Connections, of component "Flat File Destination ("120") does not have a value for the ID property. Verify that the ConnectionManagerID property of the runtime connection object has been set for the component. Error at Data Flow Task [DTS.Pipeline]: component "Flat File Destination" (120) failed validation ...Show All

  • Windows Forms Binding Navigator Problem

    Hi I'm using binding navigator via binding source and ofcourse data table as datasource. When I press plus button on navigator it clears all the bound controls for new entry. Fine but when I press save button for saving the new record nothing happens. Correct me if i'm wrong. I expect navigator to work in following way. When I press plus button it should create new row in the underlying table. Then I enter values in control to reflect those values in row's columns. Next I create another temporary table for updation. I clone it from souce table and copy the changes from source to it. Now temporary should have one row but ...Show All

  • Visual C# display a series of characters

    I want to display a series of characters until end of line in a richtextbox/textbox. But since the textbox may be resized, the number of characters should be adjusted accordingly. How do I determine how many characters will fit in exactly one line given size of textbox Use the  TextBox.Columns property. This is a get/set property of type Int32 which returns the number of characters that can fit in one row based on the size of the TextBox. ...Show All

  • Visual Basic Just need the last part....

    ok, people add programs to the menu with my app, they choose a program using the browser, they then choose a name for it and put it in textbox1, this is the code for the 'finish' button: Me .BoxNumber1ToolStripMenuItem.DropDownItems.Add(TextBox1.Text)   As you can see this adds an extra menuitem and calls it whatever was put in textbox1, but i also want it 2 start the program that they chose, how would i do this do i need to add one more part to the code ok, this should be your solution: put this in the 'finish' button click event code: Dim menuItem As ToolStripItem = Me .BoxNumber1ToolStripMenuItem.DropDownItems.A ...Show All

  • Windows Forms correct xpath

    Hi, I am writing this xpath bUt getting nullexception  "Panels/Panel[@Name = 'Borders']/Themes/Theme[@Name = 'Holidays']/Cell[@Caption = 'Ariel']/MiscInfo"  Heres the XML  < xml version="1.0" encoding="ISO-8859-1" >  <Panels xmlns="http://tempuri.org/Q.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Q.xsd">  <Panel Name="Borders" SourcePath="images">  <Themes> ...Show All

  • SQL Server Returning objects from CLR Stored Procedure

    Hello All I have a few questions about how to return a DataSet object from a CLR Stored Procedure as an output parameter: Can this be done  I am having problems at execution time with declaring an output parameter of the type "DataSet". "Cannot find type DataSet" message, compiler/build does not complain, error occurs at execution time. This seems like one of the most obvious ways to create a more object-oriented approach using the technology offered in the 2005 product stack (.NET2.0/VS2005/SQL2005), Do you agree if not, what other design would you use. If this cannot be done, returning the serialization of the DataSet would ...Show All

©2008 Software Development Network