ssfftt's Q&A profile
SQL Server Reporting Services 2005 Metadata
Greetings, I'm creating a new data model using Reporting Services 2005. The database has the standard generic names like 'idSystem' etc. I have created a Metadata file with user friendly names 'Control System Id', but rather than have to retype all those names and descriptions over into the [Friendly Name Property] I'd like to try to pull that information into the model. So my question is... Does anyone know where are the Friendly Names property is stored and can I program that field to pull from another file Thanks - Will Right click on the model in VS and select View Code. If it is set, the Friendly Name for each Entity element is an element called Name . Because you can nest Entity eleme ...Show All
Windows Forms Transfering info with Class file
I have 2 forms Form1.h URL.h I am trying to take the information from "txtURL" on "URL.h" and place it into "wmp->URL" on "Form1.h" i was told i have to use a Class file as information cannot be transfered from Form to Form. So i made a class file "URLC.h" the code in it is //////////////// #pragma once #include "Form1.h" #include "URL.h" namespace M12; ref class URLC { public: URLC(void); int URL; }; \\\\\\\\\\\\\\\ Note: the \\\\\ and ///// are not part of the code, its to show start to finish. i was told that you decalse strings with "int stringname;" so i use int URL; How can i place the info into URLC and then have Form1.h read it when URL.h is clo ...Show All
Visual Studio Team System TFS Permissions Guide
Hi Guys, I would like to share with you a document my team has recently put together. It deals with the complex matter of TFS permissions. We’ve included the entire scope of TSF permissions (Server/project levels, WSS, RC, work item tracking) into it and would appreciate it, if you will find the time to take a look at it and tell us what you think about it. http://blogs.microsoft.co.il/blogs/srlteam/archive/2006/10/23/Complete-TFS-Permissions-Reference.aspx James, I am with you as far as having updated official documentation vs. proprietary stuff is concerned! But the official documentation seems to be somewhat behind the actual functionality. Personally, I have come across the whole host of ...Show All
Visual Basic Create Message-Box with VBA and Visio
Hi everyone, I have tried to find a Keyword to create a Message-window or something like that in Visio, but I did’t find anything. I just need to create a small window with a Message on it. Please tell me how to do :) Thanks VBA code for messagebox: Dim Msg, Style, Title, Help, Ctxt, Response, MyString Msg = "Do you want to continue " ' Define message. Style = vbYesNo + vbCritical + vbDefaultButton2 ' Define buttons. Title = "MsgBox Demonstration" ' Define title. Help = "DEMO.HLP" ' Define Help file. Ctxt = 1000 ' Define topic ' context. ' Display message. Response = MsgBox( Msg , Style , Title , Help , Ctxt ) If Response = vbYes Then ' User chose Yes. MyString = "Yes" ' Pe ...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
Game Technologies: DirectX, XNA, XACT, etc. TorqueXNA
I had a look at the XNA version of the Torque 2d engine and noticed that it converted 4mb worth of png files into over 60mb of xna files; Is this a Torque issue or xna as its a massive increase and would make releasing any games online a virtual impossibility. Thanks Shawn, but I'm not sure if that answered the question. For example, I have a splash screen that goes from 5.21kb in PNG format to 1.10MB (1126.4kb) in XNB format - over 216 times bigger. Is there something I have to change in the properties for that file to keep it from getting inflated ...Show All
Visual C# VS.NET Design view controls disappeared
Having a major issue with VS.NET 2005. I was working on a website and tried to switch to design view and all controls had disappeared (although html was shown). All code was correct when viewing in code view and the project built and ran correctly. I tried to see if this was an issue with the website alone or the dev environment by creating a test website. Again, no controls were visible and I cannot even drag controls from the toolbox to the design surface. I've tried repairing the installation of VS.NET but again nothing...any help would be appreciated, I really don't want to have to reinstall the operating system! I'm running vs.net 2005 on XP home. Cheers Dave Breare Dave, When you try to drag contr ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Games within a IE brower
Not real sure if this is a new thread or not, but is it possible to create a game (actually more of a simulation) using the XNA game studio that would run in a browser window Does not necessarily have to actually run from a online web server, just be browser based. Thanks Joel Martinez wrote: Rick Mogstad wrote: That isn't really the same as running the game in a browser window ... having the control, written in managed code, be able to interact with javascript code (and thus, other non-managed elements of the web page) certainly seems like it's "running in the browser" Certainly, but not in the context that the OP intended. I meant "Completely" in a browser, without having to download and ins ...Show All
Windows Forms Resize Text To Fit Form
I need to work out how to get the greatest size that my font can be without my text exceeding the dimensions of the rectangle. SIMPLE !!! NOT!! I can’t find reference to this being done anywhere! I have a rectangle size, and varying length string of info to splash up on the screen and a font, how to determine how big I can make it without exceeding a particular size. Has anyone wver had to deal with this HELP! This is how i am drawing the string on the form: Dim strText As String = "123456789123456789123456789123456789123 4567891234 56789" Dim rectangle As New RectangleF(0, 0, Me.Width, Me.Height) b.DrawString(strText , textFont, New SolidBrush(Color.Blue), rectangle). Hi, You can ...Show All
.NET Development CodeDom Generated code Debugging
I have done a lot of searching for this over the past month or so but haven't found what I see as an answer. I am working with a program that will allow a user to create and compile a CodeDom Graph from a C# form. What I need to do is create a way of letting the user debug the program they have created. Either in our Form or in .NET. The best way I could think of debugging it in .NET is to create a project file with all of the info and generated source file. I didn't really like this idea so if you have a better one... I have read quite a bit about SOS and MDbg and don't quite know if I could use these either. If anybody could point me in the right direction i would be much obliged. Thank you very much, this has made my life quite a ...Show All
Smart Device Development how can i deny opening start button and close the this minue when opened ?
Hi .. i want deny a start button openning when my application is running Is there a methode or way to do like this , please cheers >> Is this going to be an option in the future Plenty of people want to make smart device apps which run in 'kiosk' mode, which is not as easy to do as you might think ...Show All
Software Development for Windows Vista Creating WF Rules From CodeDom
Hi everone We have a situation where will be using Windows Workflow Foundation Rule Engine along with our custom application. Now the main point of foucs is to create rules on basis of some external application (say Microsoft Analysis Services Dataminig generates rules and they will be used ) , now as we gather WF uses CodeDom to save rules , now we need to write a convertor that takes rules from one side (SQL BI ) and convert it into WF (CodeDom ) Format . Now here i need you guys support for the following (SQL Datamining Generated Rules ---->WF CodeDom) a) Let me know the best possible option(s) for this b) can any one provide detail codeDom demos (I already browsed WF Team Member Blog , i think Mustufa's and some one ...Show All
SQL Server SQL Server Internal Error. Text manager cannot continue with current statement..
I have received 3 errors on my production server for error number 7102 SQL Server Internal Error. Text manager cannot continue with current statement. This has happen 3 time in the last week. Before that I have never had this problem. I am running SQL2k SP4. I have ran DBCC CheckDB on all database on server, all have 0 allocation errors and 0 consistency errors. Does anyone know where to start troubleshooting this problem ...Show All
SQL Server @@ERROR logic not working
Hi There I am having a little trouble with something very simple: I have a stored procedure with the following sql in it: UPDATE mfsWS_CustNewCustomer SET Result_Id = 0 WHERE QueryGUID = @Guid IF ( @@ERROR <> 0 ) BEGIN RAISERROR ( 'Error setting Result_Id' , 16 , 1 ) UPDATE mfsWS_CustNewCustomer SET Result_Id = 1 WHERE QueryGUID = @Guid RETURN END To test if this works i SET the Result_Id = 'X' this is a smallint column so this should not work. My issue is that all i get is the error: cannot convert char to numeric etc etc However the @@ERROR logic is not executed , my error is not raised and the update does nto happen, it si as though the entire sp aborts at ...Show All
SQL Server SQL Server replication to SQL 2005 Express
Hello, I am facing problems trying to replicate SQL Server 2000 table to SQL 2005 Express. The error says: "login failed for user 'username'. The user is not associated with a trusted SQL server connection" PS: The same happens when I try to register the SQL 2005 server in SQL 2000 Enterprise Manager. Any help Thanks Walid SQL Server Express only supports windows authentication, disabling mixed mode is one solution. For your second problem, you cannot connect to a SQL 2005 machine via SQL 2000 Enterprise Manager, this is not supported. You can install the free SQL Server Management Express Studio Express from http://msdn.microsoft.com/vstudio/express/sql/download/ and connect to your mac ...Show All
