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

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

sqlhiker

Member List

cablehead
Rabtok
korayko
PK2000
MikeGB621234
suranga_d
-Sam-
Dreedle
laboremus
svid
arogan
.net sukbir
IgorP
Chris Honcoop
timay
hazz
Chris Howarth
Shahab03
bkohler
dtrickett
Only Title

sqlhiker's Q&A profile

  • Visual FoxPro How to implement Mouse leave for a form.

    I have a very small form that opens up to display some info. I'd like the form to close when the mouse leaves the form. I noticed there is no mouseleave or mouseenter for forms. Any other method to do this Thx http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=905860&SiteID=1&mode=1 Perhaps note my own elementary use of "define window ... name" (command) here (today). ... with addobject() of an image object to the resultant form-container. ... as a workaround bridge to implementing swift form release during mousemove or mouseleave events ... upon a strategic *wait-window-nowait-like* form object. ...Show All

  • Visual Studio Team System Adding to potential test results for Manual Test

    Hi there, Is it possible to add to the values for possible test results for Manual Tests Currently, there only seems to be 'Pass' or 'Fail', but I would be interested in adding another state for situations where test cases have not actually failed but have been blocked from execution by a previous failure or have exposed an issue which was not being explicitly tested. Can I do this Cheers. Clare Unfortunately we don't have plans to enable extensibility for manual test results for next version of VS, but we can consider that for v+2. Thank you, Michael ...Show All

  • Visual Studio Express Editions changing current directory to bin

    Hello all, I'm currently working on a project that requires me to switch the current directory of the project to the project's bin. I've looked in several places, and can't figure out how to do it. Does anyone have any ideas Thanks so much for any input... sorry for this stupid question -Robert Robert3234 wrote: Oh, no, sorry for being unclear... basically my predicament is that I've got an openfile dialog box that... when a user opens a file in a different directory, the path that the program saves files to (or whatnot) changes from the bin to the directory that was selected by the user via the openfiledialog. I'm wondering how I change it back to the bin after it gets changed from the openfiledialog. Again, sorry for being ...Show All

  • Visual Studio Team System Visual studio Team Server Version control backed by sql 2000?

    I was wondering if sql 2000 would work for the new version control piece of the team server If not will the developer edition of sql 2005 work Hi, No, sql 2000 will not work. The developer version is not supported because of license issues. Only Sql Server 2005 is supported and a license to use Standard edition is included with TFS. Thanks, Brad ...Show All

  • SQL Server How do I add user defined functions to the database through SQLDMO

    Using SQLDMO.DLL (version 2000.80.2039.0) ie. SQL 2000 SP4, stored procedures and views can be added into database ok, but not user defined functions which aren't exposed for adding. ' we use similiar methods to the one below for views and SPs Public Sub InstallFunctionFile(ByVal vstrFileName As String, ByVal vstrFunctionName As String, ByVal vblnSecurity As Boolean) Const strROUTINE As String = m_strCLASS & ".InstallFunctionFile" On Error GoTo ErrHdl Dim objFSO As FileSystemObject Dim objDatabase2 As Database2 Dim objNewFunction As UserDefinedFunction Dim blnFound As Boolean ' Get the File System Object to manipulate files Set objFSO = files_GetFSO() ' Initialise the found flag blnFound = True ...Show All

  • Visual Studio Team System Error TSD158 when Building from MSBuild

    My build server does not have SQL Server 2005 installed on it, just client tools. I execute the following at the command line: msbuild /p:TargetDatabase=MyDatabase;ConnectionString="Data Source=SQLSERVERMACHINENAME;Integrated Security=True;Pooling=False" I get the following response: Build started 12/19/2006 3:44:00 PM. __________________________________________________ Project "C:\MyDatabase\MyDatabase.dbproj" (default targets): Target SqlBuild: Building deployment script for MyDatabase: EnableFullTextSearch, BlockIncrementalDeploymentIfDataLoss MSBUILD : Build error TSD158: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be cause ...Show All

  • Visual Studio 2008 (Pre-release) MediaElement and Media Player

    Does MediaElement work with Media Player 11 (Beta) If not, does anyone know how to install Media Player 10 after having 11 installed I uninstalled 11 but get an error message, when trying to install 10, that there is a newer version installed! Thanks John MediaElement work with Media Player 10 and up. Why do you ask this Your mediaElement is not working with Media Player 11 Bye ...Show All

  • Visual C# signature based scanning

    is anyone knows about the above said topic. please help help us in this regard A "spyware signature" is a short string of bytes that is unique to a particular spyware app. It's nothing "official", and is determined by an anti-spyware author who analyizes the hex dump of the spyware app. Using the same procedure, a signature could be found for any executable, and a single executable could provide several different signatures depending on whos looking for them, and how they go about it. (Since Anti-virus/anti-spyware authors talk to each other and trade signatures, you should allways be a bit suspisous about the number of virsuses/spyware a utility detects --- odds are, they are looking for several of them twice ...Show All

  • .NET Development Why the change to Managed code and why not provide an Unmanaged (Native) option for VB.Net?

    While I know any program can be broken with enough effort. It seems to me that Microsoft's change to the .Net format has just made life much easier for code breakers while making it harder for Individuals writing code to sell small programs to protect their code. I used Obfucation of code with code I have written since the early versions of basic. But now it takes nothing to decompile the code and then work on figuring it out. While programs compiled in Native code it took much more to decompile and break the code where small specialized programs usually were not worth the effort to break. Why doesn't Microsoft continue to provide native code compilation for VB.Net programs to allow small business / Self Programers the same level of code ...Show All

  • .NET Development Confused

    What does ASP.net does and is it applicable to publishing app (developed using vb.net) to website You can find an introduction to ASP.NET on MSDN ( http://msdn2.microsoft.com/en-us/asp.net/aa336567.aspx ) and some info on publishing here http://msdn2.microsoft.com/en-us/vstudio/aa718544.aspx . Hope this helps. ...Show All

  • Windows Forms Creating Cursor from Bitmap Causes Memory Leak and Eventual System.Runtime.InteropServices.ExternalException

    I am attempting to create and show a cursor from a Bitmap when a drag occurs.  I create and show a new Cursor from a Bitmap in the GiveFeedback event of a dragable panel and everything seems to work fine.  The cursor dispays when I drag and disappears when I MouseUp.  The Bitmap itself is created from the background image of the panel I am trying to drag. Yet, when I look at the Performance tab of the Task Manager I can see my PF usage increase about 1 meg every 2 drags and it never releases the used memory.  Worse still after about 100+ drags I eventually get a System.Runtime.InteropServices.ExternalException at the point where the cursor is created and set. I have created a sample project that shows a bare- ...Show All

  • Visual C# OnShutdown() method is NOT being called ?!

    Hi all experts, I am using VS Pro 2005 and Win XP Pro. I have developed a C++ Window Service to detect the shutdown event and perform some tasks before desktop shutdown. I have followed the MSDN instruction and assigned CanShutdown to TRUE. However, I found that OnShutdown() method is not being called. Could anyone please help me Many Thanks The following sample codes are attached for your reference: =============================== virtual void ABCWS::ABCWSWinService::OnShutdown() override { ServiceStatusLog->WriteEntry("ABC Shutdown"); } void InitializeComponent(void) { .. this->CanShutdown = true; .. } =============================== ...Show All

  • Smart Device Development Speech

    How i can use speech sdk in compact framework please help me for Microsoft or other Companies SDK's Best Regard That was answered before, so please search for "speech" in device related forums. Search button is on the top of your screen. ...Show All

  • .NET Development String.Compare with Unicode characters

    I am trying to sort a list of Greek Unicode strings, but I can't get the .NET framework to correctly sort or compare the accented vowels. For example String.Compare(" "," ") // or String.Compare("\u1f00","\u1f30"); always returns 0 and String.Compare(" ","α") always returns -1 regardless of the Culture information (current, invariant, Greek) I use in the other arguments of the Compare function. Is there a way to make the first comparison return a negative number Comparing *any* character from the Greek Extended block \u1f00-\u1fff returns 0, regardless of culture or case-sensitivity. Sound like a bug-by-omission, you might want to record this at ...Show All

  • SQL Server Consuming Web Services from the SQL CLR

    Hi there, I've been following Vineets and David's procedures to consume web services using SQL CLR to the t. I created my web service in C#.NET 2005, and generated my proxy using this command: wsdl /par:oldwsdlconfig.xml /o:ExactMobileService.cs /n: Project360.SmsService http://www.exactmobile.co.za/interactive/interactivewebservice.asmx I added both files to the project, set Generate Serialization Assembly to on and compiled it. I then generated a strong name key for the assembly and signed my assembly with that key. Inside my post-build event I added the following script: "E:\Development\Microsoft Visual Studio 8\SDK\v2.0\Bin\sgen.exe" /force /compiler:/keyfile:SmsServiceKey.snk / ...Show All

©2008 Software Development Network