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

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

ruper

Member List

Miscellaneous
allenbc
JEFFKIM
Geert_
Etienne VSTS MVP
Berggreen
smak
r prasanna vignesh
Kliot
Babak_Izadi
Werwolf13
moteris
Hakan06
zgierski
ShowMethodHang
Thunder0ne
newbie777
Nick Poulis
Gato00
Neil Raines
Only Title

ruper's Q&A profile

  • .NET Development Searching File For Text

    I have an error log that is saved by some software as a text file. Currently my program allows you to open a text file and it shows the information in a text box. I want to sort through the text box for key words so I can filter out what I want for data, for example here is some data in the text file error log: Data on me this is just filler data; blah blah 21:06:14 Copying BOM from Part:123212 Part revision for sub assembly was not found. Reque ...Show All

  • Visual C++ Learning Visual C++ 6.0 for Windows

    Hi, I want to make a windows application using Visual C++ 6.0.  I have thus far only made console applications.  I found a tutorial online at microsoft called Building Windows Forms Applications with Wizards in Visual C++ Express (12 Minutes - 8.2 MB) ( http://download.microsoft.com/download/c/e/8/ce8ef096-250d-4214-869d-9d7b218f3f27/Video3_CreateC++WinForms.wmv ) but it is for Visual C++ 2005 express edition.  Does it still ...Show All

  • Visual Basic Visual Web Developer ignores all kinds of Option Strict On

    I have encountered a little problem. I created a ASP.NET WebSite (on IIS) using VS2005Pro. The language I selected was Visual Basic. The first thing I wanted to do, was to tur on Option Strict. As the documentation suggests, there are several places I could do that. So... 1) I turned it on in Web.config (<compilation strict="true">) 2) I turned it on in Tools->Options 3) I turned it on for specific page (@Page Strict="true") But... to n ...Show All

  • .NET Development sql datareader problem

    Hi I have a SQLDataReader set up. When I try to execute it I get an error See Below, I know there's nothing wrong with my connection so I must have done something else wrong can anyone help. Dim comd As SqlCommand = SqlConnection1.CreateCommand comd.CommandType = CommandType.Text comd.CommandText = "Select top 1 txtLeftAvgeMeanIMT,txtLeftAvgeMaxIMT,txtRightAvgeMeanIMT,txtRightAvgeMaxIMT from HACAROTIDSCAN WHERE datescandate ...Show All

  • SQL Server UDF or trigonometric functions in an expression for a Derived Column?

    Hi all! I am importing data from a CSV to a DB with a SSIS package. Among some things things it already does, it has to decide if the relation between one row and the following is acceptable. If it is not, the 2nd row is discarded, the next one is taken and the relation value is calculated again to decide whether to keep this one or not, and so on. To calculate this value, I need to apply a formula that includes sin(), cos() and acos() funct ...Show All

  • SQL Server RowsComplete in SSIS

    This may be an easy question but the answer in not obvious to me.  I am copying a table from one DB to another and would like to get the number of rows transfered.  In DTS you could look at the 'RowsComplete' and 'RowsInError' property of a CustomTask, how do I access this data in SSIS   I am using a DataReader with an ADO.Net connection to retreive the data and an OLE DB Destination to write the data. Any help is appreciated, &n ...Show All

  • Windows Forms Docking one form to another

    New to VB.Net programming. I want to open Form2 from a button on Form1. Got this far.  Form2 has no border, I want it to appear to be part of Form1, (like a frame in a web page, everything else on the page stays the same exc ...Show All

  • Windows Forms Leaking Main Menu

    I have an application that creates a modal form. The modal form has a mainmenu. I notice that when the form is closed and dispose is called on it, the form remains in the heap. Examination of the heap using the CLR profiler indicates that the menuitems are holding on to the modal form. Has anyone seemed this problem before or know why it happens Both the form and mainmenu on the form should have gone out of scope. By disposing the form, the m ...Show All

  • Windows Forms Sending data to a second dialog??

    Hallo! I have a Main-Window. From there I call a new modal Dialog, to whom I want to pass some data, see below: private void btn_Prj_anlegen_Click(object sender, EventArgs e) { myProjekt.setDataFromLV(x81_LV); ProjektAnlegenForm prjForm = new ProjektAnlegenForm( myProjekt ); prjForm.ShowDialog(); } But I get the following error: Inconsistent accessibility: parameter type 'Projekt' is less accessible than method 'ProjektA ...Show All

  • .NET Development Performance issue spotted.

    In my last thread, I posted a serious performance issue I was getting with VS .Net 2005 IDE while running the application from there(either debug or release modes). This performance issue seems not to exist if i run the application from windows (windows explorer, start-run). Now, after some careful step into debugging functions, I have realized that performance is severely damaged on the following lines: for ( int i = 1; i < bmpToConver ...Show All

  • Windows Forms Uploading Books To Amazon with their WebServices?

    Hi, has anyone already programmed a book upload for the Amazon Marketplace  My goal is especially to get the Amazon batch number of the upload back because I need this number to check the processing and error state later. Myabe anyone can share some ...Show All

  • Visual Studio Express Editions Microsoft.VisualBasic in Object Browser

    Hi, Does anyone know why "Microsoft.VisualBasic.dll" shows up in the Object Browser Thanks, Richard. ...Show All

  • Visual Studio Team System TF30063: You are not authorized to access MyServer

    I failed twice trying to create new project now I am trying to delete and getting the above error MyServer is the server name. I am logged on with an account that is a member of the local adimistrators group.  If I go to http://localhost/  I get page cannot be displayed If I go to http://localhost:8080/  I get HTTP Error 403 - Forbidden I've added TFSSETUP to local admins group also since failing to create projects.  Does ...Show All

  • SQL Server Drill down matrix report slow performance

    I have created OLAP cubes and we are creating reports on top of them. The reports take incredibly long to render (40 seconds to 5 minutes). The MDX for the reports runs in less than 15 seconds when executed as a query in Mgt. Studio. Browsing is also fast. The reports are drill down matrix-type reports and they do eventually display properly. Not that this should help with the mechanics of the issue but the report data source query will show ...Show All

  • .NET Development IIS 6.0 Stops Serving ASP.NET Pages -- Immediate Help Please

    We have ASP.NET 1.1 application running on Win 2003 IIS 6.0. This application is fine when used by individual users for weeks. But when we do stress test using automation of 20 Users, the IIS stops serving ASP.NET pages after about 40 minutes. There is no event log created for this behavior. Our ASP.NET uses XML serialization of heavy objects and FileNet services and Imaging. We have commented those functions and tried again with no luck. ...Show All

©2008 Software Development Network

powered by phorum