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

Software Development Network >> E. Rijsdijk's Q&A profile

E. Rijsdijk

Member List

Ossie Bucko
Nishith Shah
BlueBeetle
Tryin2Bgood
Richard Abrahams
DazlerD
Absinthe
dn8
Nguyen Duy Linh
Stuman99
mobigital
lvance1611a
Daniel Schlößer
KC sharad
MatHobbs
Ido Flatow
IGiberson
AndrewLuiHK
chris townsend
Philip Painter
Only Title

E. Rijsdijk's Q&A profile

  • SQL Server Member.FetchAllProperties Error

    I get "System.NotSupportedException: The method specified is not supported by the current provider." AdomdClient v8, VS 2003, SQL Server 2000 What's the cause of this and is there any way around it hello Kevin, member.FetchAllProperties() call populates the member.Properties collection. and the member.MemberProperties collection should contain the properties explicitly requested in the mdx query (in “DIMENSION PROPERTIES” clause). depending on whether you need those properties for all/many members or not, you can either request them in the query (and access them with .MemberProperties collection), or request properties for a specific(few) members afterwards by calling .FetchAllProperties() and accessing propertie ...Show All

  • Software Development for Windows Vista Registering OCX component In Vista

    Hi all, I am trying to load a OCX component in registry. I am trying it using regsvr32 command through Start - run... It gives me message Module loaded but call to DllRegisterServer failed! So i am unable to use the component in my application. If I run the same command from command prompt(cmd.exe) which i run as administratotor, it works fine. Isn't there any way to solve the problem in Vista Thanks and regards, Kapil ...Show All

  • Windows Forms Opening a .chm file from a menu item

    I would like to open a .chm file whenever a specific menu item is selected. How do I do that in a C++ WinForms application The C# code uses the Process class: Process p = new Process(); p.StartInfo.FileName = @"path_to_chm"; p.Start(); Hope this helps. ...Show All

  • Visual Basic Recent Projects List on Start Page is not being Populated

    The Projects List on my Start Page is not being populated with the Projects I open. It's empty. Does anyone know what could be the problem I can see the entries being recorded in the Registry key: HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\8.0\ProjectMRUList But VS isn't reading them in for some reason. I'm running Visual Studio 2005 Professional. Thanks. *bump* Does anyone have any idea why my Projects List on Start Page is not being populated. I'm logged in as an Administrative User. Thanks. ...Show All

  • SQL Server Display output parameters from stored procedure

    Hi, I have a report that uses a stored procedure. The stored procedure has 3 parameters 1 input and two output and also returns a resultset. I have managed to hide the user prompt by changing the prompt for the two output parameters to an empty string. The report runs fine and the user is not prompted for these two values, however the report does not show the values that are returned by these output parameters. I could add extra fields to the resultset and not bother with the ouput parameters but this seems extremely inefficient as the resultset could contain several thousand rows and the fields would be the same for every single row. Is it possible to display output paramater values Thanks In Advance Chris ...Show All

  • Windows Forms monthCalendar control advances when BoldedDates are set in DateChanged event

    I have a Windows Form application that uses the monthCalendar control. When the form is first loaded, the BoldedDates are loaded from an array of holiday dates for the current year. I check to see if the year has changed in the DateChanged event. If the year is different, I load a array of holiday dates for that year. This causes the monthCalendar control to continuously advance month-by-month. It can be stopped by clicking on the back arrow of the form; but as soon as the year changes again, the advancing or decrementing starts again. Herb What I ended up doing was to use a timer to check if the year displayed in the monthCalendar had changed. There is a slight hesitancy because the timer was set to fire only once per seco ...Show All

  • Visual Studio Creating a custom editor/designer without VsPackage ?

    I am currently working in a team that is developping an add-in for Visual Studio. We used the add-in API (EnvDTE and EnvDTE80) and it had fited our needs until now. We have to create a custom designer for certain xml files and we didn't find the way to create one without using a VsPackage. Can a custom designer be created without VsPackages Where can I get information on how to register my designers in VS without VsPackages ...Show All

  • Visual Studio Express Editions Download Problems

    Evertime i try to download the visual basic 2005 it brings me to this page and not the download page: http://msdn.microsoft.com/500/default.aspx aspxerrorpath=/vstudio/express/downloads/default.aspx BillyBoB6969, I tried to input the URL you provide in your post, and get the same error. Please open the following websites and download the Visual Basic 2005 Express Edition: 1. Download the Visual Studio 2005 Express Editions Now! http://msdn.microsoft.com/vstudio/express/downloads/ 2. Manual Installation Instructions for Express Editions http://msdn.microsoft.com/vstudio/express/support/install/ ...Show All

  • Visual Studio Express Editions Assigning special keyboard keys to buttons

    hi there guys. Im currently designing an app that enables disabled users to put data into controls through the use of an onscreen key board I have created. I have figured out how to assign the values of letters, numbers and special characters onto my onscreen keyboard but i cannot get around assigning values of keyboard keys such as 'Tab', 'Up arrow','Home' etc. Does anyone have any ideas on how to achieve this thanks in advance Matt Still dont get it Dman1. this is what i did Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Keys.Tab() End Sub All i get is a build error. Can you just clarify this a bit more. ...Show All

  • Visual Studio 2008 (Pre-release) Poor performance caused by Frame

    Hi, I'm trying to develop a prototype of a business application. The major task is to show data from a database (e.g. a list of customers). Therefor I use asynchronous databinding like Andrew Whiddett ( http://blogs.msdn.com/karstenj/archive/2006/01/27/518499.aspx ). DispatcherPriority is 'Background'. I also added a Frame to display webpages in the application. Loading a huge amount of records from the db is guite good. But since I clicked in the toolbar on the button to show the Frame, the performance of the following operations (like to load data from the db for a listview) is getting worser. Maybe the frame does something in the background with a higher priority than the dispatcher. Is it possible to dispose the frameobject when it is ...Show All

  • .NET Development Unregular behaviour from Type.GetProperties()

    After using the Type.GetProperties() heavily (needed to dynamically create types), I noticed weird errors showing up. After investigating this for QUITE a while, I realized that Type.GetProperties() seems to return the public properties of a type in different order (sometimes). anyone know of any documentation if this is supposed or not supposed to happen should one be able to rely on the PropertyInfo array having the members in the same order each time you call GetProperties Hello All. Hans: According to the docs : Remarks A property is considered public to reflection if it has at least one accessor that is public. Otherwise the property is considered private, and you must use BindingFlags.Non ...Show All

  • Visual Studio Express Editions CreateFontIndirect Assertion in wingdi.cpp

    Hi could any one help me in this piece of code which is causing an assertion CFont* myBold = (CFont*) GetFont(); if (myBold) { LOGFONT lf; myBold->GetLogFont(&lf); lf.lfWeight = FW_BOLD; lf.lfHeight = 18; myBold->CreateFontIndirect(&lf); //causing assertion here in wingdi.cpp } Thanks in advance Kiran Hi Reza, Thanks again. It is working fine without debug assertions failures, but the FontFace is changed in the old Font. I tried in many ways but could not get the answer. Is there any chance of font face getting changed in this code fragment. Thank you, ...Show All

  • Visual C++ Parallel Port Printing in Windows

    We have some code that prints to an LPT printer on the local computer. On some computers, the code doesn't work. It looks like some printer service is blocking or hogging the printer port and doesn't allow our code to access the port. We found that if we goto device manager and delete the LPT port and then re-detect hardware and reinstall the LPT port, then our existing printer code works (seems that frees up the port) .. but on rebooting the OS (Windows 2000) the problem reappears .. so seems that a system service on startup blocks the port. Has anyone encountered this problem Is there any to explicitly take control of the printer port .. which may or may not be blocked by another program The current code is directly writing to the por ...Show All

  • .NET Development micosoft.net development standards

    could anyone please explain me: what are the microsoft.net development standards or what are the standards for microsoft.net development thank you Hi sam, i'm student using f# could u please tell me how to fix the console of the ourput because it appear for less than 5 second .i'm using visual studio. cheers Ala ...Show All

  • Windows Forms Clickable and Sortable list

    HI, I have a (simple) question on how I can make some kind of list(View) with items that can be sorted by diferent categories, and that can be clicked. An example of what I was thinking could be Outlook-Express where you can sort by sender, subject, date, ... Any workable solution would be great ;-) ...Show All

©2008 Software Development Network