furjaw's Q&A profile
Community Chat VS 2005 SP1 official release
The official SP1 release for Visual Studio 2005 is available. I've found the following download locations: - Team Suite, Professional and Standard edition - Team Foundation Server - Express editions The service pack for Windows Vista is delayed. A KB article with a list of all the documented bugs that got fixed is available here . I assume additional bug fixes and performance enhances were made that never produced a prior KB article. What makes you think that's the case I couldn't find that asserted in any of the MSFT web pages. It is a 431 MB download and a 6.2 GB disk space hit. I'd think most of us would want to be sure. Please post a link. ...Show All
SQL Server Dimension cannot have more than one hierarchy.Hierarchy must be specified explicitly.
Hi I am new to Analysis services 2005.I have a calculated measure.costval which has following: CREATE MEMBER CURRENTCUBE .[Measures].costval AS IIf ([Dim Date_Financial]. CurrentMember . Level . Name = "Date" , [Measures].[Cost Value], IIF ([Dim Date_Financial]. CurrentMember . Level . Name = "(All)" , ([Dim Date_Financial]. CurrentMember . lastChild ), IIf ([Dim Date_Financial]. CurrentMember . Level . Name = "Year" , ([Date].[Financial]. CurrentMember . lastChild ), IIf ([Dim Date_Financial]. CurrentMember . Level . Name = "FQuarter" , ([Dim Date_Financial]. CurrentMember . lastChild ), IIf ([Dim Date_Financial]. CurrentMember . Level . Name = &qu ...Show All
Microsoft ISV Community Center Forums 1004 - Application-Defined or Object-Defined Error - Help
I have an Excel workbook with 8 Sheets on it. On Sheet6 there are a number of named ranges. One of the ranges is: BreakTotal and the range is defined as: AuxTimesConv!$F$5:$F$100 where AuxTimeConv is the sheet name. On Sheet1 (Named: Formatting) there is a command button. Private Sub CommandButton1_Click() On Error GoTo 10 'Lets start with the Breaks Dim c As Range, r As Range Dim x As Integer Dim a As String Dim n As String x = 1 Set r = Range("BreakTotal") For Each c In r If c.Value = 0 Then Else a = c.Value n = Worksheets(Sheet6).Range("A" & c.Row) MsgBox n End If Next c 10 MsgBox Err.Description & Chr$(13) & Err.Source, ...Show All
SQL Server Persian Date
i want to insert persion date to sql database.Can any one helpme regards dhanya I can suggest you to use standart datetime string format [yyyy-mm-dd Thh:mm:ss:mmm (no spaces)] when inserting the value to the sql. When you read it back you may convert it to a format that you wish. Regards Zubeyir ...Show All
.NET Development Changes made to multiple tables
Hello all, This may sound rather silly (a newbie question...), but is there a way to have more than one table in a dataset, and to have the dataAdapter updated afterwards with changes that were made to all tables If not (as I believe would be the case), what is the easiest way to go about this Am I obliged to create a dataAdapter & dataset for each table if I wish to minimize the usage of dataAdapter.update dataAdapter.fill methods (initializing/filling the Dset & Dadapter upon Form load, then having a certain point to update, instead of updating with every click event and the likes..) Hope this was coherent enough , thanks for any answer.. Somehing like: string strSQL="select * from table1"; string strSQL2="s ...Show All
Visual Studio Express Editions Disabling the vertical scrollbar from a listbox
Any suggestions on how to would be greatly appreciated! spotty wrote: When you say disable the scrollbar - do you still want the control enabled but with no scrollbar. It would seem its standard windows behaviour to display a scrollbar if required (hence why would you want to disable it) Because I'm creating a new control to handle several other listboxes. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. how to define On Mouse Over eventin DirectX
I wish to create some onmouseover event function, can anyone tell me how to do it in DirectX, i've checked some example from DirectX tutotrial, the addbutton function got on mouse over event, but it's already preset in the library. If I want to set OnMouseOver event in my own code, what should I do. Thanks. I have this idea too, but i refer to the "Custom Format" from directx sample browser, the mouse position value got problem, because the mouse position (x, y) value is different everytime i run the program and move the cursor. ...Show All
Windows Live Developer Forums Commercial Use of MSN Live Maps
Hi, I have spent countless hours searching for a link which explains commercial use of MSN Live Maps and associated pricing, and have been unsuccessful. Could someone please direct me where I could find pricing for MSN Live Maps as I wam developing a mash-up and would like to utilise the MSN Live Maps for the project My greatest worry is that daily search/query limitations will undermine the mash-up, as the service is free. Therefore, I am willing to pay for the service which would guarantee service and reliability. Thank you. The Terms of Use outlines the rules of what you can do "for free". For licensing, please email maplic (at) microsoft (dot) com. Thanks, Caleb ...Show All
Visual C# cs 5001 No Main method suitable for entry point
I keep getting the following from code generated by VS2005: Documents\Visual Studio 2005\Projects\BegCSharpDb\Chapter2_Examples\Chapter2_Examples\obj\Debug\Chapter2_Examples.exe' does not contain a static 'Main' method suitable for an entry point Chapter2_Examples Please see the code below: using System; using System.Collections.Generic; using System.Windows.Forms; namespace Employees { static class Program { /// <summary> /// The main entry point for the application. /// </summary> [ STAThread ] static void Main() { Application .EnableVisualStyles(); Application .SetCompatibleTextRenderingDefault( false ); Application .Run( new Form1 ()); ...Show All
Visual Studio Tools for Office insert image
how to insert image into word application from resource file. thanks for reply "selection.InlineShapes.AddPicture" will required path of image file in string format . i can't give path. i wants to insert the image thorough resource file only . resource file will return " image " object while the above method required physical path of image. ican't save image at physical location. is there any possibility to insert image from a resource file ...Show All
Software Development for Windows Vista Breakpoint not being hit while debugging
Hi, I'm working on a POC using Workflow Engine. Its a sequential workflow. I'm instantiating the workflow on selection of a list box item. The problem is that, I'm unable to debug the workflow. I've put a breakpoint on one of the activities to debug through the code. The Breakpoint is not being hit by the debugger. Please help. If the workflow project is not the startup project then you will be able to set breakpoints in the code beside, but won't be able to set them on activities. You must follow the steps that Matt suggested to do what you want. When the workflow project starts the workflow debugger will be started and then the application pointed to in the workflow projects Startup Action will be started, in your case the ...Show All
SQL Server whether SSNS is the nicest solution for our app?
our situation: data warehouse,more than 2 GB and increase everyday our needs: we need to send email to clients everyday,the size is about 1 GB,and the send time is written in table according to clients' requirements Any advice Thanks Excuse me,i'm new in SSAS,below is my scenario I want to send mail automatically to cutomers if there are new data appear,and the send time will via the time which cutomers defined,all the data stored in multiple related tables Previous,I did that through creating a new table to store all new data which will be sended to customer,and perform send mail by Pl script how do you think about my idea TIA ...Show All
SQL Server Major performance hit in select statement once database reaches 50,000 records
I'm running SQL Server 2005 (64bit) Evaluation Edition. I'm doing an evaluation on performance for an internal project here at work. The machine has 2GB of RAM and is an AMD 64 running Windows XP 64 with SQL Server 2005 64 Eval The database has about 200,000 records in the person table. Select * from person is the statements "very simple" The results up to 49,000 are acceptable then at 50,000 it goes into a crawl and starts returniong 100 records every 2 seconds. Does anyone know what is going on here I assume you have a very good reason for sending tens of thousands of records back to a client... You may easily solve your problem by using something like a where clause. The number of records in a table lik ...Show All
Visual Studio Express Editions Help: How to create new project from old? or Source Control Tool?
I would like to create a new project from an existing one. For example, Test2 from Test1. Is there a way of changing all the names on the files and all the occurances of Test1 in the files Having this automated would be helpful, because I build in small steps, and so will use the process many times. I know I can copy the Test1 folder, subfolders, and files to a folder Test2, and the rename files. And I have an editor that will replace text in all files in all subfolders. But even that can be tedious. Perhaps a source control system might be helpful. Is there a free one that will marry with VS 2005 Express Urm, yes, you can't do it inside the IDE. No, AFAIK, you can definitely do it outside the IDE. If i ...Show All
.NET Development How to force a single line per data in a gridview ?
Hi all, I build a gridview from a Sql table. My gridview looks like : col1 data date 1 the text is displayed correctly 01/01/05 All is correct until I transform the data column into a template field : I'm not able to display the text data into a single line. So I've got this poor result : col1 data date 1 the text isn't displayed 01/01/05 correctly Doesnt' work event I setup a large value in the templatefield property / Width. Any idea thx I was having the same problem and setting the "ItemStyle - Wrap" property to "False" for the columns that I didn't want wrapped worked perfectly. ...Show All
