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

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

woodpecker0127

Member List

Billr17
Pintoo Khaira
Ravenheart27
Kevin F Jones
Ekta
Zulbaric
daydreamsy2k
programmer01
Andrew J
επιστημη
Kennon2005
Uri Kluk
Ryan Sanders
Daveskis
kefren
KentaroM
sfabriz
justme73
faraaz_malak_c92eb4
Fernando Simonazzi
Only Title

woodpecker0127's Q&A profile

  • Visual C++ VS2005 3rd Party library woes... and solutions!

    I have been researching forums about the problems of linking to old 3rd party libraries in VS2005. We are migrating to VS2005 at the moment, and are facing all of these issues. It seems to me to be a big oversight on behalf of Microsoft to leave what must be many, many people stranded with this problem. However, I'm interested more in finding solutions. Looking into the forums, people are coming up with all kinds of suggestions mixing libraries, defining symbols etc... it all looks a little unstable to me. I'd like to list a couple of ideas here and have some input from you as to how practical / stable they actually are: (1) Regarding the mixed mode dlls that we have compiled with VS 2003 that use these 3rd party libraries, compiled for .N ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture creation fails on XBox 360

    Can someone tell me why the following piece of code won't work on the XBox 360 I don't have an XBox 360 myself (and it will be at least 6 more months before I plan to afford one), so I can't test this at home. If anyone could tell me what's needed to make this snippet working, I'd be very happy :) // Look up the maximum texture size supported by the device Point textureResolution = new Point ( graphicsDevice.GraphicsDeviceCapabilities.MaxTextureWidth, graphicsDevice.GraphicsDeviceCapabilities.MaxTextureHeight ); // No larger than 1024 to avoid becoming a memory hog on systems // supporting insanely large textures :) textureResolution.X = Math .Min(textureResolution.X, 1024); textureResolution.Y = Math .Min(textureResolution.Y, 102 ...Show All

  • Visual Basic What is wrong with the ComboBox !!

    Hi all, I am writting very simple event for the ComboBox... but my msgbox displays nothing. kindly have alook at my code. Public Class Form1 Private Sub ComboBox1_SelectedIndexChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) 'Handles ComboBox1.SelectedIndexChanged If Me .ComboBox1.SelectedIndex <> -1 Then 'MsgBox(Me.ComboBox1.Text.ToString) MsgBox( Me .ComboBox1.SelectedText.ToString) End If End Sub Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Dim conn As New Data.OleDb.OleDbConnection( "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\MaHMouD\Deskt ...Show All

  • Visual Basic Printing Problems

    When i take printouts directly from the forms with the MSFlex Grid in it.... Printer never prints the MS-Flex grid box neatly... The Grid box in the hard copy is totally printed with a dark gray color... and no text will be seen... Even if i change the background coor of the grid box ... it is printed with a dark gray color.... Can any one please help me what to do to get it prinet properly....... Hi Siddarth, You don't say, but since this is the Power Packs forum I assume you are using the PrintForm component. Have you tried using different PrintOption settings (CompatibleModeClientAreaOnly vs ClientAreaOnly) The two settings use different implementations to cature the form, so sometimes one will give better results than the other ...Show All

  • Visual Studio Accessing Crystal reports without .net being installed

    Hi all, I have developed a windows application using vb.net which displays crystal reports. Now I have to run this .exe in another system which does not have .net installed. Is this possible ..If 's' what are the files that have to be exported to that system.... Please can anybody help me out .It's very urgent....... plzzzzzz....... Hi, I tried to run the application with the microsoft.net framework sdk v2.0 and crystal reports 8.5 but it throws an exception stating that it could not be handled. process id=0xaf8 (2808), Thread id=0x9a0 (2464). Does it require specific dll's to be installed Regards, Annie ...Show All

  • Visual Studio Express Editions Move pogam

    I wat to take my program to a different computer so i put it on a USB key and took it to the computer then when i go to run it, something happened and errors come up and the program doesn't work. How to i pack it up so i can take it to a different computer and edit the code Instead of just copying the files - Do a click once deployment to CD. This will create a proper deployment setup which you can then run on other machines - one of the requirements in the deployment will be .NET 2.0 Framework so if its not on the machines it will install it. Click Once is really neat. A video that shows a lot of the simple stuff on click once and answers a lot of questions is at http://dnrtv.com/default.aspx sh ...Show All

  • .NET Development Web Services via Javascript

    I have a question for you: At my company we use Web Services with a Delphi made Server and Classic ASP client For doing that, we used a Delphi component called RemObjects and a Microfoft component called Soap Toolkit 3.0 This is what microsoft says about Soap toolkit: The Microsoft SOAP Toolkit is deprecated by the .NET Framework. SOAP Toolkit support will be retired in April 2005. We realized that Soap Toolkit 3.0 doesnt work as expected on Windows 2003 Server platforms. Which is givin a lot of headaches and unsatisfied costumers. Since migrating all Classic ASP application to .NET seems to be a painfull and slow task... Here is my question: Could I just paste my web services from ...Show All

  • Smart Device Development how to use #if COMPACT_FRAMEWORK

    I am implementing a new security model for a project, and I need to change a dll to be CF compatible (ie remove all XPath stuff). I figure a good way to do this would be to use, for example: #if COMPACT_FRAMEWORK private System.Windows.Forms.Panel gbNewPassword; #else private System . Windows . Forms . GroupBox gbNewPassword; #endif However, my compiler wont build it, mostly because it doesn't seem to know I want it to build in COMPACT_FRAMEWORK mode. The project is a C# Smart Device project, by the way. How do I get the compiler to believe we are building the project for compact framework Should I be creating a new solution configuration Thanks, Iceman_Aragorn You'd need to define COMPACT_FRAM ...Show All

  • Visual C# c# exe file called from php page

    i to all, i have to call a simple console application on a server (that only elaborate some jpg files) from a php page passing a parameter. the application have to return a parameter like true or false, how can i do it thanks a lot Teo System.Environment.ExitCode ...Show All

  • Visual Studio Team System Assigning multiple users to a task

    Let's say you have task A, and persons X, Y and Z. I'd like to assign X and Y to task A. However, I don't want to create a group titled "XY" containing X and Y to assign this task to them. Is there a way to add both individuals to the task If the answer is NO, implying I'd end up creating groups XY, XZ, YZ, and XYZ, then when is this "feature" going to be fixed I really can't fathom having to work around this with 10 team members. Thanks in advance. Mark Anthony, Many thanks for your rapid response. I'll find a way to work around the issue. The difficulties with Passport were due to the fact that I was not a member, so wanting to reply to this thread generated a requi ...Show All

  • Visual Basic Intellisense problem: Type is not defined but build is successful.

    Hi, Some of the types in my project have squiggly underlines that indicate the types are not defined. The types are actually defined in the same namespace as the class where they are used. The project builds successfully despite the squiggly underlines. "Go to definiton" functionality of intellisense stops working for the class because of the error indicators. I have tried deleting the intellisense database file but to no avail. Does anyone have experience with similar problem The problem is not critical, however, very annoying. I am using MS Visual Studio 2005 Team Edition. Thanks. I got rid of the problem. The problem seemed to originate from the vbproj file that was somehow corrupted. What I d ...Show All

  • Visual Studio Express Editions SImple Calculator problems

    can anyone help me on how to make decimal point and to also perform the order of operations .. doing more then one problem at once such as 2+3*4 thank you SCott i am not sure that i really understand this.. im new to doing this so i need like... the simpelest explination... i have posted a copy of my code . maybe that will help... once again. i jsut need to make a deciamal point work and function as well as performing order of operations.. but with out the bracets...ex.() i need fo the calc.. to do it it self thanks for oyur help scott Public Class Form1 'Scott Kushner Dim DisplayNum As Integer = 0 Dim PrevNum As Integer Dim Intop As Integ ...Show All

  • Visual C# Controls not available

    I've inherited a system with a strange problem. In an ASP.NET code behind I keep getting "Object reference not set to an instance of an object" whenver I reference any ASP control on my page. This happens in all of the page level events such as Page_Load, OnPreRender, OnPreRenderComplete, etc. The only workaround seems to be to put initialization code in the OnInit of one of the controls on the page. This seems to fire after all of the controls have been created. I'd prefer not to use such a kludgy solution. Is there some setting or something that I'm miswsing that makes the controls render later Any other ideas Jeff Hi Jeffrey, Can u plz ellobrate it bit...... It wil ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. deriving from DrawableGameComponent

    I have a strong feeling I'm missing something very obvious, so hopefully this is easy to fix... I've been trying to convert my beta1 project over to beta2 and there's one build error I can't figure out. I previously had a "SpriteComponent" defined as so: public class SpriteComponent : Microsoft.Xna.Framework.GameComponent and recently changed it so that the line is: public class SpriteComponent : Microsoft.Xna.Framework.DrawableGameComponent Within this class, I attempt to define a constructor as so: public SpriteComponent() { //blah blah } I thought this was pretty standard, but that line gives me the error: "no overload for method 'DrawableGameComponent' takes '0' arguments" looking at the documentation, ap ...Show All

  • SQL Server Updating Data for a List_Table

    Here is my scenerio: I have a few older tables with a few thouands of records that I inherited. I am using data access pages as the front-end for now which is very limited. I made List_Tables for common values example below: I am trying to use these List_Tables to Input Data Consistently via Dropdown lists . I am able to input data into the Old Table from the Data Access Page /w the List_Table Dropdown , but I am unable to read any data from the Old Table on the front-end even is the data is the same . Once I enter a value from the New Table it will display . Is there a way for me to update the data value from the old table to that of te new table A case statement or something so my New Table Dropdown will display everything Very Confusi ...Show All

©2008 Software Development Network