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

Software Development Network >> Steven He's Q&A profile

Steven He

Member List

Parminder
Parthenan
Paul P Clement IV
ZZ Top
Charles Wildner
Stenaught
devdave
.Net.Not
SALX
Ashok Debnath
Brian R. Bondy
FXM
Gu Xu
Uncle John
Saruk
Frank Kalis
daddyoh
Naras
JohannesL
Jared Parsons MSFT
Only Title

Steven He's Q&A profile

  • Visual Studio Express Editions Error C2248

    I searched for other cases of this error, and could not find anything similar to this. The online help hinted at the cause but the solution did not work. I was unable to paste into this form (Win 2000, IE 6 SP1), so I have pasted some code samples at http://spaces.msn.com/members/robertjohnson/ If anyone can be bothered to read through this turgid example I'd like an opinion on how to get it to compile. It worked on VC 7 compiler, and it's probably me not understanding the error message. Thanks in advance. Well I'm glad the team fixed the bug in 7.1. So when's 8.1 coming out   I'll give it another go! ...Show All

  • Visual FoxPro Call application from program and trace Menus and Programs within

    Hello, Can anybody help me please Am trying to call an application from another, but having a problem tracing the called program's Menus and Programs. At the beginning it started by having the Encrypted checkbox automatically selected after building project and an application (the application I will be calling) while I de-check it myself. I tried creating the project from the beginning and somehow this stopped, and I could trace again, but only Screens. Can anybody help please Regards, bounty Ok, I'll try to make it clear.. I have a main program A, and a smaller program B. I build B as an ap ...Show All

  • Software Development for Windows Vista Administrator security issues

    Maybe it's me...  then there are only 7 posts before me on here, so now I am worried there will not be an answer.... Trying to install a simple antivirus program before I really start to test.  I am the administrator account, but I  do not have sufficient rights to write....hence install fails. Anyone else seen this...   Did they enable the upgrade route for install yet or is it only a full install still... ...Show All

  • Smart Device Development How to soft reset device from eVC++ MFC application

    Hi all.. I have an eVC++ MFC application(.exe) targeted for a winCE 5.0 x86 device In want to make my application soft reset my device on the click of a ok button. Can somebody tell me wht code i have to add in the OnOK() part of my app. Maybe these will help. Found them here What is the proper way to perform a device reset The method you use depends on whether you are running on a Windows Mobile 5.0–based device or a device running a previous version of Windows Mobile software. Windows Mobile 5.0 has standardized the API. Regardless of which device you are running on, never use KernelIoControl and IOCTL_H ...Show All

  • Visual Studio Express Editions Build a Web Site Now edition

    Hi I'm sure that you may have been asked this or perhaps you haven't, the published book Build a Web Ste Now put out by Microsoft, is that program free as well after 2006 The program, I purchased the book, and I want to inquire about the program that came with the book. As always thank you in advance. DKB ...Show All

  • Architecture Windows Network Multi-Language Compatibility

    I would like to deploy English Windows Server 2003 to host an email server, file server, database server, web server, terminal server, application server, all using ENGLISH software, and was wondering if all those services would be compatible with CHINESE Windows 98 / XP client computers. Are there any known issues with networking English / Non-English Windows computers Any input would be greatly appreciated.  Thanks!!! Thanks for your response, Simon.  That's just what i was hoping for. ...Show All

  • SQL Server Oracle replication failed

    Some replication jobs failed and it shows 'data conversion failed' error MSSQL_REPL20037.  Any idea on it   I can't find the error in online book.  THanks in advance! Hi, This may or may not help you but I came accross this "data conversion" error when i was trying to reinitialize a subscriber when we migrated the publisher from 2000 to 2005. Our distributor also migrated to a SQL 2005 instance and it was a push subscription. The issue in this instance was that the underlying data type length for a UDF created at the subscriber originally by SQL 2000 was smaller th ...Show All

  • .NET Development SQL Server test code returning an error.

    Hi, I am trying some example code in Visual Studio 2005 (C#) to create a SQL Server 2005 Express Edition database, but the code is falling over in the try/catch statements of the following code: private voidMySqlTest() { String str; SqlConnection myConn = new SqlConnection("Server=localhost;Integrated security=SSPI;database=master"); str = "CREATE DATABASE MyDatabase ON PRIMARY " + "(NAME = MyDatabase_Data, "+ "FILENAME = 'C:\\MyDatabaseData.mdf', " + "SIZE = 2MB, MAXSIZE = 10MB, FILEGROWTH = 10%) " + "LOG ON (NAME = MyDatabase_Log, " "FILENAME = 'C:\\MyDataba ...Show All

  • Windows Forms Refresh dataSource of DataGrid in Thread (WInForms)

    Hi In my application I need to refresh DataGrid every 10 sec. When I try to refresh data source in DG in thread method I got this message: "A first chance exception of type 'System.ArgumentException' occurred in system.windows.forms.dll" Does anybody could help me, or explain what should I do. Thanks Tom Ok...lets think about what you are doing in an ASP.NET application for a second. You are going to create objects in memory, manipulate them, and then they are going to be rendered into html. That html will be sent to the user's browser over the internet. Now, if you put your thread to sleep for 10 seconds in a ...Show All

  • Windows Forms .NET falls over checking component licenses if not an administrator

    Hi Does anybody know about issues of .NET framework component license checking being prevented from working properly under certain client lockdown environments I have tried to use a licensed component (AddFlow, www.lasalle.com) using code similar to: AddFlow.LicenseKey = "A010..."; AddFlow addflow = new AddFlow(); This works fine when the user has local administrator rights.  But when& ...Show All

  • Software Development for Windows Vista Problem Purging mailbox from within Exchange 2003

    We are having an issue trying to purge a few left over mailboxes from a recovery effort. What we have noticed is as follows: -the account that the mailbox was tied to no longer exsists. -when you try to either reconnect or purge the mailbox I get the following error.    "The operation cannot be performed because this mailbox was already reconnected to an existing user." ID no. c1034ad6" We need a way to either reconnect this mailbox to a new account or purge it off the system.  I can provide more information if needed... Thanks, Sean To resolve this same problem I: a. Ran 'Exchange Tasks' on the known user account f ...Show All

  • .NET Development Unmanaged host App catching events from managed

    I want to host a managed assembly (decrypted from resources) on a C++ application. The first step is done and works. but I have a problem, if a missing assembly is not found when I execute the dynamic loaded assembly the application don't start and no "_com_error" is thrown. I saw a bunch of methods exposed by the interface _AppDomain: add_UnhandledException remove_UnhandledException ... add_AssemblyResolve remove_AssemblyResolve ... How to handle those events from the C++ using COM interop to access .NET TIA, ramon Ramon,   could you provide us with a bit more detail What version of .Net are ...Show All

  • Windows Forms Problem deploying .NET application

    Hi, Can anyone help me by suggesting a solution, I am creating a small application in VB.NET, and the size of that application is approximately 5.00 mb, Now to make it working I have to deploy it with the DOT.NET framework and the MDAC2.7, which is making this application (the setup program) upto 30.00 mb in size, This is very disappointing for me ...Show All

  • Windows Forms comboBox Issue

    I have a comboBox that is populated from a stored procedure from and SQL Server Database. This stored procedure retrieves all Postcodes and it's Suburb and State from the Postcode Table. Unfortunately, there is 8000 records that this Stored Procedure returns and it populates the comboBox with the 8000 records. The problem I have is, it slows down the application as the comboBox is getting populated with 8000 records. Is there a way of loading the form and after the form has loaded to run the procedure GetSuburbs(); that retrieves the 8000 records That way atleast the form has loaded and the user doesn't have to wait 3 seconds for the form to ...Show All

  • Windows Forms Windows Messages

    Hi all, I want to send Custome messages from my .NET application to other windows application.I'm trying to use PostMessage ,but the other windows applications doesnt recognise the message i sent.The PostMessage(broadcast) function returns a negative value.This is how i defined the function.. [DllImport("user32.dll",EntryPoint="PostMessage")] private static extern long PostMessageA(long hwnd,long wMsg,long wParam,long lParam); Please help.. Thanks, Suresh. Hi Suresh, Try using SendMessage. The following link illustrates it with a sample: http://ryanfarley.com/blog/archive/2004/05/10/605.aspx You can d ...Show All

©2008 Software Development Network