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

Software Development Network >> Bertrand Caillet's Q&A profile

Bertrand Caillet

Member List

BlackStallion
Shawn Carroll
nosajeel
kiwicoder2
pkv
Samuel369
Carlos Hdez
luigidor
NeedSomeAnswers
prestorm
csLearner
BoulderRidge
juergen.b
r3n
Loopsludge
James S Lapalme
igor_22
MA2005
XpyXt
Yen-Sheng Chang
Only Title

Bertrand Caillet's Q&A profile

  • Visual Studio breakpoints are disabled on a dll.

    Hi All, I am developing in c++ on visual 2005 My solution contains two projects: an executable and a dll. Sometimes ( like today :-(   ) breakpoints on the dll project are diabled and when I move the cursor to the breakpoint mark, I have the following message : " The breakpoint will not currently be hit. No symbols have been loaded for this document". Sometimes after rebuild or after I get a new version from the source safe it works but not today. Any Ideas   Thanks,             Udi. In the output window when you debug your application, do you see anything about your dll That the loaded path is incorrect or that no ...Show All

  • Visual Basic Container rectangle within custom control

    Hi All, Is it possible to define a containment area inside a container custom control within which any new controls that are placed will reside If this is possible, when a new control is placed against the left edge the containment area, would the .left property of the this control be 0 or the pixel offset from the left of the container control I am trying to create a control where the .left and .top properties of any inserted controls are relative to the containment area and not the container control itself. All the best. Thanks ReneeC, Any clues or suggestions how this could be done All the best. ...Show All

  • SQL Server Desperate on installing SP 1

    after we download sp1 and hit runj, we got "Unspecific Error Occur" popup window, with message:The following unexpected error occur:" then without any detail. here is the hotfix log: Please help 08/01/2006 14:33:51.967 ================================================================================ 08/01/2006 14:33:51.967 Hotfix package launched 08/01/2006 14:33:51.967 Successfully opened registry key: SOFTWARE\Microsoft\Windows\CurrentVersion 08/01/2006 14:33:51.967 Successfully read registry key: CommonFilesDir, string value = C:\Program Files (x86)\Common Files 08/01/2006 14:33:51.967 Successfully opened registry key: SOFTWARE\Microsoft\Windows\CurrentVersion 08/01/2006 14:33:51.967 Successfully read registry ke ...Show All

  • SQL Server Define Pre-Calculated AVG measures?

    It is possible in SQL Server Analysis to define Pre Calculated AVG measure Because If you are defining AVG measure for Calculated member then your report performance will down, so I need Pre Calculated AVG measure. let me know anybody know any solution Dinesh Patel You may want to read this: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=548837&SiteID=1 Also, I think you can get SSAS 2005 to cache results when using MDX scripts to define calculations. The following example for the use of CACHE function is listed on MSDN: Scope (Customers.Geography.USA); Sales = 1.1 * (Sales, Time.Year.PrevMember); Cache (Sales, Time.Year); End Scope; ...Show All

  • Visual C# How can I change the volume using C#?

    How can I change the volume using C# Thanks, I want to use a trackbar or buttons (up and down) using QuartzTypeLib(quartz.dll) IMediaPosition, but when ever I try to change the vol., Value is out of range. Is there another way to change the volume other than using the Master Volume Which volume do you want to change For the wav volume for instance take a look at this article on Pinvoking to call waveOutGetVolume() and waveOutSetVolume() . ...Show All

  • Visual Studio Team System TFS Trial Exp Date?

    We are currently evaluating the trial version of TFS that we downloaded from MSDN. Is there a way to see the date that the trial will expire I upgraded to TFS Trial edition from the RC build of TFS. The first entry in the install log is from the RC installation - and the creation date of the databases is the RC creation date. Do I have 180 days from the install of the RTM or the RC version ...Show All

  • Visual Studio Installed Sandcastle today and its out of date?

    BUILD FAILED: Your version of Sandcastle is out of date. Please download the latest version. I downloaded the 1.4.0.0 Production from the CodePlex site what might be wrong here> You need the December CTP of Sandcastle itself (it's produced by Microsoft, the help file builder is produced by me). See the Links to Resources section of the help file for where to download it. Note that the February CTP will be out soon too. Eric ...Show All

  • SQL Server ExceptionHandling in T-SQL?

    Hi all, Is there any concept of exception handling in T-SQL while writing Stored Procedures, plz. help me with this issue. I'm using SQL Server 2000 Hello Trid, No, there is no structural error handling in 2000 so to speak. There are several ways to perform error handling in 2000, with the most common being to test the value of @@ERROR for a non-zero value, then send control to a handler lable for rollback etc. if (@@error <> 0) goto error_handler return (0) error_handler: if (@@trancount > 0) rollback tran return (-1) Cheers Rob ...Show All

  • SQL Server Cumulative aggregation over time

    I want to do cumulative aggregation similar to "period to date", but not to a specific period in the past, but to the earliest record in the fact table. The problem is that I have 20 million accounts that I want to follow up on a daily basis, but they change rarely. After a year, perhaps half a million have changed. What I have done is to create a fact table that stores the balance when the account is opened, then only keeps track of the changes, so that when anyone deposits money a row is added with the increment. After a year that would give me about 20.5 million rows in the table. As an analyst I would like to enter a specific date, say 2005-08-20 and see the balance of all the accounts at that time. To do so, I simply need to ...Show All

  • Smart Device Development Porting full framework GDI+ custom button to Compact Framework

    Is it impossible to port a full framework custom button like http://www.codeproject.com/cs/miscctrl/RoundButton_csharp.asp to the Compact Framework My modified round cornered button uses GraphicsPath which doesn't seem to exist in the compact framework. Porting a full GDI+ custom control to the .NET Compact Framework is possible but may be (due to limitation in .NET CF) a non trivial task. In some cases it is easier to rewrite some parts instead of porting the code. The entire painting code usually falls into this category. XrossOne Studio has a library with GDI+ support for Windows Mobile. This might help porting your component. ...Show All

  • Visual Studio How to create a local report using business objects?

    I was trying to create a Local Report (.rdlc) using custom business object collection which implements ICollection and IListSource interfaces but none of the types or their public properties are appearing in the "Website Data Sources" window. To put it briefly here are my classes public class Item{ //contains some public properties of simple data types. } public class Items: ICollection, IListSource { //Item collection } public class ItemManager{ public Items getItems() { ... return items } } Is there a way I can make them appear in the data source window. Documentation at http://msdn2.microsoft.com/en-us/library/ms252094.aspx says that "To be accessible as a data source, the collection must support IEnum ...Show All

  • Visual J# Vj# control not working in IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519

    we are hosting vj# control in IE which is not working in particular version of IE 6.0.2900.2180.xpsp_sp2_gdr.050301-1519 which seems to be the latest and greatest version of IE which we upgraded by isntalling it through the windows updates (both high priority and optional updates ). please advise how to make it work in the latest version of IE. pleas advise, Here is the sample code. homepage.htm <HTML> <BODY> <IFRAME name="leftframe" src=" http://www.google.com " APPLICATION="yes"></IFRAME> <IFRAME name="webwindowsframe" src="Page1.htm" APPLICATION="yes"></IFRAME> </BODY> </HTML> page1.htm <HTML> <BODY&g ...Show All

  • SQL Server Stored Procedures Datasource

    Hi all, I'm trying to use a stored procedure as a data source for my SSRS 2005 report, but I keep getting the following error in the query designer: " The EXEC SQL construct or statement is not supported" Any ideas what the problem is here When you want to use a stored procedure as a datasource, you have to make the Query text equal to your sp name without any EXEC command or parameters. By changing the Command Type of the datasource to StoredProcedure SSRS knows how to handle the stored procedure. ...Show All

  • Visual Basic Updating SQL DB

    Hi, can anyone see why my code is not updating my database table Here is the code: Imports System.Data Imports System.Data.SqlClient Public Class DbConnect Dim objConnection As New SqlClient.SqlConnection( "Data Source=.\SQLExpress;Integrated Security=true;AttachDbFilename=|DataDirectory|\ImportFile.mdf;User Instance=true;" ) Dim objDataAdapter As New SqlDataAdapter() Dim objDataSet As New DataSet() Private Sub btnConnectDB_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnConnectDB.Click 'parse fixed width file Using Reader As New Microsoft.VisualBasic.FileIO.TextFieldParser( "\\netapp2\rs-common-d\AAA-MGM_990500024\Payr ...Show All

  • SQL Server SQL Agent Job to refresh Analysis Services Cubes

    This was a very easy task in SQL 2000, but I can't figure out how to create a job that will process AS cubes in 2005. Does anyone have a reference for how to set this sort of thing up in SQL 2005 Thank you Edward for your response. It was helpful in getting me to the information I needed. Now...I have another question. How can I included all of the dimensions for a particular AS database in the script I am not very familiar with XML, and have tried several ways to get this to work, but to no avail. Here is the script that I created, with the error that appears when I try to execute it: <Batch xmlns=" http://schemas.microsoft.com/analysisservices/2003/engine "> <Process xmlns: ...Show All

©2008 Software Development Network