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

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

gwestwater

Member List

ADurkin
HemeFlasher
DavidSB
Utkarsh Shigihalli
Markmar11
Ivo6070
Marc Jones
MuscleHead
bozo01
Shan McArthur
Long Xue
Markus Fritz
Pete_M
Lalitk
JGP
Rashid.A.V
rmtuckerphx
curiousss
nbn
mahioper
Only Title

gwestwater's Q&A profile

  • Visual Studio Tools for Office OLE err in VST2003 Startup Wizard

    I purchased Visual Studio Tools(2003) mainly for the Developer Extentions so I could package my Access DB's. I have now finally ( ) have a had a need to give them a try. What I am running into is in the "Startup Wizard". When I check the "Startup" and the other "Checking" features( VBA etc.) I get the "on-click" OLE registration error. The message doesn't identify the OCX/OLE name and I know there is a way to register the OLE's at the command prompt but have forgotten how. I can access the startup options via the wizard, but, as soon as I return to the wizard is when I get the "on-click" OLE registration error. The Find VBA....., Find expressions.... and Find potiential missing...all ...Show All

  • Visual Studio ReportViewer Cause error after deploying the webserver

    Dear all, When I deploy my web project into my Web server,everything is work,but except the report does not work properly. The config of my webserver is win2003 with IIS 6.0.And I make use of the report in the local processing mode and set "sessions state mode=InProc","cookieless mode=UseCookie"on the page of the state management in IIS. The error message is showed below Server Error in '/' Application. Thanks for the "ReportViewer1.localReport.Refresh() tip. I also had a problem with deploying my app. I had to copy the Microsoft.ReportViewer.Common.dll, Microsoft.ReportViewer.ProcessingObjectModel.dll and Microsoft.ReportViewer.WebForms.dll manually to the bin folder. Once I did that the repor ...Show All

  • Visual Studio 2008 (Pre-release) How do I restart an animation?

    I have a ListBox which i'm scrolling horizontally to the left by a fixed amount, when the animation state changes, I adjust the contents of the listbox, and want to start up the storyboard again which should translate it back to zero immediately, then begin scrolling left again... The callback works, i manipulate the datasource for the listbox, but can't seem to find the handle on where i should be "restarting" the animation. I got it to "start" again using BeginAnimation on the ListBox, but that didn't reset the current value of the clock... e.g. it stays as the "To" value the whole time. Here's a xaml fragment showing how I have the animation coded, as a templated item on the itemsPanel. < L ...Show All

  • Windows Forms Drawing on a Tab

    I'm making an stand-alone app that has multiple functions for use with a CAD program. Each function will be on a seperate tab as they are quite different from one another. The problem is that I am trying to draw on one of the tabs and the line, circle, does not appear. I believe it is being drawn underneath the tabs on the form itself. How can I draw on top of the current tab I'm using VB2005 Express with Windows XP Pro. Here's the code I've used to draw a circle. I know this works on a plain form. ======================== Private Sub BaseCircle() Dim x = Me.Location.X Dim y = Me.Location.Y Dim x1 = x + 25 Dim y1 = y + 25 Dim myPen As New System.Drawing.Pen(System.Drawing.Color.Red, 10) Dim formGraphics As System.Dr ...Show All

  • Visual Basic For your VBA, CUT AND PASTE the Function out of this VB.Net code.>>

    Hi! I have a list with prices of US Treasury bonds. They are quoted in a particular way that I would like to convert to decimal form. They are quoted like this eg: 99-02. Now this means that the price is 99 and some decimal. The two first numbers are the number of 32:s. Thus in this case the price is 99 and 2/32. However if there are three decimals eg 99-021 the last digit refers to the number of 124:s. Thus the price is 99 and 2/32 and 1/256. Sometimes There are only two decimals followed by a plus or minus sign eg 99-30+ or 99-10-. The plus/minus indicates that you should add/subtract 1/64. Keep in mind that the non decimal numbers may be one, two or three digits. Thus, it could be eg. 6-02 87-22- or 105-21+. Is there any wa ...Show All

  • Visual C# Multidimensional Arrays

    Ok, my book really sucks I think. After struggling with an example in the book, I looked in the MSDN and searched these forums. I believe my book is wrong when it shows: int[,] student = new in[4][3]; I tried doing it that way but it errors. int[,] student = new int[5,4]; gives me no error and works. I am going to go with that. Unless someone can tell me that int[,] student = new in[4][3]; is indeed a correct format or what kind of a typing error it could be... The following also seems to be in the wrong format: int[][] x = { { 2, 3 }, { 4, 5 }, { 6, 7 } }; I don't think you can do it that way... Ok, but I still get the error array initializers can only be used in a variable or field initializer, try usi ...Show All

  • Visual Studio Team System Doc lacking for the Process Editor

    This is the supplied documentation for the Process editor section in the Powertool.doc : Installed Microsoft Visual Studio Team System Process Editor The TFPT application installs an editor that you can use to edit process templates. The installation media includes separate documentation for the Microsoft Visual Studio Team System Process Editor. The included documents are User Guide and Readme with Known Issues.   Where do I go to access the tool within the IDE Where do I go to view the User Guide/Readme Any guidance would be greatly appreciated.    Thanks, Will S. Hmm... I am missing the start menu items as well as the IDE integration. I will try to re ...Show All

  • .NET Development Server Error in '/Shobha@Web' Application.

    The conversion of char data type to smalldatetime data type resulted in an out-of-range smalldatetime value. this is the error i am getting when tried to open a published page, which works fine with VS 2005 environment. I have used something like this in the button click event. is there anything wrong here I am newbie to .net. Kindly guide me. Dim Dys(31) As Date Dim DR As Data.SqlClient.SqlDataReader Dim cmd As New Data.SqlClient.SqlCommand Dim cn As New Data.SqlClient.SqlConnection cn.ConnectionString = CWS_Ds.ConnectionString cn.Open() cmd.Connection = cn cmd.CommandText = "select distinct(cdate) from cdates where month(cdate)=" & DDLmnth.SelectedIndex + 1 & ...Show All

  • Visual Studio Express Editions How to find missing numbers

    I am trying to figure out code to determine which numbers are missing from a column within a datagridview based on a number entered by the user. In other words, if the user enters 10 into a textbox and there are 3 rows of data in a datagridview that contain 2, 5, and 7 in a column named Number, then I need a string result to be "1 Or 3 Or 4 Or 6 Or 8 Or 9 Or 10". Can anyone help me I'm sure it has to involve For, Next statements and possibly some If, Then statements, but I can't follow the logic and put it to code. For an added challenge, The "numbers" in the column are actually strings, with the number 1 displayed as "001", the number 10 as "010", and the number 100 as "100". But, ...Show All

  • SQL Server How to Get the Output Column in OLE DB Command Transformation

    Hi, I am writing a Dataflow task which will take a Particular column from the source table and i am passing the column value in the SQL command property. My SQL Command will look like this, Select SerialNumber From SerialNumbers Where OrderID = @OrderID If i go and check the output column in the Input and output properties tab, I am not able to see this serial number column in the output column tree,So i cant able to access this column in the next transformation component. Please help me. Thanks in advance. Dear Jamie, That also i tried,the table contains multiple values(for same OrderID multiple serial numbers) and the lookup transform will take only the first valu ...Show All

  • Visual C++ Managed C++ Problem

    I have written a managed C++ library to call a C# library. I am using Visual studio 2005. I cant get this code to compile. I am using command line and the /oldSyntax option. It would be great if you anyone could get help me with this. #using "CSharp1.netmodule" using namespace System; public ref class HelloC { public: CSharp1 ref *t; HelloWorldC() { t = new CSharpHelloWorld(); } void callCSharp() { t->displayHello(); } }; Thanks for the reply! It would be great if you can tell me how to convert that to the new syntax. I dont know any VC++. The thing is I am going to write a Java JNI wrapper to call a C# API. So I found out that I had to write ...Show All

  • Visual Studio Express Editions dataGridView

    I write text in textBox and then when i update dataGridView this text show in dataGridView but when I uptade source (TableAdapter.Update(DataSet);) this text is not saveing. TableAdapter.Update(DataSet); - this instruction save information when I write on a keyboard something in dataGridView but I need however update source becouse I insert data to dataGridView from other component. you need to make sure that you bind the datagridview to the dataset, so any changes made in the datagridview are automatically updated in the datasource, the dataset. When calling the DataAdapter Update() method giving it the dataset, it should update the database/where you filled in the records from. Remember, you may well ...Show All

  • Windows Forms "Parameter incorrect" error adding Setup project to solution

    If I try to add a Setup Project to my solution, I get an error stating the parameter is incorrect.  This also happens if I try to create a new solution based on the Setup Project.  Any help Robert, I've had a chance to try your suggestion. Removing the key had no effect on the problem. some additional information: I've moved the project to several different computers and they all exhibit the same error. the error occurs immediately after the build is finished and the "deploy started" message appears. I do have connectivity with Active Sync (I can manually copy my app into my run directory and i can use the "device connect" in Tools in VS2005. So I'm reasonably convinced that this is an artifact of the ...Show All

  • Windows Forms How can extract an object from form.designer by string name? (for examble a buttton dropped on)

    i would estract an object from my form, for example a button by name. I drop a button in a form, named button1: and try: Dim o As Object = CallByName( Me , "Button1" , CallType.Get) but don't work because he said that error message: "Public member 'Button1' on type 'Form1' not found" someone have any solution thank's i don't want use the callbyname function, i want a way to do that. someone can do an example using a reflection for example i create a typed dataset with wizzard. So i have a xTableAdapter class inside typed dataset. i wanna create a UserControl that have inside an object that refer to this xTableAdapter Class. xTableAdapter i ...Show All

  • Software Development for Windows Vista Linksys wireless usb problems with vista

    I have been having problems with the pci and usb Linksys wireless adapters when I installed windows vista RC1 build 5600. It always gives me these errors: Can't load ProcNIC'sdll and Can't load Res_dll Maybe I need to find drivers for windows vista and if they are not there then I guess I will have to wait until they do. The only problem I see with windows vista is the networking problems. I have seen other posts for network problems so I guess I am not alone. A few things you might try. 1) You can chat with Vista technology enthusiasts at http://www.microsoft.com/windowsvista/community/default.mspx 2) You can post to http://www.activewin.com which has a Windows Vista forum this should be the ...Show All

©2008 Software Development Network