Software Development Network Logo
  • Windows Vista
  • Visual C#
  • Visual FoxPro
  • Game Technologies
  • VS Team System
  • Architecture
  • Microsoft ISV
  • Windows Live
  • Smart Device
  • Windows Forms
  • Visual J#
  • Visual C++
  • .NET Development
  • SQL Server
  • Visual Basic

Software Development Network >> morning_cloud's Q&A profile

morning_cloud

Member List

bopamax
Rob Caldecott
Damon Tivel MSFT
FaheemKhan
henlylow
Acsellerate
PeterX
Andy9
rpreston
g.neeraj
DevEx Support
Andy Pope
Mark Dunning
New2Avalon
richee
zeecue
lukemack
XavierP
François-Régis Colin
lyre
Only Title

morning_cloud's Q&A profile

  • Visual Studio Express Editions BalloonTipText on NotifyIcon1 Hover over?

    I've been looking at how to use BalloonTipText, and I found this small section of code: NotifyIcon1.BalloonTipTitle = "Balloon Tip Title" NotifyIcon1.BalloonTipText = "Balloon Tip Text." NotifyIcon1.BalloonTipIcon = ToolTipIcon.Error That isn't working for me though, in the test app I made to try it out. I put it in the NotifyIcon1_Click event and nothing showed up. I'd really like to be able to display something when the user hovers over the notify icon too, and I couldn't find a hover over event. Also, can I use a variable for the text in the balloon tip Any help would be appreciated. ...Show All

  • .NET Development Error: Columns being marked Read Only and/or Unique during SqlDataAdapter.Fill()

    Columns marked Read Only and Unique during Fill -- why   My concern is described in the subject of this post and I have posted the related code snippets at the bottom of this post.   In short, my classes handle tables for which they have little schema knowledge -- nothing except a set of column names which may not include all columns in the table.   My classes read data from these tables, process data in named columns based on user-supplied rules, and store the data back to the source table or insert the data into one or more additional tables.   In cases where the rules dictate that my classes read fr ...Show All

  • Visual Basic Webbrowser Control - Handling pop-ups

    Hello there everyone. I've been dabbling with the WebBrowser control in VB6 and I am trying to control the popups. Below is the code that handles the NewWindow2 event (the event that is triggered before a new window is opened via javascript or other means): Private Sub WebBrowser1_NewWindow2(ppDisp As Object, Cancel As Boolean)     Dim Window1 As New CESSubWindower         Window1.WebBrowser1.RegisterAsBrowser = True     Set ppDisp = Window1.WebBrowser1.Object     Window1.Show End Sub This works fine as a start to keep the popups from opening in a new Internet Explo ...Show All

  • Visual Studio Tools for Office Problem using Chart Export with VB .NET on MS Office 2003 on XP

    For the last 2 days solid I have been chasing a problem. I've found it impossible to use the Chart Export facility in a Excel VB.NET from the Microsoft.Office.Interop.Excel references. The system is as follows:- VB.NET 2003 Version 7.1.3088 .NET Framework 1.1 Version 1.1.4322 SP1 Microsoft XP Pro, Version 2002 SP2. My cut down code to show the problem is as follows, and is called simply by clicking a button on a Form with nothing else on it:- Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim objexcel As Microsoft.office.interop.excel.Application Dim objchart ...Show All

  • SQL Server Strings, Splitting, and Numerics

    I am having problems splitting numeric values in Reporting Services 2005. I have a string such as “2, 3, 4, A”. When I run the following statement I receive an error: IIF(IsNumeric(Split(Fields!Numbers.Value, ", " )(3))= false , Int( Split(Fields!Numbers.Value, ", " )(2)) , Int(Split(Fields!Numers.Value, ", " )(3))) Structurally it looks sound, but the error handling behind the scenes flags it as an error. Does anyone else have this problem or know how to fix it Thanks for your help. Oops. Yeah that is just a typo. My bad, but the problem is the same e ...Show All

  • Visual Studio Team System Team Foundation Repair

    Hi Gang, I'm having issues with my Team Foundation Server Workgroup Edition install. It seems I must have entered in the Reporting Services domain account password in wrong, because I get logon failures when ever TFS tries to show me a report, and eventually the account becomes locked out. I went to Add/Remove Programs and attempted to run the repar/reinstall option for TFS, where I could re-enter the username and password. However, after I enter the new credentials and TFS tries to run the repair process, an error is thrown: Microsoft Visual Studio 2005 Team Foundation Server Setup Error 1309.Error reading from file: C ...Show All

  • Visual Studio Team System TFS Build: Building multiple solutions

    Hi everyone, when building all solutions in my team project the output from each solution ends up in the same directory in the drop location. Is there anyway to modify my TFSBuild.proj so that the output from each solution is dropped in a subdirectory in the drop location of the build type Any response will be much appreciated! :) Inside tfsbuild.proj -add the blue line after <DropLocation>_share_you specified_in_wizard_ </DropLocation> property inside <PropertyGroup> block <DropLocation> $(DropLocation)\$(BuildType) </DropLocation> ...Show All

  • Visual Studio Team System How to: Customize the build reports

    Hey there, I already know how to add lines in the build log file. But now I need to add information to the report that ends up on the project portal. I have read the SDK part about extending the Team Foundation Reporting Warehouse but I'm not sure this is what I'm looking for... Any pointers Thanks!!! If you want to add information that's already in the warehouse to the report, then you can just edit the report to include that. For example, if you want to add the number of bugs found in a build (and your Bug work item type uses the Found In Build field), then add the Cumulative Count measure, sliced by Found In.Build. I beli ...Show All

  • Visual Basic Newbie - Problem spawning a thread

    Hi, I'm kind a new to this VS .net stuff. I'm building my first application in VB.net. It's a crystal report scheduler using multithread functionality. The program works fine on my machine, but when I deploy it, the part that suppose to spawn the thread doesn't work. Other part of the program works fine, but when it's time to spawn the thread, nothing happen. Any body got any idea Any help is appreciated. Thank you, Rudy   AngRudy, is the app in question either on a network share or drive other than the system-drive What is the trust level of your application as set in the project properties ...Show All

  • SQL Server Fact table design

    Hello. I am working on an educational data warehouse. I have a semi-additive fact table that deals with student grades and averages. It's as such: School, Acad Year, Student, Course, Term, Week, Week Grade, Term Average where Week Grade and Term Average are the measures. The term average is an average calculated based on a specific formula on top of week grade. It's supposed to appear when the user is standing on All weeks member of Week's dimension. I have an average calculation problem in the term average...say i want to compare the student term averages. i don't know if its correct to write an mdx formula to get it or to cr ...Show All

  • SQL Server Shared Datasources that use dynamic DB connection strings

    Is it possible to create a shared datasource that uses a dynamic DB connection string I can't seem to get it to work. The db connection string is as such (server and DB names changed): ="Data Source=" & IIF(Hour(TimeValue(Today)) Mod 2, "FirstServer;Initial Catalog=exampleDB", "SecondServer;Initial Catalog=exampleDB") I can see why this wouldn't work as a shared datasource if I was using a report-specific parameter, but I'm just switching the server/DB based on the time. Anything special that I need to do to get this to work That's too bad... I have ~ 50 reports that need to switch between two serv ...Show All

  • Visual Studio Express Editions File Read/Saving Question.

    Is it possible to open a file and insert a string to the end of it without having to read the data then resave it all Yes My.Computer.Filesystem.WriteAllText(<FileName>,<Content>, <Append>) so My.Computer.Filesystem.WriteAllText("C:\test.txt", "xyz", True) will append xyz to the end of the contents of c:\test.txt ...Show All

  • Visual Studio Team System Messages Suppression

    Hello! At the moment we are trying to get rid of all the fxcop warnings in our project, but have three issues we can't resolve. 1. Is there any ways to specify all the message suppressions in one place (file) We need it because suppression attributes like this: [System.Diagnostics.CodeAnalysis. SuppressMessage ( "Microsoft.Security" , "CA2118:ReviewSuppressUnmanagedCodeSecurityUsage" )] make code complitely unreadable. We have option 'Create assembly level suppressions in:' in the project's properties but there is no information on how to use it. 2. In some cases we have to define enumerations in the following format: public ...Show All

  • SQL Server Duplicating/Copying Folder Structures

    I would like to copy a set of folders into a separate folder structure, while maintaining the original set. Is this possible via Report Manager or any other mechanism You may want to check out the RSScripter tool: http://www.sqldbatips.com/showarticle.asp ID=62 -- Robert ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. about material

    When no light ,we can't see the texture.have a point light ,we can see the texture .So the material how to set I am assuming you are using C# and Managed DirectX. You can set the Material as follows. First you need to actually setup a material... This example shows a white material. private Material material; material = new Material(); material.Diffuse = Color.White; And then finally setting the material to the device which means that all the objects being rendered will have the material applied to them unless you change it. Device.Material = material; I hope this helps. ...Show All

©2008 Software Development Network