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

Software Development Network >> Magnus Müller's Q&A profile

Magnus Müller

Member List

Vagif
dribar438960
Amjath
kangalert
merwy
keacegll
itznfb
R.Tutus
luca82
Nikhil Joshi
kastanienreis
Mansoor Adnan Ali
NP Rudra
hidme
mrbelk
Shady9399
ItsMe!!!
red60man
niallhannon
Alex2200
Only Title

Magnus Müller's Q&A profile

  • Visual C# ProgressBar Dilemma

    My user wishes to see visual proof that their app is processing files. I've never used a ProgressBar before and I'm trying to get a test to work before I 'muddy-up' my production app. I've gotten to the point that I can get the Value to display as each record in a file is read; however, when it gets to the final record it displays the following exception: Value of '1894' is not valid for 'Value'. 'Value' should be between 'minimum' and 'maximum'. Parameter name: Value I know what the problem is (there's 1893 records in my test file), I just don't know how to fix it. I've tried to set the record count to it's value +1 ( this . thisProgressBar . Maximum = Convert . ToInt32 ( m_strInputFile . Length / 1024 + 1 ); ), but still g ...Show All

  • Visual Studio 2008 (Pre-release) XP domain controller acting as Kerberos KDC?

    Hi, I read posts about configuring a Windows XP Prof. domain controller acting as a Kerberos KDC. Could you guide me how set this up I'd like to set up a test scencario with a client and a KDC on the same machine to achieve single sign-on fpr my applications. For me, this seems to be the easiest way... If that's not possible, how about running a KDC on a local machine and let a client contact it from the same machine Many thanks!!! I really appreciate any advice! Look a little more closely. The XP KDC is backed by Active Directory . You can certainly set up a non-AD KDC and plug custom code into WCF to talk to it, but that's purely an extensibility scenario. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Terrain component source code

    The terrain is split into batches, one batch from every texture type. Each batch has a vertex buffer and an index buffer. It uses quad trees to find which tiles should be rendered. Once it has the list of tiles that are visible it populates the batch's index buffer. I'm sorry for the disgraceful lack of comments in the code, but here you go, a tile-based terrain component implementation for XNA. Download the file here: http://files.filefront.com/Terrainzip/;5526129;;/fileinfo.html For more information check out my new/empty blog: http://kukyona.blogspot.com I dont have a website so Im a little at loss on how to share this with you guys... so feel free to send me any questions or comments on a better place to put this. ...Show All

  • SQL Server Organizing dimensions

    I have question about orginizing the dimension. What is best and faster for deployment and processing Let's say I have 10 cubes, and each one has about 15 dimensions. Because of client application, I want to have all cubes in just one database. So that makes 150 dimensions under one directory called Dimensions on OLAP server, or is any other solution To deploy all cubes into single database it is necessary to have all cubes in only one project in BI. That makes whole project, deploying and maintaining under SourceSafe really slow. Is any other solution for organizing dimensions and cubes It's not the problem of sharing the dimensions. I share some dimensions, but cubes are different and so are dimensio ...Show All

  • Software Development for Windows Vista ezrgb24 fatal error LNK1104: cannot open file '..\..\BaseClasses\debug\strmbasd.lib'

    When I am trying out the sample filter provided by DirectX SDK. The error "ezrgb24 fatal error LNK1104: cannot open file '..\..\BaseClasses\debug\strmbasd.lib'" happen. Do you know how to solve it I have included the path in tools->options->directory. And I have searched all the files in my system, but no strmbasd.lib found. How could I do and how to get the strmbasd.lib file Thanks for help. Like I said, the reason you didn't find it is "MS doesn't ship the lib". This file is generated by building the baseclasses sample, which is why " You must build the baseclasses sample yourself." ...Show All

  • Visual Studio 2008 (Pre-release) how to right-justify columns in a ListView/GridView?

    i'm binding data to a ListView with a GridView. each GridViewColumn has its CellTemplate specified. in those templates i'm trying to right-justify a TextBlock, but it's not working. looking at the VisualTree, i can see that the TextBlock is contained by a ContentPresenter whose HorizontalAlignment is 'Left' ... but i really want that to be is 'Stretch' ... so how can i change that Thanks, casey if DisplayMemberBinding is defined then I dont think CellTemplate will be applied as the displaymemberbinding takes the preference I think it is one of them and not both ...Show All

  • SQL Server Customizing report manager

    I need to place a jpeg image of our company logo in the middle section of the Report Manager heading between the wording of "reporting services" and Home | My Subscriptions | Site Settings | Help I am using SQL Reporting Services 2005 with SQL Server 2005 SRV Pack 2 Can someone point me in the right direction This is not possible. Report Manager was not designed to be customizable. You can only edit the stylesheet (css) or replace some of the existing images (fixed size) by going to the installation directory and looking in the styles and images directories. ...Show All

  • Windows Forms DGV in a UserControl

    I have a class (I'll call it, myDGV) that has DGV as its base, the DGV columns are defined in the myDGV constructor. When I drag a myDGV from the Toolbox onto a UserControl (I'll call it, myUserControl), the column definitions are recreated in the code module "myUserControl.designer.cs"; which means that instead the original 5 columns as defined in myDGV, I now have 10 columns (ie I see everything twice) . How can I stop this; at the moment what I do is to hack the myUserControl.designer module, but if for any reason I have to load the myUserControl into the designer I have to redo the hack. Thanks PhilD AutoGenerateColumns applies to Bound Columns. My columns are unbound and the DGV is virtual, ...Show All

  • Windows Forms Aligning text in Label

    How to align text in a Label control to right I set the RightToLeft = True but it doesn't work! Thnk you! I will change the text of the label programatically. If i change the AutoSize property, will it resize correctly It does not reside in the same right position! Thnx! Kapalic ...Show All

  • SQL Server Change results

    I have created query As shown: SELECT distinct [Table] FROM [Database] The results i get back are A, B & C. What i am trying to do is show a result as a different word. i.e instead of displaying A is shows in drop down list as Apple, B shows Banana. etc. Can anyone help please. Thanks The syntax of your query is not correct. Normally in SQL Server you would use the following: SELECT [Columns] FROM [Table] It is good practice to create a lookup table that contains a set of unique shorthand codes or IDs, such as 'A' and 'B' in your example, and an alphanumerical field to contain a description of the code/ID - 'Apple' or 'Banana' in your example. You would then join the fact ...Show All

  • SQL Server Audit history for scheduled jobs (SQL Server 2000)

    Hello, I would like to be able to set up an audit of changes that are made to scheduled jobs, so that a history can be built up of of these changes. Anyone any ideas on how to do this Thanks ...Show All

  • SQL Server format date

    I have filed from the sql db. I change the format to "d" the problem is that I want the format to be "dd/mm/yyyy" and now I see the format "mm/dd/yyyy" I can change the format by right, mid and left function, but I sure there is another way do it. thanks! Hi, There is a property on the report level where you can set the local. You should try to use this. For example when working with currency fields, it will use the currency for the region selected in this property. Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All

  • Visual C++ wincon.h missing SetConsoleDisplayMode()!!!

    BH Im using Windows XP Home. I installed Microsoft Platform SDK 2003 R2, and already adjusted the directories with my VC++ 2005 Express. (p.s. should I really use this sdk, or the 2003 sp1 ) When I try to make A win32 console window to full screen, using SetConsoleDisplayMode(HANDLE, DWORD, PCOORD), the compiler complains that the identifier is undeclared. So I opened wincon.h and indeed it does not have the declaration of SetConsoleDisplayMode()! I checked MSDN, and the function is still listed! said to be included in wincon.h! http://msdn.microsoft.com/library/default.asp url=/library/en-us/dllproc/base/setconsoledisplaymode.asp Whats going on is there a alternative better way to set full screen ...Show All

  • Windows Forms Manupulation with DataGrid

    I am new in Windows form but working from last 5 years in web forms, when I start working on windows datagrid its quit different from web form datagrid, could you let me know any project which uses the proper way to manuplulate the datagrid like Add, Edit and delete recored in a grid as well as search, sort and group data. many thanks in advance may be, yes, I want to know how to update the data in a grid as well as Add, delete, sort and search, i was search the net for a project which illustrate this ...Show All

  • Visual Studio Tools for Office Right Click Event on Email Item

    Right now i am trying to edit the right click menu of outlook 2003 using VSTO. also i want its events so that i can do some necessary work becore the right click menu. Any help regarding this would be appreciated. Can you be more specific about which mean you mean Do you mean the context menu in the main Outlook window when you right-click on a mail item in the view, or do you mean in the Inpsector window when the e-mail is open and you right-click in the body For the menu in the main Outlook window when clicking on an item, there is no way to do this in Outlook 2003. This functionality was added to Outlook 2007 however. With the body, you can add items to the context menu only if the user is using WordMail for their e-mail edi ...Show All

©2008 Software Development Network