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

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

memac

Member List

sysmaya
aiopunk
manish kumar sharma nag
renju_dom
dvferretm
JensN
Joao Pinto
sjayachandran77
brownmb
SandieM
harsha09
Jacques 316
tim_baxter
D06147
Kofi J.
Jameer
sqldev80
JordSTAR
nishanttheone
craig kelly-soens xpectworld.net
Only Title

memac's Q&A profile

  • Windows Forms Mouse Events in a user control

    Is there a way for my user control to receive mouse events instead of its constituent controls  I have a user control to which i added couple of labels with dock property set to top and fill. My user control never gets the MouseEnter or MouseLeave events. Any ideas on this  Thanks. I've already tried that. I also tried to register to  ...Show All

  • Visual Basic Jpg to Tif convert

    Does anyone know how to convert a 32bpp image to a 1bpp image so I can save it as a compressed TIF I know how to save a compressed TIF, but I do not know how to convert a 32bpp image to a 1bpp image. PLEASE HELP. Thanks; Ben Thanks for the reply. .Net do not allow you to create a graphics object for a 1bpp image. How do you draw a 32bpp image on a 1bpp image without a graphics object Thanks; Ben ...Show All

  • Visual Studio 2008 (Pre-release) DataContext Serialization and Distribute Architecture

    Hello, Do you intend to implement a DataContext Serialization... On a distribute Architecture how can we exchange a DataContext Having an explicit management of the ChangeSet will be great: - GetChangeSet() - ApplyChangeSet(...) Do you any commitment with WCF team to get a mapping between DLinq Entity and WCF DataContract. A big picture of DLinq and WCF will be very usefull. Regards DataContext itself is not serializable as it holds non-remotable resources like a DB connection. We are working on a better experience for serializing the objects retrieved using a DataContext. We are ...Show All

  • Microsoft ISV Community Center Forums Symbols for VBA6.DLL?!

    Hello! Might be little off topic, but I don't really know where else to ask. I'll appriciate any help... I am in need of debugging VBA6.DLL(I have VS6+SP6) so I examined VBA6.DLL a bit and discovered that it contains debug information... Great, I'll finish in minutes, I thought, but I should have known better... So I fired up a WinDbg(6.4.0007.0) and tried to retreive symbols from Microsoft's symbol server(it's http://msdl.microsoft.com/download/symbols ) with .reload /f /s vba6.dll I was lucky, symbols were there(old format but there) so I got my self a VBA6.DBG. And, there lies a real problem. VBA6.DBG points to VBA6.PDB (in ...Show All

  • Visual C++ Inheriting from a generic class

    I may be being stupid and doing something completely wrong but I'm trying to create a class that inherits from a generic list. I only want to store one class type in my class but I can't work out how to do it. I've tried using namespace System::Collections::Generic; #include "MyItem.h" public ref class MyCollection : List <MyItem^> { .... } Is this possible or am I doing something wrong with the syntax. Sorry if this is an obvious question but I've only previously used VC++6 and I've never used .net before. Thanks Mog Thanks...it seems that the data is being added correctly to the ...Show All

  • Windows Forms MSI and product upgrade ideas

    Here's my thought, I just want to see what the community thinks of it. I have a tiny little application. but it has a number of dependencies. I can't use a single assembly, and I can't really rely on pulling the latest assembly from the web (a-la "no touch" deployment). So here's the idea I came up with. I want to put a web service  ...Show All

  • Visual C# Delegates Problem - calling method more time then expected

    Hi all, I am having very strange problem. I am using delgate to call one of the method in the class. The problem is eveytime the event occurs it increasing the call value by one. For example when first time the event occurs it calls the method once, than second time twice and so on. I checked my code to find if there are any multiple copies of the same object lying around and didn't find any. Here is the code i am using. site.SocketChanged += new AC. Site . SocketEventHandler (site_SocketChanged); // where site is the object of type Site void site_SocketChanged(AC. Site site) { object [] param = new object [] ...Show All

  • Visual C++ About convert CString to char*

    When I Search the forum with this tilte,I found there is a way to convert CString to char*.but I get a error when I compile it in vc 2005  CString hello("CString");  char* hello1=new char[hello.GetLength()+1];  _tcscpy(hello1, hello); Error 1 error C2664: 'wcscpy' : cannot convert parameter 1 from 'char *' to 'wchar_t *' d:\projects\c++.net\test3\test3\test3.cpp 20  why thanks.   Short Answer: Why are you using a char * when you clearly wanted a TCHAR * Long Answer: In previous versions of Visual C++, all applications were compiled with Unico ...Show All

  • SQL Server Reporting Services and DotNetNuke

    Hello, I'm using DotNetNUke as a portal. I would like to use reporting services to extract some information. However the user informations are kept on database but in xml format on a field. How should I get that information on a report Thank you. Jose ...Show All

  • SQL Server Can I run SQL2000Dev and SQL2005Exp Side By Side?

    Have an asp.net 2.0 application that I want to enable a "demo" version of with the required tables. The tables currently exist in SQL2000Dev on a server. I have installed SQLEXP on a clean box and restored the database to it no problem. Now I want to install SQLEXP on my dev pc side-by-side with the SQLDEV instance. I could not find any reference to this ability other than some warnings about the pre-release versions. Can it be done safely Thanks, Paul Absolutly. Install them to different instance names and it will work just fine. Regards, Mike Wachal SQL Express team ---- Check out my ...Show All

  • Windows Forms PRB - SplitContainerDesigner initialization throw exception.

    Hallo all, i wrote a .NET windows forms editor working under framework 1.1. Now i tryed to use it under framework 2.0 and i found the "SplitContainerDesigner" throw an "Object reference not set to an instance of an object" exception if it is initialized. As you know .NET design time programming is complex, so i extract some lines of code out of my programm to demonstrate my problem: (...) IComponent aComp = (IComponent)Activator.CreateInstance( typeof (SplitContainer)); System.ComponentModel.Design.IDesigner designer = TypeDescriptor.CreateDesigner(aComp, typeof (System.ComponentModel.Design.IDesigner)); try {     d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Script Engine: Building a syntax tree

    Hi Im building a script engine and need some help for building a syntax tree to be able to convert the script (C style) into opcodes. My script is allready parsed into tokens, using identifiers, constants, operators, ...   Any help on this   Greetz Nightmare You might want to look at ANTLR . It's a parser generator tool that generates in C# (and Java and C). Also look at some of the other entries from this google search . ...Show All

  • .NET Development Initialising a .NET COM dll

    Hi, I am writing a .NET assembly that will be used by some VB6 app, using COM. I need to perform one time initialisation of the .NET assembly and I cannot reply on the user to call an Init method or similar. Ideally I want to respond to the AssemblyLoad event but I'm not sure if this is possible as the runtime actually loads this assembly. Is there an assembly level attribute I could use perhaps Failing this I'm going to be forced to check the Initialized status of the assembly in each accessible COM object and initialize it if it hasn't already been done. Thanks for your help Graham Thanks Shawn. You ta ...Show All

  • Visual C++ How to access web page files using C++

    Hi all,    I have a list of web pages that I need to pull certain numbers from and will need to do it frequently, thus a program that has the list of address to pull the data from will make my life easier.      Can you access web pages like you would to access files on your computer using the fstream library.  The idea is to then parse through and find the certain tag, for example: I need to find the living area of a home on the site, I would like to open up the file, in this case and .asp.  Then I would read in each line and look for what I need, in the case I would look for:   &nb ...Show All

  • Visual Studio no dynamic image location in crystal reports for VS 2005?

    Hi, I use a database table where the file path of an image is stored in a column. I want to dispay the corresponding image for each row in a report, but found no way to bind to a file. Has anyone some suggestions Thanks, - Stefan Be careful how you package the path and file name. I found that if I entered it as a string, such as "c:\my.bmp", the default picture always came up. As soon as I entered it as simply c:\my.bmp (no quotes), it worked fine. I hope this helps. ...Show All

©2008 Software Development Network