Creighton Kagey's Q&A profile
Visual Studio Express Editions DragDrop Bug?
The following error will not show up while debugging or running the program in the IDE. (No control named 'Whoa') The ListBox1.DragDrop event will simply exit the sub and everything keeps going with no error message. The button.click event with the same code returns an error. (Also tested with a different type error, same behavior.) Public Class Form1 Private Sub listbox1_DragEnter( ByVal sender As Object , _ ByVal e As System.Windows.Forms.DragEventArgs) Handles ListBox1.DragEnter ' if the dragged stuff is files, enable the drop operation on this control If e.Data.GetDataPresent(DataFormats.FileDrop) Then e.Effect = DragDropEffects.Copy End If End Sub ...Show All
Visual FoxPro Organizing project files
I'm trying to clean up unused files. Over the years my.pjt has piled up about 400/800 files of all sorts (.prg, .scx, .vcx, .mnx, .bak, .ini, .xml, .vbr, .err, .dbf, .fpt., .txt, etc.): located in 10 directories ... which is just cluttering up those directories. Is there any suggestable (lazy) way to re-organize and/or clean up (discard old unused files) or copy out only the my.pjt vital files (other than excluded report files, help files, and picture files). Thanks in advance, Thanks again, David, for your thoughtful feedback, That'll seem to help keep My.Pjt clean before dissecting out obsolete files; I'll have to test it though for 'included' vs. 'excluded' files and such. Thanks again for your invaluable feedback. ...Show All
Software Development for Windows Vista FYI: Google CodeSearch for WF Samples
Checkout: 1. http://www.google.com/codesearch q=lang:C%23+StateMachineWorkflowActivity 2. http://www.google.com/codesearch q=lang:C%23+workflow.runtime ...Show All
SQL Server SQL & Licencing
I know this is supposed to be a help forum, but the company I work for are looking to produce a DB using Microsoft SQL server, the DB will be accessed by approx 20 / 25 people and we will need one developer licence...and will be held on a dedicated server... Can some one please help me work out what version of the sortware we need to purchase and what we require in the way of licences.... Many Thanks Great thanks for that advice.... we are going to go ahead with developing with SQL server... would we be able to use a product such as Visual Studio 2005 to create a web front end for the database ...Show All
Game Technologies: DirectX, XNA, XACT, etc. generate mipmaps
If i generate mipmaps my self, how is dx expecting them like this: |-------------|------|--| |-------------|------|--| |-------------|------| |-------------|------| |-------------| |-------------| so as a single array like: |-------------|------|--||-------------|------|--||-------------|------||-------------|------||-------------||-------------| Do you talk about the data organization to create an immutable resource ...Show All
Audio and Video Development iHD Script object Model in spec?
Is the iHD Script Model detailed in the spec I cannot find it. Specifically I am trying to get information on the method signatures. " (P.S. I think you'll soon be the top "Answerer" in this forum :-) )" LOL! ...Show All
Visual Studio Team System Is there a way to automate getting latest and doing a team build in Team Foundation?
I essentially need to do a get latest, do a team build, and publish to a different server. Is there a way to automate this process nightly in TFS Sorry I forgot to add that...I had tried that as well but when I use this: TFSBuild start http://tfsserver "Team Foundation Source Control" "Nightly Team Build" /m:devbox-10 /d:c:\tfsbuilds ...the command prompt opens up and looks like it is trying to initialize a build but then closes and doesn't seem to do anything.... ...Show All
Commerce Server Who is using Commerce Server 2007?
I am looking for companies using Commerce Server 2007 One of my clients, wants to move to Commerce Server 2007 but I am not sure how successful it is. Any help is appreciated! -- Salim Hemdani Salim, My company was the first to go live on Commerce Server 2007 (under Microsoft's Technology Access Program) and we've been using it for over a year now. Please feel free to ping me or call me and I would be happy to speak with your client about our experiences. Jeff Lynch E-Commerce Manager Gulf Coast Seal, Ltd. 713-910-7700 jeff.lynch@[nospam]gulfcoastseal.com MVP Windows Server System - Commerce Server http://codebetter.com/blogs/jeff.lynch ...Show All
SQL Server Problem with SQLBindParameter
I am developing an application, using ODBC, that needs to call a stored procedure in an SQL Server DBMS that has a mix of INPUT and INPUT_OUTPUT parameters. I have the code so that there aren't any errors returned from the function calls but I do not see the bound data change after the SQLExecute() function. Code snippets follow. CHAR szStatement[256]; CHAR szBuf[256]; SQLINTEGER irval = 0, filenum = 808042, DoNotCall = 0; SQLVARCHAR vcPhoneNumber[PHONE_LEN]; SQLVARCHAR vcInstanceCode[INSTANCE_LEN] = {0x20}; SQLVARCHAR vcReason[REASON_LEN] = {0x20}; SQLINTEGER rvalLen = 0, fileLen = 0, noCallLen = 10, phoneLen = SQL_NTS, instanceLen = SQL_NTS, reasonLen = SQL_NTS; lstrcpy( szStatement, "exec = some_proc , , , , " ...Show All
Smart Device Development is CameraCaptureDialog only for wm5?
how about mobile 2003 I want to make my application available for capture picture from the camera Yes, WM 5.0 only. On pre WM 5.0 devices you'd need to use camera SDK from particular camera manufacturer. If it’s not available then it is not possible to use that camera. Please contact camera manufacturer for info. ...Show All
Visual Studio 2008 (Pre-release) Compose a BitmapImage from several BitmapImages
Hello Im trying to compose a big BitmapImage (or any other BitmapSources) from a lot of MemoryStreams. For now, I just create an BitmapImage from each MemoryStream and draw them one by one on the DrawingContext like this; drawingContext.DrawImage(bitmapImage, destinationRect) It would speed up my app if I instead could draw the different streams on a larger BitmapImage, as you can see I have where on the larger image they should be drawn, and then just draw it once on the DrawingContext. Is this possible somehow /Daniel Ok, I've fixed it. I did like this if someone is interested: I created a RenderTargetBitmap and a DrawingVisual. I used the DrawingContext from the DrawingVisual, DrawingContext dc = dra ...Show All
SQL Server Help with SBE Business Contact Manager
I'm not sure if this is the correct place but I'm stuck! I installed MS SBE 2003 w/ business contact manager and for about a week it worked well. Then funny things started happening. I got to the point where the business task menu pull down menu (from within Outlook 2003) was not even showing up! The contact manager that is under the same window as the regular contacts would only display the name of the contact but nothing else stating that the Business Contact Manager was unable to Initialize this Form. Ouch! That sucked. So, I backed up everything I could think of (exported all bits and pieces of my Outlook to individual PST files and copied those to my external drive. Then I attempted to uninstall MSO SBE which worked sort of. It ...Show All
SQL Server Simulating triggers on SQL Server Mobile
Hi, Can anybody let me know if there are ways to programatically track changes made to a SQL SERVER CE table I am writing a db monitoring tool on SQL server CE which should track any changes made to the table.(Insert update and delete) We could have done this using triggers on Sql Server 2005. Since triggers are not supported on SQL Server CE, are there any alternate ways to achieve this functionality Regards, Ananth You can track changes to a database by using a few techniques. I have used a few on my own products and they involve adding a uniquly indexed GUID column to the tracked tables and adding a tombstone table to the database. Deletions are detected through the tombstone table that ...Show All
Windows Live Developer Forums Get cursor:crosshair to work over map?
I've tried every VE CSS class and I can't get cursor to be anything but the pointer. Anyone Did you try this one document.getElementById("myMap").childNodes[0].style.cursor = "crosshair"; John. ...Show All
.NET Development Fatal Flaw in the Large Object Heap?
Hi All, After playing with the GC I find the following interesting. The problem domain I typically work in requires the allocation of very large arrays for image processing. We have discovered some issues when our processes are long running. We run out of memory and can not reclaim it. Our only recouse is to restart our processes. In an effort to discover why I uncovered the following: The LOH (Large Object Heap) is never compacted. I think this is a fatal flaw in the GC. I understand MS stated reason for this, but shouldn't there be someway to compact the LOH if necessary, at least a method call that forces the issue Does anyone know of anything that can be done Any workaround is better than killing the process... Here is a demo ...Show All
