MFH Schoonbrood's Q&A profile
Windows Forms Beginner to Forms
I've just started using VB .NET and forms. I have created 2 forms, the first form has a button that when clicked will: create an instance of the second form show the second form hide the first form. Then when i close the second form I wan ...Show All
Visual Basic fibonacci
I tried to do a fibonacci-function in Visual Basic, that could calculate the n'th fibonacci number. I tried two ways, reccurence mode, and by a for-loop. this is the two functions: Public Function fibonacci(ByVal n As BigInteger) As BigInteger Dim a, b, c, m As BigInteger a = 0 b = 1 c = 0 For m = 2 To n - 1 c = a + b a = b b = c Next Return c End Function Public Function fibonacci(ByVal n As BigInteger) As BigInteger If n = 0 Then Return ...Show All
SQL Server Need help designing dimension
Any ideas appreciated on this: We are pulling customer data from 8 homogenous sources like so: customer attributes, sourcesystem This data is going uncleaned into a base customer dimension Using fuzzy grouping we group and extreact similiar customers into another dimension: conformed customer dimension, and update the base customer dimension with the conformed customer dimension primary key in a parent_customer field. We add several ...Show All
Windows Forms How to detect acrobat reader with c# ?
How to detect if acrobat reader is installed on my machine from a winform application Thank you. i thinks you may search Reg, to find if the key existed and you may get the version of the soft ...Show All
Visual Studio Need to generate .rdlc at runtime for dynamic report processing in a web form.
Where can i find info on this I want the user to select parameters. I can piece together the SELECT statement from the user inputs. I can fill a dataset with the results from an Oracle DB. I think the final part missing is how to generate and attach a new .rdlc file to render the report. Any help is appreciated. I discuss this strategy in my new book. While it would be possible to create an RDLC file ...Show All
Visual C++ Debug in Windows NT
Hi, I am using Visual Studio 2005, How do I debug my MFC application in Windows NT Regards Manoj Jangid VS2005 doesn't run under NT I guess that means you can't, unless you can connect to debug remotely. For debugging on anything apart from my dev environment, I would use error logging rather than install VS on lots of machines. For starters, I'm not legally entitled to, I don't believe. Also, it's better to test on a ...Show All
Visual C++ msvcr80.dll Problem
Hi there, can someone possibly tell me why Noton WinDoctor is telling me that 10 executables in the .NET Framework 2.0 cannot access the necessary dll file msvcr80.dll I see that the dll exists in the WinSxS directory and I'm running XP pro. I didn't have this problem until I downloaded the 2.0 framework at windows update. Any advice appreciated. Thanks. Naolin I am having the same problem... I even uninstalled i ...Show All
Visual C++ How to make a window moving handle (click and drag the handle to move the window)
I need to make an app with no borders/title bar (got that covered) that has a window moving handle (the form background) that moves the window when you click and drag it. If this puzzles you think of Windows Media Player in Skinned Mode. Can Someone Please Help Me Flame thrower I tried puttin it in, VS gives me lots of syntax bull must not be the same in c++... ...Show All
Visual Studio 2008 (Pre-release) No data access with 'Partial Trust' Web Browser app
I have written a simple Avalon Web Browser application that tries to access data via an Indigo service . While I can run the app successfully from Visual Studio with security set to 'Full Trust' , data access fails if I set it to 'Partial Trust' with the error: "That assembly does not allow partially trusted callers." Since Web Browser applications cannot run with 'Full Trust', how can I enable data access with 'Partial Trust' (Note: When ...Show All
Visual Basic Help needed to select specific arrays and diplay in a Listbox?
Ok well the problem I have is that i have to setup a program in which the user selects a Product from its ID which is displayed in a Combobox. Once selected the user clicks the buy button which brings up a quantity input box where the user can enter a number which is calculated and displayed in a Listbox! The problem im getting is that althought it is displaying the information ...Show All
.NET Development TcpClient tutorial
I know the basic of TcpClient. What I’m looking for is some more advanced tutorial on how to create a good server that can support multiple connection which are open and closed often (like IIS). How to handle each thread, fastest what to open/read/write data, ect… What I have is a web client (browser) using AJAX to get information. Maybe a 100 people will get information every 2-3 seconds and this information needs to be saved in a datab ...Show All
Visual Studio Express Editions pleaseee help me>>>>
first of all ....................hi please can any body tell me how do I insert a flash content in visual basic if that is possible ............and thanks. If you searched the forums there has been previous post's on this topc also try and read the post at the top of the forum good advice pleaaaaaaaaseee help makes people not wanna help no affence -=mark ...Show All
Windows Forms Linked Scrolling of 2 TextBoxes
I have 2 TextBoxes with content of the same height. How do you link the scrolling so that scrolling one also scrolls the other Best example use of this would the diff comparison feature of SourceSafe. Thank you very much...i was trying to solve the same issue here. ...Show All
Visual Studio Keep Together
In Crystal Reports there is a property called Keep Together which can be applied to a group. If you turn this on, it will move a group to the next page if it will allow the entire group to show up on one page. Is there anything equivalent in MS Reports Thanks ...Show All
SQL Server DB connection in a Script Transformation
Hi all, I have what will probably turn out to be a very simple issue but has eluded me for a few hours. I have a Script Transformation that I am using to create surrogate keys I have to seed the key from the db and the best solution I have come up with is to use the Script Transformation. Here is what I have Imports System.Data.SqlClient Public Class ScriptMain Inherits UserComponent Dim max A ...Show All
