Software Development Network Logo
  • Visual C#
  • Microsoft ISV
  • Visual Studio
  • Game Technologies
  • IE Development
  • VS Team System
  • SQL Server
  • Smart Devicet
  • Visual C++
  • Audio and Video
  • Windows Vista
  • .NET Development
  • Visual FoxPro
  • Windows Forms
  • Visual Basic

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

IvanVC

Member List

Vicky Z
Giritharan
RoryD
davep1553
Laser2020
xyte
Jabber
Dietz
jorijo
RCamiro
MrJP
Joe You
WolframW
Bill26
kfsoft
siavoshkc
Gumbatman
Rocinante8
Amadrias
paso
Only Title

IvanVC's Q&A profile

  • SQL Server Chart does not display when Toolbar=False

    I have a basic bar chart that runs fine on a local 32 bit server both within an IFRAME and within the reports manager. However, on another server that is brand new and clean install of SQL Server 2005 (64 bit) that same chart will run fine within reports manager but not through a direct link (whether in an IFRAME or not). I narrowed the problem down to the parameter Toolbar=False. If I leave off that parameter, the report runs fine but includes the header. If I set the parameter to True, it also displays fine with a direct link. I can also specify Parameters=False and that works fine. However, no matter what I try, setting Toolbar=False returns a report (showing text in textboxes) but the chart itself returns as an image placeholder wit ...Show All

  • .NET Development In C#, what is the difference between System.String and System.string (lowercase)

    This mignt not be the correct forum, if so, I'm sorry about that. I am trying to get a better understanding of the .NET library. I am programming in c# and I see that System.String (uppercase String) and System.string (lowercase string) seem to be the same objects. However they are color coded in different colors. I am guessing that there is a reason, but I cannot seem to find it in the documentation. Can anyone shed some light on this Thanks! Bob Mark Benningfield wrote: Hello All. Bob: Here's another thread that thrashes your question. It might shed some light. HTH. Thanks Mark that does help. But I still have a question about the color coding of the two k ...Show All

  • SQL Server Problem with Transaction Logs

    Hi, I have a big problem with transaction log. I need to reduce the transaction log file becouse, the have 25 GB, but when i run the statement for BACKUP LOG with TUNCATE_ONLY, dont work, becouse i have database mirroring installed. Please is very urgent. Hi Guillermo, If your mirroirng state is synchronized, you will keep the transaction log under control by periodically backing up the log. How frequently do you backup the log Looks like you generate 25 GB of log per day. If you would like to keep the transaction log size under check, you would probably like to back the log more frequently. Sanjay ...Show All

  • Visual Basic Windows Media Player Control not working as it did with VB .NET Express

    I just learned how to use the Windows Media Player control and I had a Windows form working that would connect to a URL and play the video. When I tried to add the control to an ASP .NET website, there were two options for WMP...a dll file and an ocx file. I added the dll file to my toolbox items, but it doesn't show up in the toolbox like it did in VB. I managed to write code without errors that is supposed to do the same thing as my Windows form, but I can't drop the WMP control on the page, so nothing happens. Can someone help me figure out how to put the control on the form so I can see it I'll show you the code that I have which worked in VB Express. Partial Class _Default Inherits System.Web.UI.Page Dim Player As ...Show All

  • Visual C# custom buttons in MessageBox

    How can I create my custom messages in the MessageBox I want to have a MessageBox with the following: Text : Is this an individual or corporate customer Caption: New Customer Buttons: Three buttons (Individual, Corporate, Cancel) Using messagebox you can't do that. You can : 1. Use MessageBox but with question : Click Yes if this is a Individual custumer. You will have YesNoCancel message box buttons and yes will be Individual, No Corporate and cancel button. 2. Create new form with this buttons and message and use it as a dialog form. ...Show All

  • Visual C# confused with runtime error and compiletime error

    class B { int32 x; } class D:B { int32 y; } B b = new System.Object(); //This statement will cause a compile time error. D d = (D)b; //This statement will cause a runtime error. I am really confused, I can't find out the differences between the two statements above, I think they are the same.Who knows why Any help will be appreciated. You can cast from a derived class object to a base class object but not the other way around. Class D has two members (x and y), class B has one member (x). You can't convert a B object to a D object, there wouldn't be any value for the 'y' member. The compile-time error is similar. Class B inherits from Object. You could keep the compiler happy with: B b = (B) ...Show All

  • Visual Basic Gaining Some System Information

    Where can I find out how to gain numerous pieces of System information. These in particular are what we're looking for: hard drive size video memory amount of ram processor speed. Also, does anyone know where there is documentation for dlls like Kernel32 or User32 For all methods in a specific dll thanks. My .Computer.Info Look into it. You should find most of the information you want in there including things like My .Computer.Info.AvailablePhysicalMemory etc.... ...Show All

  • .NET Development Web.Config file error

    I need to use impersonation in my web.config file for a web service. I have done this in many web services on different servers already, so I know that it should work. I add the following to my web.config file: < system.web > < identity impersonate ="true" userName ="*****" password ="*****"/> </ system.web > But, as soon as I add this, the WS breaks. When I take this identity tag out, it works again. I've tried impersonating different accounts to make sure the problem was not with a specific character in either the username or password, but it still did not work. Any ideas I found a fix for this, http://support.microsoft.com/ ...Show All

  • Windows Forms DataGridView Object Data Sources

    Hi All, I have tried to use a datagridview in a windows form  to render a list of wine objects.  The wine object contains a Region Object.  I want the datagridview to to display two columns, Wine.Name and Region.Name.  I have created a BindingList of Wine objects which is then bound to a datagridview.  Using autogenerated columns, the Region.Name column renders as just its type name - not the data... What am I doing wrong Public Class Wine    Dim _name As String    Dim _origin As Region    'Wine Name    Public Property Name() As String       Get          Return _name ...Show All

  • Smart Device Development first chance exception of type 'System.IO.IOException'

    Surely this shouldn't be happening!  The following code creates a connection, DataAdapter & DataSet, then fills the DataSet.  the myDataAdapter.Fill creates a 'first chance exception', whatever that is Imports System.Data.SqlServerCe Public Class Form1     Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load         Dim myConn As New SqlCeConnection("Data Source = \my documents\MASDB.sdf")         myConn.Open()         Dim myDataAdapter As SqlCeDataAdapter = New SqlCeDataAdapter("Select * FROM AppSettings", myConn)         ...Show All

  • Windows Forms ToolstripManager

    I am trying to work with toolstrips. I have added the loadsettings and the savesettings. My toolstrip settings will save and load properly if the toolstrip is on either side or the bottom, but when the toolstrip is on the top the settings are not loaded correctly. Is there a fix for this or some special code that must be used to get the toptoolstrip to load correctly The positions of the toolstrips are not correct. The easiest way to see the problem is to create a sample app with a form. Put a toolstripcontainer on the form. Add one toolstrip. In the form load event add toolstripmanager.loadsettings(me) and in the form closing event add toolstripmanager.savesettings(me). Run the app and move the toolstrip across the top of the form t ...Show All

  • Visual Studio Team System Do you need VSTS for Testers to create a Test List for execution by MSBuild?

    My developers are using VSTS for Developers to create and run unit tests on their own PCs. However, there doesn't seem to be an easy way for them to add these unit tests to our Integration Build (Build Lab) PC so they will be run as part of MSBuild. At the moment they have to logon to the Integration Build PC (which has VSTS for Testers) and then add their unit tests to the Test List that is executed as part of MSBuild. Is there any other solution apart from installing VSTS for Testers on each developer's PC ($$$) Will FWIW, here's another thread tracking the same issue: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=129079&SiteID=1 Eric Jarvi http://blogs.msdn.com/ejarvi ...Show All

  • Windows Live Developer Forums OTP: getting error message come up everytime a message box is opened

    get the following error box come up everytime a meage box is opened, and it keeps repeating itself Acces violation at address 0044CD07 in module 'msnmsgr.exe' Read of address 00000000 This does not look like a programming question. These forums are for programming questions only. If this question relates to code you have written, please reword it so this is clear ( this would also provide info we need to help you, such as t he code ). Otherwise, you need to find somewhere else to discuss beta issues. ...Show All

  • Visual Studio 2008 (Pre-release) Returning an array of types defined with a data contract.

    I have a method that looks like: ReturnType[] A(RequestType request) The ReturnType is defined in the data contract. I am not sure how to define a message contract for an array of types defined with data contract. I think that is why I am getting the following error: The operation 'A' could not be loaded because it has a parameter or return type of type System.ServiceModel.Channels.Message or a type that has MessageContractAttribute and other parameters of different types. When using System.ServiceModel.Channels.Message or types with MessageContractAttribute, the method must not use any other types of parameters. The request type (RequestType) is defined in the service contract with [MessageContract] etc. I think what I need ...Show All

  • Visual C++ Starting off with C++

    I keep hearing it's hard to learn, but that you should try and begin learning with C++...That being said I just downloaded Visual C++ Express and was eager to code for the first time   Only to be even more frustrated; I created a new file under Visual C++, C++ file, then started typing in code from tutorials.  The color of the text is changing, appearing like I'm entering code but there is no output.  Here is what I typed // my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!" ; return 0; } Output doesn't appear and when I click on "Show output from" it makes a noise that I can't do it. Do I have to create a certain type of file or ...Show All

©2008 Software Development Network