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

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

Charltonn

Member List

OmidQRose
Rizzlers
bw12117
Grotius
carlsonad
Jithendrian
JLuis
nabeelfarid
Stephen B
Euclidez
eldiener
Ron Liu
matt01
The ZMan
Admann
Ravindra Patil
mobigital
Nickthegreek
newguyintown
Sotham
Only Title

Charltonn's Q&A profile

  • Windows Forms Is this possible in .NET?

    Is it possible to make this kind of toolbar in .NET. If so how Matt Yup. You can make something exactly like that just using a Windows Form. Just drag a toolstrip onto it, size it how you want, and wa la! If you want cool looking graphics, then you will have to look into skinning a windows form. ...Show All

  • Architecture Creating Vendor - Database Independent Application

    Hi I want to create a vendor - database independent application, that is, I want to create a single application that may run on Oracle/SQL Server/My SQL etc. First step towards this is to use ANSI SQL. But then arises questions like how to manage primary keys (have to mantain identity myself), how to fetch large dataset quickly (can't use SQL Server specific stored procedure), and other pertinent questions. Can anyone guide me, how should I pursue this goal, any ideas/suggestions, samples etc. Thanks. Regards, Ali I've done this a couple times and the right answer usually depends on how important performance is. For the most part, if you use ODBC and a common subset of SQL, you can run the same code on multiple databases but I've nev ...Show All

  • Visual Studio 2008 (Pre-release) Problem with generic list nested

      I have a SOA type WCF application with netTcpBinding that uses messages (request, response) to communicate client with Server, I use entity classes (Entity) and a collection ( EntityCollection ) that inherits from a generic list ( List < Entity > ).       [ Serializable ]     public class Entity     {         private int id;           public int ID         {             get { return id; }             set { id = ...Show All

  • Windows Forms help needed on how to create a spinning wheel using MS VS.NET2003 in vb

    hi i need to create a spinning wheel in window form using MS VS.NET2003 in vb. i need to have a wheel which can be spin by clicking on  a spin button which is similar to the wheel of fortune but minus off the word puzzle function. hope any one can provide me with any help. You can try the below code.. Use a picturebox and a timer control.. the below code actually drawas a control (clock like) which keeps on rotating the hand. Use can stop the timer control by using timer1.enabled = false Private angle As Single = 0 Private Sub PictureBox1_Paint( ByVal sender As Object , ByVal e As System.Windows.Forms.PaintEventArgs) Handles PictureBox1.Paint e.Graphics.T ...Show All

  • Visual C# How to register application in Windows registry

    Hello I have developed application of adding Menu item in Quickbooks in C# But i am getting the Error of CallBack application for the CLSID or ProgID provided in subsciption request cannot be find I think that my application is not registered due to which i m getting this error.. Any one dat know how to register Application..in windows registry Regards, Aamir Thanks for replying .. Actually wat i m doing is .. I am adding the menu item in Quickbooks for it i have two classes 1.Subsciption 2.Callbackclass in Subsciption class i m giving the refernce of Callbackclass like (namespace.Callbackclass) but wen i run application it shows me error. i have made entries in Registry through RegistryKey cla ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. IDisposable Interface

    Hi, In my old MDX game, I always use the IDisposable interface in every class and call the Dispose function when the object is not in use. It is because it seems that the garbage collector will not clean up the resource when I really need free space. But now for the XNA, is it necessary to do the same thing i.e, override the Dispose function and Dispose textures used in the class. Thanks Unless you want to micro-manage all your resources or if you are manually loading any resources (Texture2D.FromFile, etc), you don't need to implement IDisposable. contentManager.Unload() will dispose of all relevant resources created with it automatically. ...Show All

  • Visual Studio 2008 (Pre-release) Install Issue Orcas RC1

    I have the following installed .NET Framework 3.0 (RC1) Microsoft Windows Software Development Kit (SDK) for RC1 Visual Studio 2005 But the Orcas RC1 tells me that i'm missing .NET 3.0 Runtime Files which are Installed..So i'm at a loss here,any help will be appreciated...Thxs OS: Windows XP Pro with Media Center 2005 I was using the June Build of Orcas and EID...I got all the Downloads from the links you provided above,I Un Installed Everything that had to do with the previous version...But when i went to install the RC1 it would tell me that the .NEt 3.0 Runtime RC1 was missing,Even thou i had the Sept Build of EID up and running and using the Application... So i ended up Formatt ...Show All

  • Windows Forms Form Inheritance and Inheritance Picker problem

    Hi everyone: I have some base forms and usercontrols in a project named "UILibrary". And I create derived forms and derived usercontrols in other several projects. Everything goes very well. After a period of time, the solution grows and I modified classes in "UILibrary" and built it several times. The problem is coming. When I wnat to add a new item, also select Inherited Form or Inherited Usercontrol template, an "Assembly Load Error" message box shows. The message is "Unable to load assembly 'D:\Ap\UILibrary\obj\Debug\UILibrary.dll'. Ensure that the file is a valid .Net Framework assembly."  Then the Inheritance Picker&n ...Show All

  • Visual Studio 2008 (Pre-release) Why a GeometryModel3D which Opacity setted as 0 can blot out other GeometryModel3Ds ?

    When I Set a GeometryModel3D object's Opacity to 0 in a viewport3D, it has been lucency,but it blot out other Model3D objects ! I think when I set a Opacity of GeometryModel3D object to 0,the GeometryModel3D object should be disappear ,and not hidden other Model .Anybody can tell me why You may just need to re-order the models you have in the scene so they render from furthest away from the camera to nearest to the camera. I don't know if this is true for Avalon but in DirectX, you have to render 3D things in the corect order for translucent surfaces to work as expected. Say you have the following scene: ------------ <- triangle A z=-1 ------------ <- translucent triangle B z=0 \/ <- camera z=1 If you re ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. C# and Dx9 trouble.

    Hi,  I'm not sure if this belongs in here, because I don't know wether my problem is a C# or a Dx9 issue, but ill take my shot. I made a C# Project using VS2005 Proffessional, which includes a Picturebox, in which I render my 3D stuff using DX9c. The app also has some non DX9 standard tools, like Buttons, Textfields, etc... . The second i start rendering with the Directx device, all non DX9 stuff stops being redrawn. The Buttons still work but theres no animation, no update, the Framerate stops being updated, nothing works which includes graphical altering except the DX9 stuff rendered within the Picturebox. I tried to Refresh the Form, but nothing helps, I'd appreciate all comments, thnx. Greetings Alexander You h ...Show All

  • Visual Studio Column Charts and other Report Viewer Controls

    I created a VB.net application whose main purpose is to produce reports to give to my students at a language school. These reports are meant to show how they stand against the class average. I initially I used excel, but there are limitations there that VB.net does not have. However, I have run into a wall when it comes to producing Charts. Therefore, can I do the following with Charts in VB.Net (VS2005) (LocalMode) with the ReportViewer control: 1) Create a combo line/column graph I want to have the class average in sectors (ie, fluency, vocabulary, expressions) and the line being their actual score. And can these be overlayed like in Excel. 2) The datafields and series confuse the heck out of me. My logic tells ...Show All

  • Visual C# About Write App.config

    I use sample code with article Read/Write App.Config File with .NET 2.0 listed below         // Open App.Config of executable         System.Configuration.Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);         // Add an Application Setting.         config.AppSettings.Settings.Add("ModificationDate", DateTime.Now.ToLongTimeString() + " ");         // Save the changes in App.config file.         config.Save(ConfigurationSaveMode.Modified); but When I run the programme, I do not see any ch ...Show All

  • Visual Studio Express Editions Project to big

    Hi, I made a project called 'Tetris' as the title already it says: it should be very small. And after removing all audio, pictures necessary dll's and framework/.... it is still 27MB what is really too big!!! Can somebody tell me how to get it smaller and why it is so big Help is really appreciated I already excluded framework, but still same size. When looking in the bin folder I saw that the Tetris.exe file has a size of 28MB... So what should I do now I think al sounds/bitmaps/... are max 1MB! [PROBLEM SOLVED] ...Show All

  • Software Development for Windows Vista Latest DirectShow SDK, overview and samples

    DirectShow is one of the best things with Microsoft, BUT Im truly concerned about how the DirectShow developers are treated by Microsoft, there is no easy way of understanding how you can obtain the latest SDK and to receive a complete overview of the technology. I would like to see a separate complete DirectShow developer section where you can get a complete overview of SDK;s and what you need to develop "State of the Art" DirectShow applications. So please tell me im wrong and just did not find the right place to go and where I should go for that. BMS-Joppe Besides the link which Mike gave you, there is a fairly comprehensive list of dshow resources and links available on my site: http://tmhare.mvps.org ...Show All

  • Visual C# PostMessages in to different app using C#

    I want to send keystrokes to another application.  Here is what I've done so far, but it doesn't seem to work... private IntPtr GetWindowHandle( string appName) {     IntPtr windowHandle = IntPtr .Zero;     Process [] processes = Process .GetProcessesByName(appName);     if (processes.Length > 0)    {         windowHandle = processes[0].MainWindowHandle;     }     return windowHandle; } [ DllImport ( "user32.dll" )] private static extern bool PostMessage(     IntPtr hWnd, // handle to destination window     UI ...Show All

©2008 Software Development Network