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

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

MaggieChan

Member List

trist007
dmsy
johnny_no1_boy
Tamizhan
AndrewLuiHK
milicica
anisxahmed
avenueofdesign
Ree84
Lambros Vasiliou
Tobias Zimmergren
jebrown
NeilSa
Jassim Rahma
LennardF1989
boston123
Sailu
prome
sliderhouserules
toargul
Only Title

MaggieChan's Q&A profile

  • Software Development for Windows Vista Vista Logo Compliance

    Hi All, I am currently working with Vista Logo Compliance for software need following information urgently. Please help. What is the process of getting Vista Logo Compliance for Software ( Applications). How can one apply this to any application for getting the same IS there any example available or data found that can be shared for getting Logo compliance. Is there any tools available for getting Logo Compliance. What approach one should follow to achive the same. What are the best practices for getting Logo Compliance. Whate are the Check list for getting Logo compliance. Regards, Ajay Kumar Hi Ajay, This would be your starting point: http://microsoft.mrmpslc.com/InnovateOnWindowsVis ...Show All

  • Smart Device Development What is the differences between the 3 Mobile Form types

    Hi all, can someone please explain the differences between the following... Microsoft.WindowsCE.Forms Microsoft..MobileForms Windows.Forms I'm just a little confused with the Form types appearing in my project. Microsoft.WindowsCE.Forms: Holds classes only availabe on Windows CE / Windows Mobile devices Microsoft.WindowsMobile.Forms: Contains all Forms classes that are only available in Windows Mobile 5.0 - For example the CameraCaptureDialog Please find the details in the MSDN Library. ...Show All

  • SQL Server Alter column name from SQL?

    How can you rename a column in a table (from c# code, preferrably from a SQL script command) without deleting the column and re-creating it with a new name Hello, SQL Server contains a system stored procedure called SP_RENAME which can be used to rename user created object (tables, column, sp's, ...) For more information, look at the BOL documentation on the subject http://msdn2.microsoft.com/en-us/library/ms188351.aspx (this is the 2005 version, but the system stored procedure also exist in previous version of SQL server) Hope this helps, ...Show All

  • Microsoft ISV Community Center Forums Office2003 VBA 6.3 Help files not working correctly.

    When I open the Help window (under any Office2003 application) in the VBA editor, there is a Search bar and a Table of contents. After doing a search for any keyword, a large number of items in the resulting list do nothing when I click on them. How can I fix this Is this the correct forum for this question Where can I find information about fixing this problem Thank you for your time and consideration. Same problem here, Fresh install of office won't solve the problem. Any suggestions would be more than welcome. ...Show All

  • Windows Forms How do I get the location of the cursor? The text cursor.. not the mouse

    I need to get/set the location of the cursor within the textbox. But not the mouse cursor, but the text cursor, that one that blinks! :) I need to place him in specific places within the textbox, and I also need to know where it is... I made this Textbox that only accepts numbers by changing what text in the textbox with the texchanged event... but I need to keep the cursor on the same place... Well, thanks anyways! :) Hi, I have also faced the same problem and used the following solution. Assume Textbox name is txtbox: Get the Text box cursor position : Int32 Loc = txtbox .SelectionStart; Set the Text box cursor position: txtbox .SelectionStart = Loc; tx ...Show All

  • Visual Studio Team System Suggestion: Selectively deploy objects

    Hi, This is a feature request. I think it would be nice to be able to "switch off" an object from being included in the DBPro build. This way, you could include things in your project but that don't need to be deployed until a later date. I recognise tht this isn't as simple as just checking a boolean flag - there's the whole issue of checking dependancies and thus disabling those as well. Thoughts Comments -Jamie So last post for the weekend ... I would rather all files be visible but they have an indicater in the Schema View to incidicate whether they are included in the build or not. .... That flag should be set via Schema View. Right, that is a weakness at the moment, I would also prefer th ...Show All

  • Windows Forms String to int, Visual C# 2005

    Hey, How do you make the value of this: pictureBox1.Width = (maskedTextBox1.Text); pictureBox1.Height = (maskedTextBox2.Text); an integer becuase I get an error saying can not convert string to int...     Thanks :) Hi, It doesn't matter which line is highlighted when the stack is overflowed. It just happens to be this line of code. The problem is that your way of processing is wrong. The event CheckedChanged applies not only to the mouse select but also the programmatical set. Therefore when radioButton1 is selected, you set the radioButton2 to false. As the same time, the event CheckedChanged of radioButton2 is triggered, and it tries to set the radioButton2 to false. ... That's why you see they're ...Show All

  • Visual C# stop running

    There is a invisible form in my C# Windows project. I hide the form and application working in background. I want to stop running by using two or more shortcuts.Only I can stop application from Windows Task Manager. How can I solve this problem In order to do this you’ll need to make a call to RegisterHotKey() to specify to the system a key combination you want to be informed about. You can find a pretty nifty C# class to do that here. Be sure to call System.Windows.Forms.Application.Run() when you are ready to wait for the keystroke as it will start the messaging loop that will enable your application to be notified of the keystroke. Does this work for you ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. MDX1.1, MDX2.0, XNA confusion

    I wrote several examples now as some mini prototypes of things I want to use in a visualization. I wrote the first in MDX1.1 before I kind of realized that there is a MDX2.0 library, too, so I continued with that one. Although the differences between the libraries (except of some namespace and method name changes) are not obvious to me, there are some advantages while working with VS 2005 (e.g. the LoaderLock warning in debug mode is gone). Now I read something about XNA and that MDX2.0 will be merged into XNA and never be released alone.... so my confusion, what should I use The program should be finished approx. by the beginning of next year. I do not know much about XNA at all, but if I should stick with MDX2.0, do I have to use ...Show All

  • Software Development for Windows Vista How the event ExecuteCode is called.

    I have downloaded a sample from web. In this sample there is an event ExecuteCode but the problem is that it is not called. So I want to know how the evevt ExecuteCode is generated. 1°if it's a code only workflow (no xoml file), in the .designer.cs file, you'll find: this.codeActivity1.ExecuteCode += new System.EventHandler(this.codeActivity1_ExecuteCode); 2°if it's a Workflow with code separation, in the xoml file, you'll find : <CodeActivity x:Name="codeActivity1" ExecuteCode="codeActivity1_ExecuteCode" /> Hope this helps Serge ...Show All

  • Visual C++ operator overloading

    ok, so im trying to cout a string, but i havent suceeded, this is what im trying to do: #include "stdafx.h" #include <string.h> #include <string> #include<iostream> #include<iostream.h> using std::string; class Person { public: string m_name; int age; }; class Student : public Person { public: int m_grade; }; class Worker :public Person { public: int m_wage; }; int main() { Worker MyWorker; cout << MyWorker.m_name << "\n."; //error C2679: binary '<<' : no operator defined which takes a right-hand operand of type 'class std::basic_string<char,struct std::char_traits<char>,class std::allocator<char> >' (or there is no acceptable conversion) ...Show All

  • .NET Development return error message from Stored Procedure

    I am using this code in the stored procedure to return an error from SQL Server: IF EXISTS ( SELECT id_type , id_number FROM persons WHERE id_type = @id_type AND id_number = @id_number ) RETURN 1010 but I want to know if there is any way to return it as a message and display it on the windows form instead of returning a code, something like this: IF EXISTS ( SELECT id_type , id_number FROM persons WHERE id_type = @id_type AND id_number = @id_number ) RETURN 'This value already exists.' The C# General forum should be limited to questions about the C# language or language-specific features in the IDE. Moving the question to the .NET Framework Data Access and Storag ...Show All

  • Windows Live Developer Forums Localised Versions of VE

    In the online documentation of VE it mentions that it is available in 13 languages. How can you switch so that the maps are showing in another language This means the map place names and not any dashboard text. E.g London will appear as Londres if choosing a French locale etc etc.. (I've notice that google maps just use the local spelling) The current version of local.live.com has en-uk and en-ca versions. The team is continually updating the site and the control with more features, but as of this time, nothing has been announced regarding more localized versions. ...Show All

  • Visual Studio Express Editions how to control input from textbox?

    please help how can i control inputs from textbox so that user can only type letters and number no ascii and symbol in the textbox keypress event, check to see that the input (keychar) is a letter or number and if it is NOT a letter or digit, "handle" it, so it does not to Windows for it to handle the input. Example: select the textbox properties in designer view click on the Events icon (lightning symbol) double click the "KeyPress" event to create the event handler. Then you will be taken to code view. Type this in for that event:   if (!Char.IsLetterOrDigit(e.KeyChar)) {    e.Handled = true; }   does this help ...Show All

  • Visual Studio Express Editions VB File.Encrypt method

    I am trying to encrypt a text file in VB 2005 Express and found a couple of pieces of code that demonstrate it. I have used the following Imports: Imports System Imports System.IO Imports System.Security.AccessControl I am calling the method with: File.Encrypt(FileName) where Filename has been DIMmed with "D:\EncTest.txt" I get an IO exception stating that what I am trying to do is not supported. Going through the help system, I was told that this means that my file system is not NTFS. Looking at the properties of my D: drive, it says it is NTFS. The text file is definitely there, named correctly and not in use by any other application. Is this something wrong with the way in which the path is express ...Show All

©2008 Software Development Network