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

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

pcompassion

Member List

nbrege
SamuelS
Hussain Saffar
EricGeorge
Darren Baldwin
doug finke
hrubesh
CassieC
LastBoyScout
IZON
Shawn Carroll
Gurpreet Singh Gill
Itzik Paz
Rodolfo Navarro
Handi
Jamie Thomson
markgoldin
kele
D14bl0
nlarkjason
Only Title

pcompassion's Q&A profile

  • .NET Development VB .net "downgrade"

    I am working on a fairly simple application using VS2005, VB code.. and Dot Net 2.0. I was shocked when I checked... the application was using something like 40 mb of ram and thats just plain *ugly* and a huge bloat factor. Is there a proper place to discuss moving these types of applications back into something like VB6, or doing something to get rid of this huge bloat Thanks! Gary 1992, Windows 3.0: 4MB ram, 250KB app = 6.25% 1998, Windows 98: 16MB ram, 1 MB app = 6.25% 2006, Windows XP: 1GB ram, 40 MB app = 4.00% You're ahead... ...Show All

  • SQL Server Moving SSIS Package

    Hi, I have to move my SSIS Project from Machine1 to Machine2 in a Development environment.when i open the Project in Machine2 .i have to restore all the connections in the connection manager. even after restoreing the connection sucessfuly .the package looks perfectly with out any error.but when i run the package.i am getting the following error [Connection manager "Srv1.DBTest"] Error: An OLE DB error has occurred. Error code: 0x80040E4D. An OLE DB record is available. Source: "Microsoft OLE DB Provider for Oracle" Hresult: 0x80040E4D Description: "ORA-01017: invalid username/password; logon denied ". How to solve the problem. Thanks Jegan Are you using Window ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Major DirectX Problems

    I have been having problems with actually installing DirectX, and I've searched the forums and looked at all the possiabilities that could be causing the problems. I do not know why it keeps giving me an error when I have every thing linked correctly. Here is the error I get, and I dont know why its not working: ------ Build started: Project: CreateDevice, Configuration: Debug Win32 ------ Linking... CreateDevice.obj : error LNK2019: unresolved external symbol _Direct3DCreate9@4 referenced in function "long __cdecl InitD3D(struct HWND__ *)" ( InitD3D@@YAJPAUHWND__@@@Z) Debug/CreateDevice.exe : fatal error LNK1120: 1 unresolved externals Build log was saved at "file://c:\Program Files\Microsoft DirectX SDK (October 2006)\Samp ...Show All

  • Windows Forms Tutorials on imaging for beginners

    I am trying to make a bitmap font program. I want it to allow the user to assign an image to each char of the standard ascii lineup. Then when a user types in a textbox, it will create an image based on the contents of that box. I have seen some freeware programs that do this but are harder to use than needed. I have tried to ask for the source code (since they are freeware) but the authors have refused. So I have decided to make my own. I have no idea how to create the image though. Is there any tutorials for people who have never done anything with images in vb.net before If you want more information on what I am trying to do then please ask. Thank you, Troy L. I just tried the method you posted and realized that it was kind of li ...Show All

  • .NET Development Can't figure out this error message

    Good Day all, I seem to have hit a dead end. I am "attempting" to write a web application to retrieve, insert and update information in a SQL2000 database. I can retrieve information just fine but when I try to update it I keep getting the following message: System.Data.SqlClient.SqlException: Line 1: Incorrect syntax near 'UDPATE'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataS ...Show All

  • Smart Device Development using my .h files in C# project

    I would like to give a C# application access to constants/Structures and interfaces defined in C/C++ header files . They are use d by many other applications, and I do not want to redefine them in my C# code. How can i use my existing .h files in C# project.. I'm afraid that you will have to re-declare the types in C#... C++ and C# can be so different, that it's impossible to use C++ declarations directly in C#. You should look for P/Invoke tutorials to see, how data structures can be translated from C++ types to C# types. Here's couple: Here's introduction to Compact Framework P/Invoke, and some examples what C++ types maps directly to C# types (blittable types) http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnne ...Show All

  • SQL Server auto resizing column

    hi all i am working on sql reorting 2005 how can i set the column width to autoresize depending on the maximum length of data for that column plz help me. As far as I know, there is no way to autoresize column width. The only property to account for adjusting a cell's dimensions is "CanGrow." If this is set to True, the cell will increase vertically to fit all the data. However, this only adjusts the height and not the width. ...Show All

  • Smart Device Development UI Design Pocket PC?

    Hello , i am designing a Pocket PC 2003 App. How best the GUI can be designed or is there any guidelines to build rich GUI. Pls suggest. Thanks Karthik you might find the following links useful.. http://www.windowsfordevices.com/articles/AT4228820897.html and, if you are going for ms conformance, there is a UI section here http://www.microsoft.com/mobile/assets/microsoft_pocketpc_handbook.pdf ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Dec06 fxc.exe broken

    Where do I send DX SDK bug reports The Dec06 fxc.exe seems broken, passing the same command line that worked in Oct06 to Dec06 fxc fails to compile or even read the .fx file, it spews the command-line argument help as if you've made an argument-passing mistake (without telling you what it is!), but according to the help file all the arguments are valid! Also, the Dec06 added a bunch of new cmdline arguments with no real explanation in the documentation: /Gdp disable effect performance mode /Ges enable strict mode /Gec enable backwards compatibility mode /Gis force IEEE strictness /Gch compile as a child effect for fx_4_0 targets Can someone provide more details on these The new /LD ...Show All

  • Visual Studio Express Editions How to delete selected row in datagridview?

    Hi, how do I permanently delete selected row in datagridview as well as permanently deleting it in my .mdb file . Thought of using oledbcommand or something but I am still a beginner in C# so not familiar with Oledb. Thanks. Thanks Scott. Nice example for a beginner. Could you help me out with the exception that occurs Exception: Update requires a valid DeleteCommand when passed DataRow collection with deleted rows. I try to use the update method to update my database this is where the pump1TableAdapter.Update( this .fYPDataSet.Pump1); <<< Exception occurs<<<<<<< ...Show All

  • Architecture 3D Modeling tool

    I have this problem to solve, hope that you can help me: I have a building with a “control system”. The control system, depending of the temperature inside and outside the building, opens and closes windows automatically. I want to create a 3D model of the building that displays in real time the processing mode of the building (temperature inside and outside, windows that are open and closed, etc). For that I have to interconnect the “control system” of the building with a computer. The control system give data (temperature inside and outside, windows that are open and closed, etc) in format txt. I want also to be able to use the computer to give commands to the control system, i.e., if I want to close a certain window I wa ...Show All

  • Visual Studio 2008 (Pre-release) Listview memory leak :-\

    I think listview have a memory leak since my application keeps eating memory... I'm making a little task manager which updates itself each 1 second. I bind a bindingList to a processView processView is a listview. blprocesses is bound the processView listView blProcesses = new BindingList<Processes>(); processesView.ItemsSource = (IEnumerable<Processes>)blProcesses; Here is the xaml i used for the listview <ListView DockPanel.Dock="Top" Name="processesView" Loaded="on_processViewLoaded"> <ListView.View> <GridView AllowsColumnReorder="True" ColumnHeaderToolTip=& ...Show All

  • Visual Studio Team System How to do a forward merge?

    I have a branch for myself, but there has been several days I didn't get updated with main tree. Since I have little knowledge about forward merge and am afraid that risk on this merge. Can some guys give me a tutorial thx in advance. Hi, For a backgound on source control topics see Eric's Sink's excellent collection of articles:- http://www.ericsink.com/scm/source_control.html There are also a nice Branch/Merge primer from Chis Birmele:- http://blogs.msdn.com/chrisbirmele/archive/2006/05/31/611179.aspx In Team Foundation Server you can merge one step forwards or backwards, i.e. from the main tree to your personal branch or back again. Hope that helps, if it is something more specific about the wa ...Show All

  • Visual Studio Windows installer problems

    I ran into some virus problems a few days ago and thought that I had fixed them.  I then received access to install Visual Studio 2005 and Windows XP PRO embed SP2.  I checked for comapatibility of XP PRO with my computer and everything checked out fine.  I was too hasty in the install of XP PRO and forgot to make a system restore point before the install.  After the install everything seemed to work just fine but then windows installer popped up.  The windows installer box just says "initializing installation" and does nothing else.  If i click cancel on the box, it says "canceling installation" but does not go away.  Eventually it will give a message that says "retry or cancel" and I hit cancel and then ...Show All

  • Windows Forms Drawable Items in TreeView

    I have a tree view that i want to show some nodes in it. how can i create nodes that can draw themselves without using imagelist in treeview Actually i dont want to use any image index and imagelist. First derive a treeview class from System.Windows.Forms.TreeView. Please see the follwoing class. public class MyTree : System.Windows.Forms. TreeView { public MyTree() { //Indicates that full drawing will be done by us. this .DrawMode = System.Windows.Forms. TreeViewDrawMode .OwnerDrawAll; } /// <summary> /// Called when each node is drwn /// </summary> /// <param name="e"></param> protected override void OnDrawNode( DrawTreeNodeEvent ...Show All

©2008 Software Development Network