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

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

soccerjoe5

Member List

EricMadariaga
aw52741
ChuckD1969
JaganReddy
kyus
Richard Chenglo
haguila
Geoff Krapf - MSFT
Asif Shehzad
Robin Sanner
Andrew English
Jake52
Den380
Brian C.
Steve_Hall
noname267
RanaRani
Ken.Saraf
stige
rnby
Only Title

soccerjoe5's Q&A profile

  • Visual Studio Sorting within a sub report

    I have added a subreport to another report. The subreport has a sortable column. This works fine to sort with when running the report by itself but when run as a subreport and clicking on the sorting I get this error. Microsoft.ReportingServices.ReportProcessing.ProcessingAbortedException: An error has occurred during report processing. ---> Microsoft.ReportingServices.ReportProcessing.ReportProcessingException: An unexpected error occurred in Report Processing.    at Microsoft.ReportingServices.ReportProcessing.Persistence.IntermediateFormatReader.Initialize(Stream stream)    at Microsoft.ReportingServices.Repo ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. My system slows down when I turn on Reference rasterizer

    When I executed Simple Sample from DirectX9 (Empty application with some controls) I have fps: 120, and then I turned on Reference rasterizer - fps become 2.5 Is it normal On some examples that need REF I have 0.02 fps My system: AMD Sempron 2600+, 320 mb RAM, integrated video card VIA/S3G UniChrome II Graphics Yes this is normal, the reference ras' allows yolu to test all functions even if your hardware can not handle it... From the SDK Documentation.... " Direct3D supports an additional device type called a reference device or reference rasterizer. Unlike a software device, the reference rasterizer suppor ...Show All

  • Visual C++ Asynchronous event

    This is C# code: public delegate void MyDelegate(int n1); public event MyDelegate OnMyEvent; ... OnMyEvent(1);                                        // invoke synchronously OnMyEvent.BeginInvoke(1, null, null);   // invoke asynchronously The same in C++/CLI: public delegate void MyDelegate(int n1); event MyDelegate^ OnMyEvent; OnMyEvent(1);        // invoke synchronously OnMyEvent->BeginInvoke(1, nullptr, nullptr);     // C3918 Surprisingly, I solved the problem removing eve ...Show All

  • Windows Forms Is it OK to update application configuration file during installation process?

    I tried to update the application configuration file base on user input(ConnectionString and some folder selections) during installation process. I put all the related code in the installer class. However, I found it did not work. I wonder if it is the problem of my code or installer class is not design to do so. Please give me some suggestion, thank you very much! ...Show All

  • Visual C++ debugging: where are the variables?

    Let me start by saying that I am a beginning C++ programmer and am very new to Visual Studio 2005, so please forgive me if this is a silly question. When running the debugger on a simple program such as the one listed below, I find that it doesn't bother to display anything for most of the variables, and even for the variables it does display for, it seems to be garbage. #include <iostream> using namespace std; void main() { const int arraySize = 12; double sales[arraySize] = {0}; int count = 0; double smallestSales = 0; int smallestSalesMonth = 0; for (count = 0; count < arraySize; ++count) { cout << "En ...Show All

  • Windows Forms How to use DElphi 7 DLL in VB.Net

    Dear Frd, I have no any idea abt Delphi7 but I want to use Delphi7 DLL in VB.Net as per requirement. In this DLL there is a Procedure that return four different type of VALUES and take 11 input parameter. Please help me asap that How to use this DLL in VB.Net By the way, these below process I have already tried, 1. This DLL is not going to registered through regsvr32.exe. 2. This DLL is not going to add in the VB.Net Project through Add Reference Windows. are you there I assume you have it figured out how would you call the function using Delphi Delphi is my native Win32 language of choice. ...Show All

  • Smart Device Development Adding Items to a ListView

    Hi, I'm trying to add items to a list view like this: frmList.lstShop.Items.Add(txtProduct.Text) This method gives me an error "Value of type 'Strings' cannot be converted 'System.Windows.Forms.ListViewItem'". I've tried to save the text to a string and add the string but I get the same error. I also get an error when trying to add a column like this: lstTrolley.Columns.Add( "Price" , 40) Can anyone tell me how I could do these They work fine in .NET framework, just not compact framework. Thanks You'd need to create ListViewItem objects and add them instead. Please see this for ...Show All

  • .NET Development system.invalidcastexception

    system.invalidcasterror What started out as a sample project to solved a windowsforms.databinding problem, got waylayed with the above. I have four listboxes, all populated in the following manner. lstConcepts0 is populated in form_load            Dim cdt As New ConceptsSampleDataSetTableAdapters.ConceptsTableAdapter             Dim C0DT As New ConceptsSampleDataSet.ConceptsDataTable             cdt.FillByParentID(C0DT, 0)          &nbs ...Show All

  • SQL Server Package hangs on parallel "upserts"

    I have data flow tasks, one which validates the import file and one which processes the import file if the validation passed. The validation runs and pushes the three row types to three different recordset destinations. When I enter the processing data flow task, I have three parallel trees processing each recordset saved in the previous task. I'm using a script component to generate the rows which are then sorted and merged with the production database to find existing records. Based on this, I split to an OLE DB command (running an UPDATE command) or OLE DB destination (to simply insert the records.) In this particular case, all records ar ...Show All

  • SQL Server Joining two fields in a query

    I am trying to join two fields in a query in SQL 2000. For example. Update myTable SET field_1 = @field_1_value , field_2 = @field_2_value , field_3 = @field_1_value + ' x ' + field_2_value Is this even possible. I want the user to input values for fields 1 and 2, then in the background combine the two and insert that value in field 3. Thanks in advance, Scotty_C that'll work! there's just a typo for the @field_2_value Update myTable SET field_1 = @field_1_value , field_2 = @field_2_value , field_3 = @field_1_value + ' x ' + @ field_2_value ...Show All

  • SQL Server Problem accessing my local A:\ verses the SQL servers A:\ drive

    I am having a problem accessing my local A:\ drive, using the bulk insert command. The actual sql server pc thinks I am accessing its sql server's A:\ and not my local a:\ drive. I am trying to read in a simple CSV delimited ascii file into a sql table. Wow what a nightmare just to read a simple ascii file into a table. Unfortunatley I am writing a program in VB.net for an operator to import ascii data from floppy diskettes. I am using this command below: The command works fine but I have to go to the actual server and put the floppy disk in over there. I want the operator to be able to use there own A:\ or any location drive for that mat ...Show All

  • Visual Studio Tools for Office Treeview webpart in Sharepoint 2003

    we have to create a webpart that should contain a treeview control at left site of the portal. we want that if one node of treeview expand than all other nodes should be collapsed. Is there any inbuilt webpart available in Sharepoint that will fulfill our requiremnet. OR do we have to create customised webpart for the same. Can someone provide the code for creating required webpart. Thanks, Anees ...Show All

  • Visual Basic Help!! System.Reflection.FieldInfo Can't SetValue

    Hi all, Did I do anything wrong here Public Sub New ( ByVal li As ADF.LoginInfo, ByVal thetype As String , ByRef obj As Object , ByVal InitialGUID As String ) _GUID = InitialGUID Dim ObjectType As Type = obj.GetType() _TheType = thetype _LoginInfo = li Dim sql As String = "" Dim _ReturnDataReader As SqlDataReader sql = "SELECT * FROM ADF_" & _TheType & " where GUID='" & InitialGUID & "' and _CompanyGUID='" & _LoginInfo.LoginCompany & "' " Dim command As SqlCommand = New SqlCommand(sql, New SqlConnection(li.Connect ...Show All

  • Visual FoxPro Set talk, set deleted in forms.

    Hi; I am issuing SET TALK OFF and SET DELE ON in my application. Later on, when the user opens up a form, set TALK goes ON and in some cases SET DELE goes OFF. I have used the debugger, and I can't seem to find where exactly this happens, although its at the load event. There is nothing there to turn it on. So - what am I missing Aleniko Both Set Talk and Set Delete are scoped to the current data session. Check the DataSession property of your form. Perhaps It’s has its own Data session, and its own settings. Also are you sure you are only issuing theses commands on ...Show All

  • SQL Server How to show KPIS on a webpage?=

    I want to show KPIS on a webpage How can I do this     Hi Luis, Check out this article from Mosha about ADOMD.NET source code for querying KPIs in Ananlysis Services 2005 in ASP.NET, I hope it answer your questions. http://www.sqljunkies.com/WebLog/mosha/archive/2004/12/06/5433.aspx sample code: http://blogs.msdn.com/olivier_pieri/archive/2004/12/06/275811.aspx Regards, Peter ...Show All

©2008 Software Development Network