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

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

d_clare

Member List

huonglt
SJ100
JoergD
Buk usu
C_Metzke
doug2008
Gordon7502
hendrik swanepoel
jskim136494
rvUser
Eddy-kun
Ankaiah
SirThomas
AntonioMaia
ClausP
Sonu Vinod
tphsu
goliver22
Jimmy Jam
rythm
Only Title

d_clare's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Can't Run Any Programs On Others Machine

    What I am running: DirectX 9.0c & C# I am trying to run the compiled version of ( http://www.c-unit.com/tutorials/mdirectx/ t=38 ) this tutor on another machine. These tutorials only work in October Version of DirectX I believe. What I downloaded: ---Microsoft .NET Framework Version 1.1 Redistributable Package http://www.microsoft.com/downloads/details.aspx FamilyId=262D25E3-F589-4842-8157-034D1E7CF3A3&displaylang=en ---DirectX 9.0c Redistributable (October 2005) for Software Developers - Multilingual http://www.microsoft.com/downloads/details.aspx FamilyID=9930efa6-9f7b-4c8a-aea2-97dd6ab307a2&DisplayLang=en ...Show All

  • .NET Development Taking Values

    Hi Ive been trying to figure out how to take a value from a cell in a datagrid that imports data from excel so that i can take the value perform a calculation and move it to another cell on another datagrid but i cant find a way to remove the value or move it can anyone help plz its urgent! thx Private Sub DT_RowChanged( ByVal sender As Object , ByVal e As System.Data.DataRowChangeEventArgs) Handles DT.RowChanged Dim DR As DataRow = e.Row Dim value As String = DR(1) End Sub In this example I've hooked into the rowchanged event, wich fires after a row in th ...Show All

  • Visual C# Differneces between c++ and c#!?

    I'm quite new in programing and i started learning c++ but i want to know what are the differences between c++ and c#! (because all examples and learning lessons, from msdn Visual Studio 2005, are written in c#) I know this is a stupid question for all of you but i heard about c# only in Visual Studio. I really need an answer to this question because i don't know what lenguage to learn! Thanks  C# is a newer language with a Java-like syntax and feel to it. C++ is more complex and while much of the syntax is similar to C#, some parts are radically different - I'm thinking especially of C++/CLI vs C# and handli ...Show All

  • SQL Server Is pts9.msi on the September CTP?

    I don't have a redist\Analysis Services directory on the Sept CTP.  Any suggestions It wasn't included on the Sept CTP:     http://support.microsoft.com/kb/905786 You'll find a link in there to download the file. ...Show All

  • .NET Development SOAP = web services

    Is it true that Web Service is equal to SOAP & SOAP is basically web service if so, all SOAP does is use for RPC / RMI to other platform Hi Duncan, SOAP is the protocol, Web services uses SOAP as their protocol (such as HTML is the page, and it uses TCP/IP as a transfer protocol). I suggest you read here: http://www.w3schools.com/soap/default.asp Ido. ...Show All

  • .NET Development ASP.NET Server error on Crystal Report

    Hi, I got a server error when I deployed my asp.net application from test to production website as shown below: Does anyone have any suggestion on how to fix this Server Error in '/' Application. -------------------------------------------------------------------------------- Configuration Error Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: File or assembly name CrystalDecisions.CrystalReports.Engine, or one of its dependencies, was not found. ...Show All

  • SQL Server Extracting the parameter values

    I have a report application where I am using Microsoft AxBrowser and url acess to view the reports. I have a report with multivalued parameter. I need to extract the user selected parameter value for that rpeort for some other purpose. How to extract the parameter value Please help Do you have access to the cookies collection of the AxBrowser control If so, then you can try to get the RS session ID and call the SOAP API GetExecutionInfo() on that session. It will return the effective parameters for the current session. Assuming you haven't changed them then it should be the parameters that were used to ...Show All

  • Windows Forms a simple question about hiding a form

    Hi, i got a simple question about hiding a form: say I have two forms: A and B, the program start formA, however I actually want to load formB once the program start, like this: public FormA() { InitializeComponent(); FormB formB= new FormB(); formB.InstanceRef = this; formB.Show(); this.Hide(); } however, both formA and formB is shown, why 'this.Hide' is not working Many thanks! thanks, that works, however I got a new issuse after using the method you shown above: after I pass the instance of formA to fromB, then I call 'this.dispose()' in fromB I got a error said I try to access a dispose object (formA) qui ...Show All

  • Windows Forms Filling StronglyTyped DataSets

    This is a Master/Detail kind of application using access and vs2005.Since I had tables that contains large data, I want to implement a selection criteria for a user to load customers' name in a gridview.Because using the Fill() takes too much memory, I want populating the grid done just like in FillBy but instead of toolstrip I want it in a textbox.So I had a textbox(tboxSeachCustomer) and when the user inputed 'A' the grid will show all of cutomers starting with 'A'.What should be my Query looks like assuming I had this one: SELECT CustomerID, LastName, FirstName, MName, DateOfBirth, ...... FROM Customer thanks... ...Show All

  • Windows Forms Application.Exit()

    After exception I need to exit application and Application.Exit() seems not working in my windows application. Ok. Thanks for the reply. I did the following in my code to make sure it is not my other calls that create problem: Private Sub AppStartUp(ByVal cmSwitch As Boolean) Application.Exit() ... other calls End Sub And I am running my application under windows task scheduler although it passes through Application.Exit(), the applications does not end. ...Show All

  • Visual Basic Bug ? Class '[class name]' must either be declared 'MustInherit' or override the following inherited 'MustOverride' member(s):

    I use CodeDom classes and VBCodeProvider to generate code and create assemblies. After the upgrade to Visual Studio 2005 Beta 2, I started getting the following error. Class '[ class name ]' must either be declared 'MustInherit' or override the following inherited 'MustOverride' member(s): Note that there is no member name following the error message. If I create a project and add the generated files to the project, it compiles fine. Is this a possible bug Please help. Thanks... I'm now having the same problem as well. I've started with a class derived from UserControl and marked as MustInherit, calle ...Show All

  • Visual Studio Express Editions Need help with for and pictureboxes

    I'm making a map editor to make maps Every tile is a picurebox. In the menu there is a command "New" wich will load all the default pics into the picturebozes, so you can make a new map i created this for statement dim i as integer For i = 0 To 391 PictureBox(i).image = My.Resources.Image_default Next i But this doesn't work. There is something wrong with the PictureBox(i).image Please help me. I'm using vb2005 Thanks in advance, Radexxion "There is something wrong with the PictureBox(i).image" doesn't really give much idea of the problem you are having. Have you created an Array called ...Show All

  • Visual C++ where is console application(.net) in beta2

    I installed vs2005 team beta2 yesterday. but, i could not find any place to create 'console application (.net)' as in beta1.  instead, i found 'CLR console application'. Is it the new name of  'console application (.net)'. did i miss sth important in the dvd i got Hi Riekey, Yes, they are the same. Ronald Laeremans Visual C++ team ...Show All

  • SQL Server SSMS keeps changing my CAST function

    SSMS keeps changing CAST ( MyColumnID AS varchar( 10 )) to CONVERT ( [varchar] ( 10 ), [MyColumnID] , 0 ) Is that a suggestion to use only Convert, if the engine is going to convert it anyway Just curious, what do you mean it is changing it Are you executing a CREATE or ALTER statement and the opening the stored procedure to find it changed I usually prefer CONVERT becuase it has more flexibility, although they are essentially the same. Don't know why it would try to change your code though. ...Show All

  • Software Development for Windows Vista going to persistence, inside workflow runtime

    Hi, How is possible to order persisting of workflow state inside wf diagram. I don't want to use delay and external activities for workaround. Is it possible without writing custom pers. service Bojan One way would be to write a custom activity that does nothing in its Execute override and has the [PersistOnClose] attribute. Everytime this Activity is executed, the Workflow will persist when the Activity completes its execution. Another way would be to use TransactionScope activity, which casues the Workflow to be persisted. Steve Danielson [Microsoft] This posting is provided "AS IS&qu ...Show All

©2008 Software Development Network