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

Software Development Network >> R.Tutus's Q&A profile

R.Tutus

Member List

SLang
Michael J Brown
Rama Boya
Deldy
Alex-MyRpg
SreeNadhx
Saad Ahmed
Angelo Fraietta
Joos
Alexey Rokhin
eldiener
Maclau
Colin Mackintosh
boe_sue
LeahC
chinmayv84
AGPX
David Ing
Coope
oilyneck
Only Title

R.Tutus's Q&A profile

  • SQL Server Upgrading a cube from Analysis Services 2000 to SQL 2005

    I am trying to upgrade a cube that was developed in Analysis Services 2000 to SQL 2005. I have gone through the following MSDN Links http://msdn2.microsoft.com/en-us/library(d=printer)/ms143686(sql.90).aspx#upgradeASfromEarlierVersion http://msdn2.microsoft.com/en-us/library/ms143235.aspx According to this information, it appears that I cannot migrate a single cube from analysis services 2000 to 2005 - I need to upgrade the server and run the migration wizard. I think the migration happens for the entire AS200 database. Explicitly migrating a single cube might not be possible I guess. I was looking into the migration wizard, but I think the smallest unit that can be migrated is a database and ...Show All

  • Smart Device Development Switching form Focus

    I'm using the sub below to call a new form and display it. The new form (form2) has a text box and a button. When the button is clicked I want the form to go away and have the code pic up where it left off on my main form (display the msgbox after frm2.showdialog). All I have on the button_click event now is ME.hide. The form (form2) disappears but so does my app. The name of my mainform is mxev. I've tried MXev.visable=true .bringtofront . show and .showdialog but no luck. The app is still running but I cant see it. Thanks DASHLEY Private Sub DisplayQuestion( ByVal Thequestion As Integer ) Dim form2 As New Form2 Form2.Label2.Text = Thequestion Form2.ShowDialog() MSGBOX("form ...Show All

  • Visual Studio Team System Issue with Team Foundation Server Workgroup

    I was wondering if someon could post some links about how to have multiple people work on a single Web application via Team Foundation Server Workgroup edition. We have loaded the product successfully and each of us can connect but when one user checks in a web application the other user has to jump through hoops to get to the project and can only use Source Control Explorer to view and work with files. If we get the solution manually then it shows in Solution Explorer but does not show that it is chedked in and the only option of source control via right click on the project is Add Web Site to Source Control, but it already is! We thought that once the project was uploaded to the Team Foundation Server that the next developer could ...Show All

  • Windows Forms Getting a value from a control at another form

    Hi My problem: lets suppose that we have a form called Form1 and has a textbox control called textBox1 and another form called Form2 that has a label control called Label1 and I want to set the content of Label1 with the same content of the textBox1 in Form1 what is the suitable code for such a purpose. Thanks Hi Ranadheer, in the previous code example there is a property called UserEnteredValue which returned the string entered by the user in the textbox. In your case you will create a property which will return the listbox's SelectedObjectCollection i.e. public SelectedObjectCollection UserSelectedItems { get { return this.myListBox.SelectedItems; } } ...Show All

  • Visual Basic Where can I look up error numbers

    This is exasperating, trying to wade your way through all the reams of 'help'. All I am trying to do is find out what the error numbers are for errors that might occur in my program. For example I need to know what error message is given when a user cancels a download in progress before it is completed. Why in the heck is it so hard to find out the number for each error I mean, I can find tons of information on how to deal with certain errors. I am using VB and VS2005 Standard Edition if that makes a difference. Can someone direct me toward where I can find this information for now and for future reference Thanks for any help Bill Langston Hey thanks spotty, it looks like this will do it. I've got a 1500 bull try ...Show All

  • Visual Basic Looping Registry Keys

    I am making an application that allows me to backup my Microsoft Office 2003 settings. To be honest I have two questions if you dont mind.... One question I would like to ask is if anyone can help me think of a way to loop through each set of keys under each Office program key so that I may save each value as seen fit To do this so far I have had to look up each of them with regedit and write about 1700 lines of code, its works but seems to be terribly untidy and a loop I think would be more efficient. Another question would be; On installation of Office, would all of the keys and values be written. Or maybe they are not there until that particular setting or option has been edited within a program I thank any person that can ...Show All

  • SQL Server Can't install SQL Server Express

    Hi all, I've been trying all day to install SQL Server Express edition on my development machine, I 've uninstalled other Express Editions that I have previously installed, at least none show in add/remove programs. When i try to run the setup program i get the message that i have incompatible programs still installed. I don't know what they would be. None are listed in the program list as I have said. I tried to run the uninstallbeta program on the SQL Server Express page, but I keep getting an error that the "framedyn.dll" cannot be found, reinstalling the application may help! lol ! Any idea's Thanks in advance. You can also check out my last post in http://forums.microso ...Show All

  • SQL Server Line Break after x subreport entries in a matrix

    Currently, I have set up a matrix like this: nbsp; All distinct drive letters on a server nbsp; Subreport that displays a pie graph about disk space in a specific drive letter for that server So, say for example if I can 2 drives (C:, D:)on a server, the report will print 2 Pie graphs, 1 about drive C: and 1 about drive D: layout horizontally. An A4 page will take 4 Pie graphs horizontally. If there are more drives, it inserts a blank page and prints off the rest. My problem is: How do I restrict the layout of the preview, so that If a server has many drives (say 10), it will insert a line break after every 4 disk drives, so it will actually all fit in one page neatly. Any help will be great Thank yo ...Show All

  • Visual Studio How to create a "Tree Structure" of any Visual Studio project?

    Hi, Is there any way that we can create a "Tree Structure" of our Visual Studio project hierarchy I have a massive project in which source files are arranged in numerous folders with different names, I just wanted to have tree like structure generated for this project so that I  can view all the files under different folders. I wish something like "Dos->Tree" command is available as an AddOn with Visual studio. Hope to hear from you soon. Kind Regards, Santosh Thankachan   Hi, I am not sure what exactly you are trying to get. Where that "tree structure" should be rendered In a toolwindow inside VS In an external XML/HTML file In the Output window Do you want something like the Solution Expl ...Show All

  • Visual Studio Team System Automating an FxCop run and collecting results?

    I've written my FxCop rules and can use 'em fine from within FxCop by: load MyRules.dll up into FxCop from the Project>Add Rules menu item turn off all other rules from the Windows>Rules menu item add a target by right clicking in the Targets pane and selecting the Add Targets popup menu item. I find that I can save the project with File>Save Project As and that I can subsequently reload the project into FxCop from the command line. What I'm missing is the ability to automate the sequence: fxcop MyProject.FxCop Hit the Analyze button Save the results with File>Save Report As Is it possible to automate these steps so that I can write a regression test to add to my suite of tests that run every day to e ...Show All

  • Visual C++ Problem with DialogBox

    Hi all! I have some problem with displaying modal dialog box (through DialogBox function). I use pure win32 api, no MFC. I wrote something like that: DialogBox(instance,templateName,parentWindow,DialogProcedure ); where templateName contains name of a resource template. And the problems are: after executing above line the dialog box is displayed, but it has title bar with no window title and there is an "X" button, but I cannot click it. I cannot move the dialog also... The dialog always appears at the upper left corner of the client area of the parent window (if I try to make that dialog as a main window of my app, then it always appears at the top left corner of the desktop). There should be also a system menu ( ...Show All

  • Windows Forms How do you make a Favourites Menu

    hi, Iwas just wondering if anyone could tell me how to make a favourites menu from scratch and how to program it in C#. Thanks, Zulbaric If you are talking something abuot Faveourites like in Internet explorer i.e open Some website and add it to favourites. You have to place a button on your GUI which opens up a Windows similar to Internet explorer, with a Save button and a TextBox with Title of Favourite, Put a title for the favourite and internally save the path of opened file along with the title in some text file, xml file, Registry or application settings.... Then on the GUi create a menu which loads its item from those saved favourites and put their event handlers respectivley to open up thos ...Show All

  • Visual FoxPro Using database in network

    I've build a database program with Visual Foxpro, and use Visual Foxpro database/table. Example : Select 1 use c:\data\table1 But sometimes my database/table located at server drive (my network place). So I typed, for example : Select 1 use \\server\data\table1 It doesn't work properly, because Visual Foxpro cannot recognize the network drive. How to solve this problem ....thank's....... Nothing wrong with the syntax. Simple and maybe obvious questions: Is there a share in the server folder Does the program (or you) have enough permissions on that shared folder ...Show All

  • Smart Device Development icons in listview control not working in Windows Mobile 5.0 on a Dell Axim Pocket PC

    Hi, I have written an application for windows mobile 5.0 using Native C++ with MFC in which i have a main Property Page, I have drawn a list view control with type as Report View in this Property Page . I am trying to show an icon with the List view Items, but the image associated with the items are not visible when i add an element to the control though the text is shown properly. I tried using a 16X16 as well as a 32X32 icon, but none seems to work (even with several different color depths (including monochrome)). I am using the following piece of code void CPresencePage::OnInitDialog() { pImg = new CImageList(); m_list = (CListCtrl*)GetDlgItem(IDC_LIST2); pImg->Create(32, 32, ILC_COLOR4, 1 ...Show All

  • Visual C# problem with f5

    hi all vs 2005: i installed plugin for webapplication (different from web site) and i imported my web app from vs 2003. Now vs2005 not build and run always, sometimes i have to close and retry... why thx i download from microsoft site!!! http://download.microsoft.com/download/9/0/6/906064ce-0bd1-4328-af40-49dca1aef87c/WebApplicationProjectSetup.msi ...Show All

©2008 Software Development Network