Greg Shelton's Q&A profile
Visual Studio Team System Team Foundation Client for Visual Studio 2005 Professional
Hello! I installed Team Foundation Server 2005 Beta 3. Then I installed Team Foundation Client for Visual Studio 2005 Professional. And I can perfectly work with Team Explorer from VS 2005 Pro. What limitations will I have if I use VS 2005 Pro with Team Foundation Server 2005 Thank you. Vladimir. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=151798&SiteID=1 This post might help you. ...Show All
SQL Server Table Column Change causing errors in Cube
I've changed the column width a table one of my cube's dimensions is built upon. When the cube was originally created, the column was defined as char(2). I've increased its size to char(6). I've refreshed the .dsv view and it catches the changes. However, when I deploy the cube, it doesn't detect the change and processes correctly (without really doing anything). When I manually process the dimension, I get the process error: Errors in the back-end database access module. The size specified for a binding was too small, resulting in one or more column values being truncated. Errors in the OLAP storage engine: An error occurr ...Show All
.NET Development Raise / Trigger events programatically
How do I trigger an event in an object. I do not want to call the code in the event handler directly or multiple reason: 1) There may not be one 2) There may be a number of event handlers 3) My event handlers are private I want the equivalent of PerformClick but for any event. This was piece of cake in my last language but seems perversely difficuly here. It's probably a security issue, but it's hard to figure out why sending events is less secure than using Reflection methods. Is there any problem in the CLR environment with getting the object handle and using SendMessage Paul Cotter <Aside > In my last languag ...Show All
Visual C++ TIME CONVERSION BUG
// TimeConstructionBug.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include "ATLComTime.h" int _tmain( int argc, _TCHAR* argv[]) { COleDateTime a(2006, 12, 1, 17, 0, 0); SYSTEMTIME b; a.GetAsSystemTime(b); FILETIME c; ::SystemTimeToFileTime(&b, &c); COleDateTime d(c); CString startTime(a.Format()); CString endTime(d.Format()); printf( "StartTime %s, EndTime %s\n" , (LPCTSTR)startTime, (LPCTSTR)endTime); return 0; } I compiled the above C++ code (minimum to show the possible bug) using Visual Studio 2005 as ...Show All
SQL Server Authentication Problem x64
Win 2003 Server x64, .Net 2.0 x64 Reporting Services 2005. RS Database is a remote SQL 2005 on the same Domain in the same room. I can only get the report manager to authenticate local users; it will not authenticate Domain users. If I set up a local user and add a New Role Assignment all works OK. I have no problem adding a Domain user to a New Role Assignment, it allows this, but it will not authenticate the user. Adding the Domain user to the Windows Administrators group also has no effect. Am I missing something simple I doubt this has anything to do with the x64-ness of your HW. When ...Show All
Visual Studio Another victim
I'm having a bear of a time getting reports with subreports to function correctly. I have followed all of the directions for logonInfo updates. The original report running under v9 only has to have the first four parameters filled, from there 9 other linked parameters are supposed to be filled. I started with code that we have in production (v9). This code ran fine when running against the server that the report was designed against. But when compiled in CR .net 2005 the linked parameter values kept prompting. Then I tried to hack my way through that problem and set all of the parameters (13) instead of just the 4 we normally send. Stil ...Show All
.NET Development How do I reference a string in a XML file that's part of my C# project?
Hi, I'm working on doing all my strings like message, label, title... in a XML file that's part of my C# (VS 2005) project. I'm doing this for Localization(Globalization). Can someone tell me how I can refer to my string(the us-en one) in my XML file (like subsituting the string in a MessageBox.show. < xml version = " 1.0 " encoding = " utf-8 " > < trans-unit id = " m1 " > < source xml:lang = " en-us " > Error populating the children nodes of the selected node. </ source > < target xml:lang = " fr " > Translation of "Vous le vou coucher avec moi sesua " </ ...Show All
Visual C# gac'ing problem
Hi, I modified some changes in dll and then gac'ed it using gacutil, still i dont see the new changes. i commented wrote some code to eventviewer, still i dont see the new changes. i also dragged and dropped into c:\windows\assembly folder and tried adding it from the UI also, nothing seems to work. i am working in vpc, but that shuld not create any problem. any one have faced such problems, help me venkat. Yep i got the problem, it was biztalk process which was still holding the reference. when i stopped biztalk process and then started once again, it picked the new file venkat. ...Show All
Windows Forms Problem With TextDescription Field
Has anyone else been getting collision detection problems from having too much text in the text description field It seems when I use a large amount of text that the task will be inserted in sql server but when I check the tasks table in VS.NET's solution explorer the text description field will be empty. However, it's filled in sql server ...Show All
Visual Studio Express Editions Set pixel of a window
I'm trying to learn basic C++ so that I can make DLLs for use in another programming language. I've had some success, but got completley stuck when trying to set a pixel on a window. I thought this would be a very easy task, so maybe I'm missing something basic. Anyway, here's the entirety of the code I'm trying: (the window and hDC are already prepaired by the other language) #define STRICT #include <windows.h> #include <stdio.h> #include <wingdi.h> __declspec ( dllexport ) void WINAPI Dotty(HDC hDC){ ::SetPixelV(hDC, 100, 100, RGB(255,0,0)); } when I build it I get the message: 1>Test ...Show All
Windows Live Developer Forums DotMsn Connection Licensing
OK. I'm using DotMsn and C# to connect to MSN network, but 95% of the time, it fail. Currently, I am using the default setting provided DotMsn as my connection parameter -- client id: msmsgs@msnmsgr.com -- Client code: Q1P7W2E4J9R8U3S5 . I believe the connection failures have something to do with the licensing as the official documentation stated that: "Note that officially you must use an obtained license (client id and client code) from Microsoft in order to access the network legally" I wonders where can i register for a license to the network I thought I read a post that you should submit it to the http://www.worldsbe ...Show All
Windows Forms Hosted Web Site Login Manager
How can I create an encripted password after I have deployed FotoVision to my hosted web site ...Show All
Visual Basic compile questions, help needed
How to fix the errors. Thank you. F:\>vbc upload.vb Microsoft (R) Visual Basic .NET Compiler version 7.10.6001.4 for Microsoft (R) .NET Framework version 1.1.4322.2032 Copyright (C) Microsoft Corporation 1987-2002. All rights reserved. F:\upload.vb(5) : error BC30002: Type 'Scripting.FileSystemObject' is not define d. Dim fsoSaveFile As New Scripting.FileSystemObject ~~~~~~~~~~~~~~~~~~~~~~~~~~ F:\upload.vb(6) : error BC30002: Type 'Scripting.TextStream' is not defined. Dim tsSaveFile As Scripting.TextStream ~~~~~~~~~~~~~~~~~~~~ F:\upload.vb(8) : error BC30807: 'Let' and 'Set' assignment statements a ...Show All
.NET Development combine and manipulate multiple fields from DB record, into a new textbox???
hi dudes and dudettes (apologies this thread is repeated in vb expess forum - not getting any interest ) i'm just starting out with database stuff. i've got my databse table (using the descriptive method so the output appears in textboxes) and a binding navigator added to a form and i want to combine about four fields only from my current record into a new textbox to combine them with some autogenerated (by my ap) html tags. the idea with the app is to have the current record in the database in view on the left of my form with all fields on show. To my right of the form is a big multi-line textbox where i want the app to grab f ...Show All
Visual Studio Express Editions SystemParametersInfo
I know that I need to use the SystemParametersInfo API to get the desktop background but again I am having some problems. Can anyone point me in the right direction with this. I would greatly appreciate it. Here is what I have so far. Public Declare Function SystemParametersInfo Lib "user32" Alias "SystemParametersInfoA" ( ByVal uAction As Integer , ByVal uParam As Integer , ByRef lpvParam As String (), ByVal fuWinIni As Integer ) As Integer Dim oldWallpaper(255) As String SystemParametersInfo(SPI_GETDESKWALLPAPER, 0, oldWallpaper, 0) MsgBox(oldWallpaper) ...Show All
