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

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

Ori'

Member List

Tao Lin
Ingenious
m.dawood
Steve Jensen
MarkBosley
Satish33
Boris Zakharin
Chris Honcoop
Madhu Reddy
SoulSolutions
oznative
xavito
Jaime Stuardo
noodlenozzle
WadeG
williamguy
BBesser
Abarca
Business Intelligence Analyst
shmulik_segal
Only Title

Ori''s Q&A profile

  • Visual C# Constructor on type 'MYCLASS' not found.

    I have 7 classes.. Some of them inherited from non serializable object , some of other inherited from 3rd party components. All of my classes have got [Serializable] attribute , ISerilazable interface and ClassName( SerializationInfo info, StreamingContext context) Most of them have got List of the other as property . Altough everything fine I got error like that " Constructor on type 'myclass' not found." I couldnt understand why Thx for advices.. I think that when you iterate through the types via reflection each type must implement a default constructor (without parameters). Stay cheerful, Dave ...Show All

  • Visual Studio Express Editions Error Installing C++ Express 2005

    Search the forums for "advpack.dll", there are several threads talking about this problem. This first hit I got might be relevant. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed Direct3D 10

    Since XNA only supports DirectX 9.0 Where is Managed Direct3D 10 I hope there will be Managed wrapper for Direct3D 10 thanks Michael, it’s good to have an official word about managed Direct3D 10. As I have written before something with official support from Microsoft will always better than my own one man show. But as long as you don’t write a fully managed runtime that talk direct to the driver (I thought about this too) I believe you couldn’t be much faster than my wrapper. Maybe if you have access to a better C++/CLR compiler that allows you to use less expensive managed to unmanaged calls. If the last rumors are true the D3D10 hardware problem should be solved in the next f ...Show All

  • Visual Studio 2008 (Pre-release) Documentation not correct

    Here is an example from the documentation and i am having issues.. Number one# There is no <ObjectDataProvider.MethodParameters> is my version. I just downloaded this the other day so i have the latest. None of the labs are up to date! <Window.Resources> <ObjectDataProvider ObjectType="{x:Type local:TemperatureScale}" MethodName="ConvertTemp" x:Key="converttemp"> <ObjectDataProvider.MethodParameters> <system:Double>0</system:Double> <local:TempType>Celsius</local:TempType> </ObjectDataProvider.MethodParameters> </ObjectDataProvider> <local:DoubleToString x:Key="doubleToString" /> </Window.Resources> -- ...Show All

  • Windows Forms System.ArgumentOutOfRangeException when trying to assign .Text property of combobox

    Some times (but not always) when I try to assign the text value of a combobox in my application (Code: combobox1.text = "") I get an exception. I can't figure out why.... Any Comments Here is the exception details System.ArgumentOutOfRangeException was unhandled Message="InvalidArgument=Value of '0' is not valid for 'index'. Parameter name: index" ParamName="index" Source="System.Windows.Forms" StackTrace: at System.Windows.Forms.ComboBox.ObjectCollection.get_Item(Int32 index) at System.Windows.Forms.ComboBox.get_Text() at System.Windows.Forms.Control.set_Text(String value) at System.Windows.Forms.ComboBox.set_Text(String value) at VBNETClient.OPCClient._UpdateItem() in ...Show All

  • Visual Studio Team System Using VSS in VB6 After Installing MSSCCI for TFS

    This afternoon I installed MSSCCI for TFS so that I could begin using Team Foundation Server with VB6. Now when I open an old project that is maintained using Visual SourceSafe VB6 seems to be trying to use TFS instead of VSS for that project's source control. Is there a way to have access to both in VB6 or at least can I get VSS back long enough to convert the old projects Thank you for your help in advance. Jeff Q It did help! Thank you for responding so quickly. I put the commands in the blog you sent me to in a couple of command files on my desktop and it is now easy to switch back and forth! Happy New Year to you as well! Jeff Q ...Show All

  • Visual Studio Express Editions MDI in C#

    Guyzz a simple question for you.. but i really need you guys to hola on me soon.. actually was writing a small stock maintaining proggie and was wondering if i can use multi windows in jus one form.. ok did that too.. and i have give a link to a small button to focus on the next form, but everytime i click that window a new child form is opened and is assigned new memory, how can i get rid of it .. i mean what shall i do that, before allocating memory once again to new child form, my program shall check if it is already running, if yes then it shall focus on the already running form, instead of allocating new memory to a form and then focusing on it. thanks and regards :) Since you asked.... The original version fo ...Show All

  • Windows Forms How to find the handle for SendMessage(windowHandle, WM_RBUTTONDOWN, 0, 0);

    I'm trying to simulate a right click on the window that is currently active. I can get the following code to work using windows forms by declaring the handle as this.handle or textbox1.handle SendMessage(this.handle, WM_RBUTTONDOWN, 0, 0); SendMessage(textbox1.handle, WM_RBUTTONDOWN, 0, 0); I've also tried using IntPtr windowHandle = FindWindow(null, _windowName); to obtain the handle of a specific handle but this does not work either. What I'm attempting to do..... 1.) Run a windows form app 2.) Click a button which instantiates a timer class which executes the SendMessage function listed above. 3.) Make an applications (notepad for instance) and execute a right click in Notepad. Any ideas on what I'm doing wrong to obtain or execute t ...Show All

  • SharePoint Products and Technologies How do i get my web part to remember input when it reloads ???

    Hey i've made a simpel little web part with a few text boxes, a calendar and some buttons, but when i change the date, the whole web part reloads and everything written in the textboxes is lost...  HOW CAN I PREVENT THIS   im using VS 2005 C# and sharepoint 2007, and have tried using ViewState, but it doesn't work >< pleeease help  mads here's some code... public class lort : System.Web.UI.WebControls.WebParts.WebPart { System.Web.UI.WebControls.TextBox Titel = new TextBox(); System.Web.UI.WebControls.TextBox Note = new TextBox(); System.Web.UI.WebControls.DropDownList Status = new DropDownList(); System.Web.UI.WebControls.DropDownList ...Show All

  • .NET Development Output Parameters with Application Block's SqlHelper

    Hi, I want to use the Microsoft Application Blocks SqlHelper class with some of my stored procedures that have output parameters, but I can't figure out how SqlParameter [] parameters = new SqlParameter [1]; parameters[0] = new SqlParameter ( "@SomeID" , object.Id).Direction = ParameterDirection .Output; SqlHelper .ExecuteNonQuery( this .sqlConnectionString, "spMisc" , parameters); However, how do I get the value of the output parameter Thanks,   Weiran. I have the same problem. Accessing the parameters[0].Value gives the default 0 value (I'm expecting an Int return value). Should another method be called on SqlHelper ...Show All

  • Windows Forms Can ObjectDataSource attributes be used in Winform?

    Hello, I have developed a Data access Layer for my project. I have read how to create a layer using the ObjectDataSource Attributes. Now every article I have read have shown ObjectDataSource Attributes being used in Asp 2.0. Can I use them in Winform in anyway It is a bit confusing. The SqlDataSource and ObjectDataSource are used by Asp.Net. Instead in Winforms you use a BindingSource and Databinding; however you can bind your bindingsource to an ObjectDataSource (not quite the same as the ASP.Net thing). In VS IDE, open the Data Sources tab and click "Add New Data Source", choose object and select the Data Access layer component you wish to use. Drag the newly added component from the Data S ...Show All

  • Windows Live Developer Forums Due to a connection problem, changes you make might not be applied to other computers you use

    Hi, Due to a connection problem, changes you make might not be applied to other computers you use I am getting this error in Live Messenger for last few days... As a result, my contact list is not appearing correctly and all the contacts are missing. Anyone having same issue Thanks Fahad Contacts are still intact... if u sign on using http://webmessenger.msn.com ... (nice interface i must say... mini old Windows Messenger type)... you can see all your cotnacts... but obviously this Live Messenger problem should have some solution.... bcuz i am unable to do voice calls or web cams ... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Impossible to deploy Managed DirectX Application

    I've developed a DirectX 9 app. using dec 2006 update and so far, I've been unable to deploy it to a second machine. This is a windowed app. created with managed DirectX and C# in VS.NET 2003. These are the steps I've followed trying to deploy it: * Make sure that the framework (v1.1 is installed). * Install the redist Directx that came with my installation of the SDK on the target PC (WinXP Pro SP2). * Make sure that DirectX3D is supported and enabled using dxdiag. * Create a deployment project in VS.NET, that automatically includes the following dependencies: Microsoft.DirectX.dll, Microsoft.DirectX,Direct3D.dll, Microsoft.DirectX.Direct3DX.dll. * Install the setup project on the target PC. Results: I just get th ...Show All

  • Visual C++ use templated base class declared in 1 C++/CLI assembly in another C++/CLI assembly?

    Hi, In C++/CLI, is it possible to take a template base class declared and defined in one assembly and use it as a base class in another assembly If so, how IOW: assemblyA: template < typename T > public ref class Wrapper : PtrWrapper< T > { protected: Wrapper( T* pObj ) : PtrWrapper<T>( pObj ) { // do something } ~Wrapper( void ) {} }; assemblyB: public ref class Batch : public CoreAPI::Wrapper< cBatch > { }; where T is an UNmanaged type (and cBatch is also). Both assemblies are DLLs, and both are CPP/CLI, if that matters. Wrapper is being successfully used as a base for many classes in AssemblyA. I can't get this to work. If I just have a reference in B to A, ...Show All

  • Windows Forms Insert Query Failed Schema

    I am trying to run an insert query through the table adapter and I go into query builder and create the insert query, I click execute query and it works, but, when I try to save the query I get an error message with a yellow exclamation point under the search criteria builder saying 'failed to get schema for this query'. The two tables are identical. All I want to do is send the data from one table to another table. I don't get it. Here is the code. INSERT INTO [Test Input] (Name, Chart) SELECT Name, Chart FROM Test WHERE (Name = '1') Let me know if someone knows what I am doing wrong I really appreciate your quick responses. These are my last questions. First, I am using an Access ...Show All

©2008 Software Development Network