Neo_xx's Q&A profile
Windows Forms Making a scrollable panel scroll with mousewheel just by hovering mouse
Hi, I have a particular problem with a possible solution and I am interested in hearing peoples opinions if it is the right way to go about it (or not ) Some applications I have come across, such as Firefox, will allow the user to scroll the document window just by hovering the mouse over the display area and using the mouse wheel. You don't have to focus / select the display area first. With Firefox, the address bar can have the foc ...Show All
Visual C++ Microsoft Visual C++ Runtime Library error question
I recieve this error when I launch Internet Explorer - version 6.0 OS Windows XP Home edition 2002 Service Pack 2. Error is as follows: Microsoft Visual C++ Runtime Library Runtime Error! Program C:\Program Files\Internet explorer\iexplore.exe This application has requested the Runtime to terminate it in an unusual way. Please contact the application's support team for more information. I am not certain where to post this questi ...Show All
SQL Server Remove sources from a transaction
Hello, I am attempting to run a (distributed) transaction in one of my data-flows. The data-flow loads data from a non-standard data source using a proprietary OLE DB Provider into SQL Server. When I run this I get these errors: The SSIS Runtime has failed to enlist the OLE DB connection in a distributed transaction with error 0x8004D008 "The requested isolation level is not valid or supported.". An OLE DB error has occurred. Error c ...Show All
Visual Studio Can parm values be hidden from URL using HTTP Post?
It is mentioned in "MS SQL Server 20005 Reporting Services" (good book by the way) that you can get around URL access limitations by employing the HTTP Post method. I have employed the HTTP Post example from the book and parameter values are still exposed in the URL. Am I missing something I have searched the internet trying to get a definitive answer to this issue and came across this blog ( http://blogs.msdn.com/tudortr/ ) entr ...Show All
Windows Forms CurrencyManager & EndCurrentEdit & Childrecords
Hi, I have created a master detail situation, where I created a CurrencyManager for the Master-table (cmMaster) and another currencyManager (cmChild) for the child-record. The databinding of my controls is correct, because when I'm navigating in my records, all controls contains the correct values. cmMaster= CType (BindingContext(dsContacts, "tblContacts" ), CurrencyManager) cmChild = CType (BindingContext(dsContacts, "tblConta ...Show All
.NET Development Embedding resources in a static assembly (Reflection.Emit?)
I've been looking around a bit on the web now for information about how to embed resources into .Net assemblies, and everywhere, everything I find is about Reflection.Emit and about dynamic assemblies. I want to make an application which creates as it's output another application. This output application should always contain the same code, but different resources - so it's conceptually the same as a self-extracting zip archive. In this, ...Show All
Visual Studio Need dependency analysis output mode /v:depends
More than once I have found that I don't have the right set of "Outputs" for a Target which causes the Target to execute when it doesn't need to. As far as I can tell there isn't a good way to diagnose/debug this issue, at least not using the /verbosity output. Here is what I would like to see. Given this MSBuild project file: <Project DefaultTargets="Foo" xmlns=" http://schemas.microsoft.com/developer/msbuild/2003 "&g ...Show All
SQL Server populate variable from ExecuteSQL: what columnname for select count(*)?
Hi SSIS community, I want to populate a variable with the result of the query of an ExecuteSQLTask: 'Select count(*) from Sometable' . To map a single row result set to a variable I must identify a column by its name. What name must I use in my case Or must I do this in a different way. Thanks in advance, Henk Can't you put an alias on the query: 'Select count(*) as recordcount from Sometable' -Jamie ...Show All
Visual C# panel background image in particular location
Hallo guys i need to set my background image in panel in a particular location but i ididnt found any properties to set the background image in particular location,in the visual disgner(Visual c#) there is a option to set the background image using BackGroundImageLayout with options center,none,Stretch,Zoom. but no way to set the background image in a particular position like right-bottom of the panel . another query : How to ma ...Show All
Visual C# How can I open a child window and block the parent window only?
So that, the other forms/windows in the application can still work. What about disabling the parent form while the child form is active When the child form is created, set its owner to this: ChildForm child = new ChildForm(); child.Owner = this; child.Show(); In ChildForm_Load: private void ChildForm_Load(object sender, EventArgs e) { this.Owner.Enabled = false; } private void ChildForm_Closed(object sender, EventArgs e) { thi ...Show All
Visual Studio Embedding Relationships and Inheritence
I have an embedding relationship within my domain model. I would like the contained class to be able to inherit from another class. However, this doesn't appear to be not supported in the DSL. Is there anyway that I can setup this inheritance relationship Cheers Susan Entwisle From an offline peek at Susan's model. The proposed inheritance relationship would make the contained element reachable in two different ways ...Show All
Visual Basic File rename
Hello. Quick question and I'm pretty sure a short simple answer. Using System.IO.File objects (or through any other means neccessary) is it possible to re-name a file through code. I know you can do this with Copy or Move calls, but I want to avoid lengthy copy times for large files. An instantaneous, quick, fast, efficient re-name is what I'm after. Thanks in advance, my fellow coders. Wait... Haha, I'm silly. I have just ...Show All
.NET Development bug in Int32.Parse
In Visual Studio 2005, the following throws a FormatException and it definitely shouldn't. The same code works fine in Visual Studio 2003. This is the version that I am seeing the problem, running on XP: Microsoft Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Profes ...Show All
Visual Studio Express Editions How do I count the vbCrLf's in a text string?
Visual Basic 2005 Express Edition: The user enters a 'Note' into a multiline TextBox. I then print out that note on a printed page. This is difficult, because, if he presses 'Enter' at the end of his lines, the text ends up overlapping the text that follows his note. I need to be able to count the vbCrLf's in his note, so that I can increment the y position. You can get the number of lines by using the Li ...Show All
Windows Forms Barcode scanner integration????
Hi gurus, I am currently working on a vb.Net project that requires a barcode scanner integration with the application such that, after the barcode is read by the scanner it will show up in a textbox and baed on the code database needs to be searched for that particular record and when found display the details of that record. I can do the second part but what i dont ...Show All
