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

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

giddy

Member List

siavoshkc
Eduardo D
JennyMQuinn
DryvBy
Can-Ann
Falklian
JerryZhang
XImplosionX
Kevinmac
Vaish
harvs
Mike!
Joe Buys
rsnewbie
Oleg Kalenbet
Marc Jones
ProSlamBanO
Vikas Pradhan
Daigu
dgolds
Only Title

giddy's Q&A profile

  • Smart Device Development Send MMS with MAPI

    Hi, I want to send SMS, MMS and MAIL from my PocketPC. I am using Messaging Tutorial on MSDN ( http://msdn.microsoft.com/library/default.asp url=/library/en-us/guide_ppc/html/ppc_inbox_and_ce_messaging_smxx.asp ) and SendMail project sample from the SDK. I can send SMS and MAIL but I don't know how to send MMS, which special featured have to be configured Thanks in advance, Merche Thank you very much for your answer and sorry because I have not read it till today... My problem continues... so if you make any successful test please let me know, I will do the same Thanks in advance and best regards, Merche ...Show All

  • SQL Server populate catalog Full Text Search SQL 2005

    Hi To All I'm trying to populate catalog in SQL 2005, but it doesn't work because in tables there are ntext fields. In SQL 2000 it works normally. I've made some test in both sql server. Why Is there something to set in sql 2005 Thanks Bye Yes ok ... the problem remains ....I can't change the columns in nvarchar(max) tnx for answers. ...Show All

  • Visual Studio 2008 (Pre-release) How to host multiple services at a single location in WCF?

    Hi evryone, WCF is totally new to me, so I need to learn from all of you. After learning WCF by download examples in Microsoft‘s website, I still not quite sure how to design the software for my company using WCF technology. Example: I need to develop software which needs to have many contracts to implement by many classes Interface I EmployeeCtrl ( ServiceContract) implement by: EmployeeCtrl class Interface I SalesOrderCtrl ( ServiceContract) implement by: SalesOrderCtrl class Interface I PartCtrl ( ServiceContract) implement by: PartCtrl class Interface I SalesOrderCtrl ( ServiceContract) implement by: SalesOrderCtrl class and many more …. Based on what I know about WCF at this point, I ...Show All

  • Visual C++ StackOverflowException in Managed C++ wrapper

    Hello, I have some C++ code in a dll and I wrote a .NET wrapper for it with MC++. In the managed class I have a handle to the C++ code: public __gc class NInfoCmdClntCLR { private: ClsNInfoCmdClient *native; public: // ... } I also declared the ClsNInfoCmdClient class as follows: class ClsNInfoCmdClient : public NInfoCmdClient { public: // constructor and destructor ClsNInfoCmdClient() {} ~ClsNInfoCmdClient() {} // implementation of virtual methods in parent class void NiccCmdStateChanged( NiccCmdState eNiccCmdState ) { NInfoCmdClntDLL::RaiseStateChangedEvent( eNiccCmdState ); } void NiccNotifyError( string strErrMsg ) { NInfoCmdClntDLL::RaiseNotifyErrorEvent( strErrMsg ); } }; The problem is ...Show All

  • SQL Server Cannot delete users in SQL 2005?

    Hi, Running multiple SQL 2000 servers and on each can easily go under Enterprise Manager>>ServerXYZ>>Security>>Logins>>Delete and delete user regardless users DB membership etc...now installed SQL 2005 (MS SQL Server Management Studio) and trying to do the same (attached to server running SQL 2000) and I cannot do it. Each time I try it, I am getting: TITLE: Microsoft SQL Server Management Studio ------------------------------ Drop failed for Login 'testdelete'. (Microsoft.SqlServer.Smo) For help, click: http://go.microsoft.com/fwlink ProdName=Microsoft+SQL+Server&ProdVer=9.00.3033.00&EvtSrc=Microsoft.SqlServer.Management.Smo.ExceptionTemplates.FailedOperationExceptionText&EvtID=Dro ...Show All

  • SQL Server OpenXML Identity Insert

    I am inserting data into a table using the OpenXML command (see query below). The table that I am inserting it into has an identity column named SOFTWARE_UID. I need to return an xmldoc with the identifier included for each row inserted. Does anyone have a clue how I can do that efficiently I know I can do it with a cursor, but if that were the case, then why not just do x inserts with an @@identity call I am looking to do this in an efficient way, preferebly with an out of box function (such as @@identities). Declare @XMLString varchar ( max ) Set @XMLString = '<IT_SOFTWARE> <SOFT name="Soft1" status="1"/> <SOFT name="Soft2" status="1"/> <SOFT name=&q ...Show All

  • Visual C++ 64b development: Huge problem with VS2005 on a 32b OS

    Hi, I've just discovered this weird bug in VS2005: when compiling and linking my application with the x64 platform target on a computer running Windows 2000, the executable can't be run on a Win64 computer. I've spent a lot of time trying to solve this pronlem, and I found the following: - by using Depends, I found that it's the "exported symbols" table that's invalid in these files, - it seems to be related to the Embed manifest option, because disabling it will generate valid executables and dlls, - the problem doesn't happen if I link the file on a Win 64 computer. So it seems that the Embedding process is not correctly done for 64 bit executables on 32 bit computers. By searching for this problem on the internet, I found that - some us ...Show All

  • Visual Basic How do i display error message in one message box

    hi, i have question about display all the error message in one message box. The application that i am creating will allow user to enter for example first name, last name, email address, their relationship status. The fields for different textbox could contain different errors, for example name textbox could not contain symbols and email address must contain @ sign. if errors occur then message box should pop up after submit button click. now the question is how do i put all the error message in one message box after submit button is clicked. thank you Sry, i think you misunderstood the question. I already did the parts on how to check the error enrty. the problem is that now i want to display all the error m ...Show All

  • Visual C++ Check existence of tables and fields

    In a console C++/CLI app, I would like to check for existence of specific tables and fields. Which .Net classes and methods should I be using FYI: I've successfully open a connection to a MS Access database as below: ////////// OleDbConnection^ conn = gcnew OleDbConnection; conn->ConnectionString = <db conn string> ////////// There are newsgroups and forums that deal with .NET and database programming. If you have a question specific to the C++ language then you can come here. Thanks, Brian OTP ...Show All

  • Visual Studio Express Editions How to open a form when click a button

    I'm trying to open a form when I click a button on my main form...I made the function and I tried to use my knowledge form VC++ 6.0 but it doesn't work.I added #include "Discovery Browser Calendar.h" in Form1.cpp and also #include "Form1.h" in Discovery Browser.cpp and I wrote in the function I have made in Form1.h: DiscoveryBrowserCalendar cal; cal.Modal; and it doesn't work...I don't know what to do.... DiscoveryBrowserCalendar cal; cal.ShowDialog(); or DiscoveryBrowserCalendar cal; cal.ShowDialog(this); or DiscoveryBrowserCalendar cal; cal.Show(); if you want the form to be modeless. ...Show All

  • Windows Forms Problem with showing form with small size.

    I have a problem with showing small form – I want the form to be in size (5,100) but when I’m trying to show it the form size is bigger then I want. My code: Form form = new Form(); form.StartPosition = FormStartPosition.Manual; form.ShowInTaskbar = false; form.FormBorderStyle = FormBorderStyle.None; form.Size = new Size(5, 100); form.MaximumSize = new Size(5, 100); form.Show(); // form.Size = new Size(5, 100); - works but with flicker I can change size after showing the form but then I have flicker. What can I do Try overriding OnSizeChanged, and examining the stack trace when it gets called. Something is changing the size of your form during the process of making it visible, which is overriding the s ...Show All

  • Visual Studio 2008 (Pre-release) Meta data exchange with indigo webservice

    Hi, How can i exchange the metadata with the indigo service. Does WCF provide any particular facility for that Yes. The service host can have an endpoint that implements the WS-MetadataExchange standard and exports the servide WSDL description. Just add the following endpoint to your service configuration <endpoint address="mex" binding="mexHttpBinding" contract="IMetadataExchange" /> Hope it helps Pedro Felix ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Displaying a Blender x exported model

    I create a simple cube in Blender. I assign a uv-mapped texture to it. I create a .x file of the model. I start the XNA tutorial on loading and displaying a model. So far everything goes as expected. The tutorial model displays fine. I copy the model and texture to my game-dir, add the model to the content pipeline. So far, so good. I modify the code to display my model, run the code and there I get confused: The screen is blue. The code is able to find the .x file and to locate the texture. That I have tested. There are no compile errors about the .x file. Furthermore I have the most recent .x file exporter for Blender I could find. I also played with flipping the normals in all ways I could think of. No result what soever. Un ...Show All

  • Windows Forms Panel Opacity

    Is there any way to make the background on a panel have 50% opacity so I can use it as a custom border http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=593219&SiteID=1 This might help. ...Show All

  • Windows Forms Help in implementation of a magnifying glass

    I have an image viewer application which I want to apply a magnifying glass effect on certain area of the image. The problem I've run into is that when I slowly dragged the magnifying glass across (when left mouse down) the magnifying glass window didn't move smoothly. I believe it has something to do with drawing the graphics of the original image on the background. May someone please help me solve this issue Thanks. You are correct, the "this.Update" isn't required, but it does help to minimize the flickering of the magnifying glass panel. I have just emailed you a sample project that implements the magnifying glass feature. Thanks for your help. You are amazingly fast and helpful. Keep up the ...Show All

©2008 Software Development Network