mohd sufian's Q&A profile
SQL Server Generating and Printing Reports
I've created a data flow where I have linked to an OLE DB Source then created a Flat File Destination. My file is now on my c: drive. I'd like to use that data to create a report, then print to a PDF. How would I do that Currently I was doing this in Access, but I am moving my processes to SSIS. I was also assuming that I could put this in a Script Task, but I didn't know how far I could go with generating a report from there. ...Show All
Visual Studio Referencing custom environment variables in MSBuild.
Hello, Ultimately all I want to do is set an environment variable with a value, so it can be referenced within my Build script. Sounds easy I know, but I can’t find an answer anywhere to this problem. Summarised below are the steps which I am currently taking to achieve my goal: Set environment variable in DOS (i.e. SET TEST=TEST1). Type SET to ensure the variable had been created, which it has. In my build script write a target to reference the newly created environment variable. < Target Name = " ReferenceEnvironmentVariable " > < Message Text = " TEST1= $(TEST1) " /> </ Target > I invoke the above target by ...Show All
Microsoft ISV Community Center Forums Get Ready for Windowa Vista - Compatibility info
Below is a list of useful Windows Vista compatibility resources: Application Compatibility Cookbook: http://msdn.microsoft.com/windowsvista/reference/default.aspx pull=/library/en-us/dnlong/html/AppComp.asp Windows Vista Logo information (Works With/Certified For), partner benefits and more can be found at: http://www.innovateonwindowsvista.com Jump start kit to help you learn about Windows Vista compatibility http://devreadiness.org/blogs/works_with_windows_vista/default.aspx Moderated Forum: http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=904&SiteID=1 Blog: http://blogs.msdn.com/VistaCompatTeam/ Let us know if you find this information is helpful. Thanks, The ISV Bud ...Show All
Visual Studio Can't read code examples in MSDN Library
Suddenly I can't read code examples from MSDN Library. All characters are graphical signs. It's very annoying, but I can celect the code and paste into another text programme eg. VS og MS Word, and then it's readable again. The problem is Document Explorer v 8.0.50727.42 (offline) and MS Internet Explorer 6.0.2900.2180 (online), because viewed in Firefox online there is no problem. How do I fix this bug Is it something about a new installed font I know that using nearly all combinations of encoding in MS Internet Explorer dosn't make a difference. Uninstalling and reinstalling MSDN Library have allso no effect. Hello Ulrik, can you clarify whether the content you were viewing was coming from local or ...Show All
Visual Studio 2008 (Pre-release) Using another controls events
Hey! This is a follow up on my last thread about Office 2007-like window frame . This is what I have done, pseudocode: Window window = new Window(); window.WindowStyle = none; and then in my app my visualtree looks something like this: Dockpanel main = new DockPanel(); WrapPanel wp = new WrapPanel(); main.Children.Add(wp); and "main" has "window" as parent. Everything is looking fine, however, I miss the feature to move the window, maximize/minimize it with the mouse. How can I do this To do this I have tried the following: I put a Label in the WrapPanel and then adds eventlisteners to them like this: lbl.MouseDoubleClick += new System.Windows.Input.MouseButtonEventHandler(lbl_MouseDoubleClick); And then we ...Show All
SQL Server Issue with the SUM function, Need Help
I need to add the SUM function or find a way in SRS to display certain members of my query (below) that have a combined total credit score of 5.0 or higher. For example, I run a report that shows a person's earned CEUs, if all of there CEUs total 5.0 or higher, I need to display there information. I have tried using SUM(CEUs) as Total but it just adds each CEU line twice. I need to get a total for each person's CEUs and then only display them if the number is above 5.0. Thank you, DECLARE @from datetime, @to datetime SET @from = CONVERT(varchar(11), @MinDate, 1) SET @to = CONVERT(varchar(11), @Maxdate, 1) SELECT EducationCreditHistory.ContactID, EducationCreditHistory.CourseID, contactbase.FirstName, contac ...Show All
Smart Device Development Could not connect to device
When iam debbuging my application somtimes frezes and i need to reboot the smpart phone. Is there anyway to avid it It seems like the program is beeing used, how to avoid this :) Error 1 Deployment and/or registration failed with error: 0x8973190e. Error writing file '%CSIDL_PROGRAM_FILES%\Pellets\sv\Pellets.resources.dll'. Error 0x80070020: The process cannot access the file because it is being used by another process. Device Connectivity Component You can kill the process from remote process explorer to free up the file. Next step would be to fix your application so it won't freeze. ...Show All
Visual C++ How do I run another application from an application using a button?
How do I run another application from an application using a button Is there a function in Visual C++ to do it Note that your question is actually two questions. How to do something when a button is clicked How to run another application All of that is outside the scope of this forum. See The scope of this forum . ...Show All
Visual Basic Problem generating interopform wrapper class in sub folder
When I try to put any interop form in sub folder. The "Generate InteropForm Wrapper Classes" always give me an error. Does anyone experience that Hi, Yes, a subfolder in solution explorer, it just a popup message "Error: generating InteropForm wrapper classes", I moved the form back to root of the project then it generate the classes without problem. Kelvin ...Show All
Visual Studio Express Editions Name is not declared
As my first useful program, i am coding a simple calculator. So far, I have the following code: 'When "Equals" is pressed Private Sub EqualsBTN_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles EqualsBTN.Click 'Getting the information from the input boxes Try Dim a As Integer = InputA.Text Catch MessageBox.Show( "Error. Either you did not enter data into the first textbox or it was not numerical" ) End Try Try Dim b As Integer = InputB.Text Catch MessageBox.Show( "Error. Either you did not enter data into the second textbox or it was not numerical" ) End Try Dim operation As String = FunctionSel.Text If operation = ...Show All
.NET Development Remote XML
I have to post to a XML file on a web it requires updating the name of the file and only adding three elements how can I do this 1st way: Load XML file to XmlDocument. Perform required changes. Save document to different XML file (to change name). 2nd way: Write XSLT transform that does all of this. (XslCompiledTransform class) ...Show All
Internet Explorer Development IE7.0 + .NET 2.0 + AJAX = Problems!!!
I installed IE7.0 and now my app’s AJAX control (accordion) and hidden panels are not coming up. Is this a potential bug Is my HTML outdated This is happening on my master page with the AJAX accordion control and on a content page as well. I am running XP SP2 on IE7.0.5730.11. Any suggestions would be greatly appreciated. -Tim FYI, We did an XP system restore back to last Friday (11-17-06), before I started having the problem you are now having. My Ajax now works as it did before with no problems. As soon as I brought my system back up though, a JAVA update notice came up. I think maybe the JAVA update coupled with the IE7 update messed up Ajax. Just thought you mi ...Show All
Visual Studio New item wizard
Hi I've made a new item wizard, and copied it to "\Microsoft Visual Studio 8\VC#\CSharpProjectItems\", and it works fine. But can I get it as a quick access "Add new item", like Windows Form, User Control, Component and Class ...Show All
.NET Development Sending digital signed mail with .net 2.0
I see the solution in this forum that works fine: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=943659&SiteID=1 That solution sign and encript a message. But I need only to sign a message whitout encription, to send a mail like with outlook with the follwing options: "Add digital signature to outgoing messages, and Send clear text signed message." Can anyone know the option to do this Thank you, Yes, you are rigth: The message is not encripted. But the the digital ID was sent encrypted (in the inbox of the outlook you see the blue lock for that message) I want to send a clear signed digital ID (in the inbox outlook of the outlook I want to see th ...Show All
SQL Server format issue
I've created a new calculate member in (SQL Server Business Intelligence Studio 2005) with the following format string: "#,#0.00". This measure is displayed like this: 22,250.22 Then I created a Measure in the Cube structure menue and used the same format string:"#,#0.00" and this measure is displayed like this:0,66 --> Comma and decimal point are changed in the display of the measures!!!! Can anyone help me with this I just like every measure to use a decimal point for the decimal place or the other way round. But I want every measure to be displayed in the same format! Thanks a lot! I don't know a workaround. We are just lucky that all users across the world accept a US locale, so we set the account of SSA ...Show All
