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

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

francois974

Member List

virtually
JUAN LUIS GUERRERO
Bart Simpson
PinkDragon
EthanA
jpjljr77
Moojjoo
rbaxter
The Developer-X
vs2003team
DaveWadd
Senthil84
JKP
BryanF
Alex Ivanoff
YOUR-Mark
Havan
Rod Fraga
DW5000
Shash
Only Title

francois974's Q&A profile

  • Visual Studio Tools for Office OPENING A TEMPLATE IN WORD 97

    Whenever I open a template in Word 97 I get the error message " run-time error 424 object required" I then have the option to "debug" but all I get is another window with the words "MyShow" highlighted in yellow. How to I stop this error message from re-appearing Hi Peter, I have re-posted this question in http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.word.docmanagement&lang=en&cr=US Thanks and regards, Darryn Lavery [MSFT] ...Show All

  • SQL Server Identifying Processing Counts

    Is it possible to determine the size of a cube using AMO I would like to know how many rows were processed after a process command, and how much data is stored within the cube. ...Show All

  • SQL Server Uninstalling a SQL instance programmatically

    Hi, Currently we deploy SQL Server Express as a part of our installation, and we create our own instance by setting up appropriate parameters. ie. SQLEXPR.EXE /qb ADDLOCAL=ALL INSTANCENAME="MyInstance" Can anyone please give some advice as to how we would uninstall this instance when the user uninstalls our application. The following link explains how to do it via the Add/Remove Programs: http://msdn2.microsoft.com/en-us/library/ms143412.aspx And the following link explains how to do it manually: http://support.microsoft.com/default.aspx scid=kb;en-us;290991&sd=tech But we'd like to remove it programmatically when the user uninstalls o ...Show All

  • Visual C++ thread exit code

    hi, everyone, i have wrote some simple programs in c language, here is my code list: /* code list 1: */ #include <stdio.h> void main() { } the compiler tell me: The thread 0x3B0 has exited with code -858993460 (0xCCCCCCCC) /* code list 2: */ #include <stdio.h> void main() { printf("hello world"); } #include <stdio.h> void main() { printf("hello world"); } the compiler tell me: The thread 0x6A0 has exited with code 11 (0xB). the programs are very simple bcoz i know that thread exit code is zero which indicate that thread exit successfully, but why the two threads ...Show All

  • Visual C++ Type casting question

    I need to convert one legacy C++ type to .NET type.I would like to know which is the preferred one.I am writing code in managed C++. int a; 1)System::Int32 i = (System::Int32)a; 2)System::Int32 i = Convert::ToInt32(a); Thanks in advance Jimmy Martin, This actually confused me.This syntax looks like legacy C++ casting.Is this preferred in C++.NET What is your reason for using the same ...Show All

  • SQL Server Aggregate MDX [Time Series].[Period to Prior]?

    How to Aggregate period-to-period ratios based on recursive hierarchy through grouping the MDX query result is a flattened rowset! ...Show All

  • Visual Studio Using DTE to call a "New Web Form - Select Master Page" wizard

    Hello, Is it possible to call a specific wizard using DTE, in my case I'd like to open the "New Web Form" wizard using the "Select Master Page" option... I checked in ItemOperations and in ProjectItems, but didn't find anything. Hi Renaud, The best way to do this would be to use the VSWebSite.AddFromTemplate function. From a simple VB based addin, I was able to add a new .master page with a VB codebehind file using the following: ...Show All

  • Visual Studio Team System Work Items and MS Project Summary Tasks

    Hi, I noticed that the latest TFS made some changes to the Task workitem type added in a new field called "Task Context" which seems to be storing the MS project task hierarchy. This seems to be half working in that if I create a new MS Project file, import all work items in, modify the hierarchy (i.e indent tasks) and then publish the changes back to TFS, when I look in visual studio at one of the modified work items the "Task Context" field contains a string that looks something like "Task 1\Task 2". However, I then created a new team project, populated the "Task Context" field of the default work items that get created, ope ...Show All

  • Visual Basic asp connection to godaddy mysql database

    I'm trying to connect via asp to a godaddy mysql database on their server. I've created the database and added a users table. I have an opensource intranet (UAPortal) that is really plug&play, it comes with an Access database attached, so you just load it on your server and go. But I want to use it with the faster, more capable mysql server that comes with godaddy hosting. I have the connection strings given by godaddy, but when I try to incorporate that info into the common.asp file, I get this: Microsoft OLE DB Provider for ODBC Drivers error '80004005' [MySQL][ODBC 3.51 Driver]Can't connect to MySQL server on 'localhost' (1006 ...Show All

  • Visual C# Using dll's in C#, convert this Tiny bit of vb6 code into C# [Beginner]

    Someone made a dll [AresHash.dll] in VC++ & I want to use it in C#. He included the Visual Basic6 code for using the dll and it works well.. but now for me its C# and im new to using dll's here..... Here is the VB Code Private Type hash_channel     externalIP As Long     internalIP As Long     port As Integer     roomName As String     topic As String     VB As Boolean End Type         Private Declare Function Decode Lib "AresHash.dll" (ByVal hash As String, ByRef hc As hash_channel) As Boolean Private Sub Test() ...Show All

  • Software Development for Windows Vista Windows SDK installation

    I have installed Windows Runtime Components 3.0 -Beta 2. Also VS-2005. But while installing Windows SDK ( after mounting it to virtual drive) , I get following error message "Windows SDK could not be configured, see the 'Installing the SDK' section of the Samples\Setup\HTML\ConfigDetails.htm document for more information. In order to create samples or use tools that depend on WinFXR, the correct version of the WinFX Runtime Components must be installed. Please consult the Windows SDK readme for details. " Please help me out of this problem as I am really screwed up. Hi Jason, I found something strange wh ...Show All

  • SQL Server Updating a record from table with data from a column of another record from the same table

    Hey guys, I have a table say as follows id, id2, field1, field2, date1, date2 I want to update the date1 field to the date2 field of the very next record with the same id2. In short I want to update a record id(x) by putting in the date2 field if id(y) in the date1 of id(x) where id2(x) = id2(y) and id(y) > id(x) (as id is a sequence). I have written a query as below: update t_remarks te set out_date = (select TOP 1 date_remark_entered from t_remarks ta where ta.record_id = te.record_id and ta.remark_id > te.remark_id order by ta.remark_id) the above query throws an error: Line 1: Incorrect syntax near 'te'. Incorrect syntax near t ...Show All

  • Visual Studio Team System Still not getting alerts

    I am using Beta 3 TFS, and still can not get the Alerts to work. We have an Exchange Server that uses Windows Authetication.  I have confirmed that the smtp server is declared in the web.config file. I have signed up for alerts under the Team Project. I have even changed the 'eSwitch' value to 3 as I have seen mentioned in other older posts in order to generate a log file. I do not get any emails from the system, and also do not see any kind of log file that might hold the key to the problem.  Where is this log file located Thanks --MikeH To turn on tracing for Beta 3, look for the "General" swit ...Show All

  • Windows Forms StreamWriter bool error

    I found a way around this, but still, I don't understand the error. FileStream fs = new FileStream("words.txt", FileMode.Open, FileAccess.Write, FileShare.None); StreamWriter sw = new StreamWriter(fs, false ); //Error Above on false - Argument '2': cannot convert from 'bool' to 'System.Text.Encoding' Now, when the ( is first added, the help box appears and the list says the second is a bool, but, if you scroll through options 1 - 7, they change a bit. All I needed was to overwrite what ever was in the text file, so, I did it like below and it worked. But, the above error I am not understanding why. Str ...Show All

  • Software Development for Windows Vista Please, Help!

    I am about to loose the ability to Windows WorkFlow because a simple problem I cannot seem to figure out and knowbody can seem to answer. Its simple, how do I get the service objects right after a workflow is coming back from being persisted mardo Have you tried the WorkflowLoaded event Add the following where you create the workflow runtime: workflowRuntime.WorkflowLoaded += new EventHandler < WorkflowEventArgs >(workflowRuntime_WorkflowLoaded); Below is an example of how to get the Sql persistence service in the handler: static void workflowRuntime_WorkflowLoaded( object sender, WorkflowEventArgs e ...Show All

©2008 Software Development Network