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

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

rbellamy

Member List

namlow
Carlos Vara
Arturo_RX7
MuthuDotNet
Constantin Crstian
Sunil Sinha
Bshivley
vpsdhillon
AppzGuy
myNameIsRon
R1ZWAN
HarryS
Rido
Prius
cyberkid1043
DarkestShadow
CFQueb
tweston
--JC--
W1JEQ
Only Title

rbellamy's Q&A profile

  • Windows Forms group field in the crystal report

    hello i have a crystal report which contains one group field,which groups the category of the products,in the first page of the  report i have: category1 ------------ product1 product2 product3 product4 product5 category2 ---------- product1 product2 product3 product4 in the second page i have product5 product6 category3 ---------- product1 product2 if i need to find a method that when products of a certain  category splits into two&nb ...Show All

  • Windows Forms VS2005: How to handle DateTime <=> DateTimePicker and NULL less verbose

    Hello, I have a DateTimeForm (single DateTimePicker which holds a nullable DateTime) The typed datarow (_row) throws an exception for null so i need the first if And I need another if/else for handling the null value correctly for the return value... this seems very ugly to me...can someone simplify this : DateTimeForm form = new DateTimeForm(); DateTime datetime = null ; if (!_row.IsdatetimeNull())     datetime = _row.datetime; form.datetime = datetime; if (form.ShowDialog() == DialogResult .OK) {     if (form.datetime == null )    _row.SetdatetimeNull(); else   & ...Show All

  • Windows Forms application.run

    I can't understand what does Application.Run method  really do. It load a form, but how can I reference to  this form after that  If I create a new instance of the  form in main sub and then I pass it to Application.Run, I  have the form loaded but the object created in main sub  is already been destroyed... Many thanks Cold not ...Show All

  • Visual Studio How do I hide a toolbar in a tool window?

    In Visual Studio .Net 2003, I want to show/hide a toolbar in a tool window at a user's request.  The IVsToolWindowToolbarHost interface has a method, ShowHideToolbar(), which looks like it will work but the VSIP and VS SDK documentation indicate this method is for use only by the Visual Studio environment and not for use by a VSPackage. So how do I dynamically show/hide a toolbar in a tool window Please note that I'm using unmanaged C++. Thank you for your time and consideration in this matter. The ShowHideToolbar provided by IVsToolWindowToolbarHost is safe to call, as are BorderChanged and ForceUpd ...Show All

  • Visual Studio Express Editions I may have found a way (Excel to Form Controls) but one problem...

    I just coded a functionality in my program that with a click of a button pulls up Excel, takes all values as strings and populates the spreadsheet in a particular format, with column names, and even makes a line chart out of two column's data. This was pretty hard to find out how to do but after fits and starts it finally works great. My question now is... I'd like to go in the reverse direction - to open a particular spreadsheet (which will be created new daily and saved to a default folder; with studies of stock market picks, stocks, trade ideas and so on) and bring that data back into my form, back into the original place it came from, ...Show All

  • Visual Studio Team System Checking in/out project does not check in/out all files as expected

    I am noticing that in a couple of our projects when I check in or out the entire project not all items are checked in/out as expected. This behavior does not happen with all projects. This seems to happen when I check in/out these projects from within Solution Explorer when right clicking the project and choosing "Check in" or "Check out for Edit..." We are using Team Server Beta 3 Refresh with Visual Studio .NET 2005 RTM. Does anyone know why this happens or how to fix this Thanks. Have you ever excluded this file from the project before Can you post the contents of your .vspscc file for this project John ...Show All

  • SQL Server Windows Authentication

    When I create reports using a data source that uses Windows Integrated Security and that connects to a database that does not reside on the Reporting Services server I'm getting the following error: An error has occurred during report processing. Cannot create a connection to data source '<data source name>'.  For more information about this error navigate to the report server on the local server machine, or enable remote errors If I view the report on the Reporting Services server it works.  Also, if I use Windows Integrated Security for a data source that is connecting to a database that resides on the Reporting Services ...Show All

  • Windows Forms graphics flicker problem (double buffer not working)

    I am trying to create a simple Breakout type game. I have a game panel on my form that holds my game (the paddle, ball, and board of blocks). I use a timer with an interval of 10 to move the ball a set distance every tick. The problem is that I also draw the board everytime this timer ticks and it flickers. I tried setting the doublebuffered attribute of my form to true but it didnt help. Anyone have any ideas either a different/ebtter way to buffer it or a different way of drawing the board I tried making a new panel on top of my game panel to just draw the board in but that didnt work for me either (unless I did something wrong). T ...Show All

  • Visual Studio 2008 (Pre-release) Can't get IIS to host WCF service

    When viewing in a browser, I get: Server Application Unavailable In the Event Log (application), it says, "Failed to execute the request because the ASP.NET process identity does not have read permissions to the global assembly cache. Error: 0x80070005 Access is denied. " Here is some vitals for this service: Assembly Name: CompanyWorkerService Workspace: LR.Services.WorkerService Interface: IWorkerService Type: WorkerServiceType Here is my web.config entry: < xml version = " 1.0 " encoding = " utf-8 " > < configuration > < system.serviceModel > ...Show All

  • Visual Studio Team System Error when creating new Team Project

    I've worked through several resources onlnine to fix other errors in the project creation process and have just about got the New Team Project option working from Visula Studio, however I'm running into an error I can't find a solution for. In creating a project named Foo2, the creation process gets through the Currituck Module, handles some CSS and WorkItemType definitions and then throws an exception saying: ---begin Exception entry--- Time: 06/02/2005 08:36:59.706 Module: Engine Event Description: Task "Currituck.WITs" failed Exception Type: Microsoft.VisualStudio.Currituck.Package.CurrituckPcwFatalException Exception Message: Cannot fin ...Show All

  • Visual Studio Express Editions Free and good Tutorials

    hi, i hope if anyone counter a good free tutorial that talk about the new concepts of "OO" to share it in this thread .    this is a very good online Tutorial its free and covers almost of basics in brief and good explanation   the best dictionary to explain computer terms note :-  this dictionary have other sections so search for technology sections there a list of terms that used in computer field its not good like the previous one, but it helps hope that will be helpfull   hi, i forgot to add those links (regesteration benifits)  get vb.net build a program now  ...Show All

  • Visual C# DataGridViewCheckBoxColumn

    Hi, i added a DataGridViewCheckBoxColumn in my datagridview using C# in a Windows form. The datatable I show in the grid has only one column. I don’t know how to iterate the results in the Datagrid, i would like to see if the row is checked and call a function if it is for every result i got. Any help would be appreciated. Thanks in advance You could do it by iterating through the DataSource that is bound to the grid.  or you could use dataGridView1.Rows[0].Cells[0].Value; and iterate through the rows and columns by changing the indexes from 0.  Lastly you could implement the Cel ...Show All

  • Software Development for Windows Vista Vs 2005 RC1

    Can I make Vista applications with RC1 of vs 2005 Do I need to download something else Thanks Hi, A September CTP of WinFX has been released but this still works with VS 2005 Beta 2. The next release of WinFX will be Beta 2 which will be in December 2005. This would be compatible with the RTM of VS2005. VS2005 RTM will be released on 7th Nov, 2005. Regards, Vikram ...Show All

  • Windows Forms RadioButton: the Click event was raised unproperly

    Control :RadioButton Description: the RadioButton's Click event was raised even the Checked property is changed Programmatically in form's constructor/OnLoad event handler. I have found some document that says, the Click event won't be fired when programmatically changing the Checked property of a radio button. But actually, if you put a 'radiobutton1.Check = true;' in the constructor of the form, or even in the Form.OnLoad event handler, the Click event will be fired. So is there any way to identify if it is the user that is choosing this item, not a programmatical changing of the Checked property (You know i dont like ...Show All

  • Windows Forms Resize Control

    How do I keep the control at a maximum of 32 * 32 pixels & no more/no less Any ideas The old MAPI control from the old VB 6 days was used to connect to Outllok Express... & send/receive mail etc. I was using it as an example because the control wasn't able to be resized because you were only supposed to be usi ...Show All

©2008 Software Development Network