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

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

HOTBOT

Member List

VKB
guy87
Maxwellvz
AnuCFTC
Christopher Smith
Traveler2
Prabu.
PMNJ
InfoDOG
jerome c
jmunro
Arjun Banker
Vlad_shep
Fratuz610
Hamaclapa
AmitS
Exitboy
Amitoj
whoisfritz
Count Infinity
Only Title

HOTBOT's Q&A profile

  • SQL Server How do you transfer a database to SQL Server 05?

    On the web site for MS SQL Server 05 Express the description at the top of the page says, "Transfer any database created in SQL Express to other editions of SQL Server 2005." http://msdn.microsoft.com/vstudio/express/sql/powerful/ How do you transfer a database from SQL Express to SQL Server 2005 I am creating a data-driven web site using Visual Web Developer 05 Express, SQL Server 05 Express, and MS SQL Server Management Studio Express. My host uses SQL Server 2005, ASP.net 2.0, and FrontPage extensions. Thanks for your help. Very simple - just detach the database from Express and copy the database fi ...Show All

  • Windows Forms ArrayEditor and Panel Control

    Hello, i built a derived control with the base class panel. in the derived class i have the following code: [EditorAttribute(typeof(System.ComponentModel.Design.ArrayEditor), typeof(System.Drawing.Design.UITypeEditor))]  public TextBox[] MyTextBox { get { return _myTextBox; } set { _myTextBox = value; } } private TextBox[] _myTextBox; then i place a new windows forms project in the solution and add the above control to the  ...Show All

  • Visual C++ Set VC++ Directories in Options dialog (Visual C++ Express)

    Details :  The VC++ Directories page on the Options dialog does not have a list box for viewing and modifying the directories used during a build. Consequently, it is not possible to modify the build directories using the IDE UI. Workaround : C++ Directories can be added, removed or changed by modifying the VCProjectEngine.dll.express.config file located in the .\vc\vcpackages subdirectory of the Visual C++ Express Edition install location in a text editor, saving the changes and restarting the Visual C++ Express Edition. Please make sure that you also delete the file "vccomponents.dat" located in the "%USERPROFILE%\Local Settings\Ap ...Show All

  • Windows Forms DataGridView Selected

    Hi I'm performing a internal search in the grid. After the search i'm selecting the first found row by using the “Selected” property. this .dataGridView.Rows[foundRowIndex].Selected = true ; I can see the row getting highlighted. But the book mark (The black color triangle object that you see in the 0 column of the grid, when you do a manual selection to a row) is not set properly. Due to that the user will not see the selected row if the row is not in the visible range of rows. Cheers Krishan Check out: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=212182&SiteID=1 Hope ...Show All

  • Visual C++ Wrapper C++/cli class

    Hi, I want to wrapper a my c++ class using Interop. This class has a method WritePort with defined as  : UINT WritePort (UINT BytesToWrite, UINT* pBytesWritten, BYTE* pWriteBuff, UINT WriteTimeout); On my C++/Cli Class I've defined an wrapper method defines as : int WrapperClass::Class1::WriteSerial( int BytesToWrite, int ^ pBytesWritten, String^ WriteBuff, int WriteTimeout); The code for this wrapper method is : int WrapperClass::Class1::WriteSerial( int BytesToWrite, int ^ pBytesWritten, String^ WriteBuff, int WriteTimeout) { UINT retval; UINT ByteWritten; BYTE *pWriteBuff; unsigned char * uWrit ...Show All

  • Smart Device Development Services.exe or another method

    Hi there So basically Id like to hear your idears on the best way to crack down my problem. My problem is that I need to create a service that will run allways on a Windows CE device. This program will run at a set interval given in some external data source either via file or registry. This service will then have to do some checks as to connectivity to a remote file share and stuff like that and if all checks succeede it will launch a CF2.0 executable which will then do more stuff on the fileshare e.g. look for pending auto installations and report back to the server how installation went and propubly also ...Show All

  • Windows Live Developer Forums ReplaceIM and RecieveIM - How to use???

    Say the user types 'hello' and presses send, is their a way to replace 'hello' with 'hello, how are you' before it is sent out. So the modified message is sent. Also, can this be done on recieving messages as well, so the recieved message is modified before it is displayed Because their is the ' ReplaceIM' and 'RecieveIM' properties and i would like to know how to use these. Thanks -Balupton ' ReplaceIM' and 'RecieveIM' tag to True in messanger xml file function Channel_OnRemoteAppClosed() { msChannel.SendIM( fetchRemoteNickname() + " Has Left the Conversasion "); } function fetchRemot ...Show All

  • Visual Studio Domain Model Definition Schema

    Hi, I found a XML Schema used for validating the Designer Definition (*.dsldd) in my VS install (DesignerDefinition.xsd), but I couldn't find any for the Domain Model Definition (*.dsldm). Here comes the questions : Is there such a schema for the Domain Model Definition If so, is it available Will there be an equivalent for the united format (*.dsl) to come with the first final release of the DSL Tools Regards, Kevin POCHAT. Hi Kevin, You're right that there is no XSD for the current dsldm. But yes, there will be an XSD for the forthcoming combined schema. Like the DM file, there will be a speci ...Show All

  • Windows Forms Dynamic menu items

    I have been through every forum in google looking for an answer to this problem.  I would be forever greatful to anyone that could give me a little code on how to do the following: Can someone please give my an explaination of how to pass a argument to a function after clicking a dynamically created menu item  Here's what I mean. I need  ...Show All

  • Microsoft ISV Community Center Forums Using VBA to send an MSN instant message

    Hi I have written some VBA in Access 2003 to bring up an MSN instant message window and send a message to that contact. The only problem is, I seem to be able to do everything except actually send the message! I think this feature may have been removed from the API. Anyway, here's the code: - Private Sub SendIM()      Dim header As String Dim objmsgr As MessengerAPI.Messenger Dim contact As MessengerAPI.IMessengerContact Set objmsgr = New MessengerAPI.Messenger Set contact = objmsgr.GetContact(" anyone@hotmail.com ", objmsgr.MyServiceId) objmsgr.InstantMessage contact [this is where I'm stuck] End Sub Apparently S ...Show All

  • Visual C++ build errors in vc++

    Hi,             I am new to vc++. I have one vc++ source code. I am running this on vs2005. for me it is giving the following errors. I saved the source file in the following path. "c:\programfiles". The errors are 1)Error 1 error A2022: instruction operands must be the same size   the lines where i am getting the error is: TIGERROUNDSSE2 5 TIGERKEYSCHEDULESSE2 TIGERROUNDSSE2 7 TIGERKEYSCHEDULESSE2 TIGERROUNDSSE2 9   The lines highlighted with red color are causing the error. 2)Error 13 error PRJ0019: A tool returned an e ...Show All

  • Visual Studio RTM matched VS 2005 SDK availability?

    Somebody had to ask this question I guess. When can we expect the final SDK to be made available for download Thanks. ...Show All

  • Visual C++ How could i pass a structure as CmdLine parameter while using CreateProcess?

    Hi all,        While i use CreateProcess(   LPCWSTR pszImageName,   LPCWSTR pszCmdLine,   LPSECURITY_ATTRIBUTES psaProcess,   LPSECURITY_ATTRIBUTES psaThread,   BOOL fInheritHandles,   DWORD fdwCreate,   LPVOID pvEnvironment,   LPWSTR pszCurDir,   LPSTARTUPINFOW psiStartInfo,   LPPROCESS_INFORMATION pProcInfo ); I want to pass a structure as second parameter(pszCmdLine) in this function. But somehow child process can't correctly get the structure! Should i do anything like "cast" or.. before i pass it thanks for any advice! Wh ...Show All

  • Visual Studio Express Editions How can I Call the GetVolumeInformation API ?

    Hello, I try to call the GetVolumeInformation API but the function returns zero and the GetLastError function returns the 1450 error code (Insufficient system resources exist to complete the requested service). What does it mean I think I can't use another solution because the GetVolumeInformation API is the only one which returns the serial number of a volume. My code is the following : Imports System.Runtime.InteropServices Imports System.Text Public Class Win32API Public Declare Function GetVolumeInformation Lib "kernel32" _ Alias "GetVolumeInformationA" _ ( ...Show All

  • Visual Studio Queries and Feedback on VSS 2005

    Hi, I installed Microsoft Visual Studio 2005 beta 2 release and in the process of evaluation. Basic focus of my exercise is to compare VSS 6.0d with VSS 2005. My queries and feedback - 1) Is it possible to use stable platform say SQL Server instead of file system My understanding is No, but want to know the reasons and in future is it possible 2) I have a VSS 6.0d Data size of 6 GB, which earlier has problems, I run analyze at least 50 times to fix the problems (later I found problem was some of the long, similar filenames, were renamed). The analyze result was "Potentially serious errors or inconsistencies were found." I was very eager ...Show All

©2008 Software Development Network