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

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

Bagles1

Member List

DavidThi808
yjacket2006
dtlinker
omasoud
Serdalis
Nick2006_Houston
Lohic Beneyzet-Jouy
Giedrius Banaitis
Damir Dobric
Bradrover
Waiman Li
SteveV1
Matt24
Cryton
Bruce Baker
Mitch Walker - MSFT
adorer
Skipping Rock
The-Mentor
Joymon
Only Title

Bagles1's Q&A profile

  • Visual Studio 2008 (Pre-release) Client and Service in the same code

    Hi, dears! I write the code for device which have both client and service in the same module ( just like p2p ) and I use datacontract like [ DataContract ] public class MyData { [ DataMember ] public string Data; } to send parameters from client to peer service ( the same do peer client for this sevice ) . When I produced proxy for client , the same Namespace.MyData class generated there, so compiler generated : error CS0101: The namespace 'xxxx' already contains a definition for 'MyData' Obviously I can't change namespace in proxy because in this case I receive empty MyData on peer Service. Is it possible to overcome the problem somehow to have client and service together talking to the same peer ...Show All

  • SQL Server Executing Stored Procedure with Variables

    I have a foreach loop in my SSIS script. I am able to successfully enumerate through an input query. I have a script task inside of my container. I would like to use this task to formulate a Stored Procedure and save this procedrue in a variable so I can use in a future Execute SQL task. Here is a copy of the code (Which Does Not Work) I am using in the script task to set the variables. Public Sub Main() Dim vars As Variables Dim DropVariable As String Dim CreateVariable As String Dim InsertVariable As String DropVariable = "Execute dbo.[sp_DropTable] '" + RTrim(Dts.Variables( "varTable" ).Value.ToString) + "'" CreateVariable = "Execute dbo.[sp_Custom ...Show All

  • Visual FoxPro Visual C++ runtime Library - Buffer overrun detected

    I have tried several times to conect to the Inernet by using Internet Explorer 7, but when I am trying there is the following message: Microsoft Visual C++ runtime librabry Buffer overrun detected Program c:\Program Files\Internent Explorer\IEXPLORE.EXE A buffer overrun has ben detected which has coruupted the program's internal state. The program cannot safely continue execution and must now be terminated. This start happening after I download the Internet Explorer 7. What can I do Thanks in advance, Janet A buffer overrun appears usually, when adding more information to a buffer than it was designed to hold. As I know this is a IE explorer security issue for IE6: http://www.mi ...Show All

  • Windows Forms Binding to toolstripComboBox does not work

    Hi, I am trying to bind data from a dataset to a toolStripComboBox just like a ComboBox. Like the following: this .toolStripComboBox1.ComboBox.DataSource = this .bindingSource; this .toolStripComboBox1.ComboBox.DisplayMember = "Sirname" ; When I do this with a normal combobox it works fine. With this one it does not. Any ideas what is going on Am I forgetting something Regards, Ruud Wijnands Having the combobox under a menu item seems to be the issue. If I move the combobox directly to the menustrip it works fine. If I place it under any of the items on the menustrip it does not work. ...Show All

  • Visual Studio Updating file status in solution explorer through SCC APIs

    We have implemented MS-SCC API 1.3 for our SCM tool. Our SCM tool also supports commands to perform check-in, checkout operations which also adds following scenario to be handled. 1. Open a project in VS05. Checkout a file and modify it. 2. Checkin that file by using command. 3. Status in VS05 won't get updated unless "Source Control->Refresh Status" is used. For this, we are executing a thread in background which checks latest status of files from SCM. But unable to send this updated information to back to IDE. When user selects "Source Control->Refresh Status" command, SccQueryInfo() function get called for selected files. But if compare the behavior of the VS2003 and VS2005, as per the MS-SCC API specificat ...Show All

  • Windows Live Developer Forums Reduce detail of the map tiles?

    Is there a way to say remove some of the extra detail at zoomed in levels ex: roads, city names etc. Think of VE as static tile images, there are 3 sets of tiles plus birdseye. So you can't remove text from these static images As Derek said you could produce your own tiles and layer them on the very plain aerial mode, but there is some work there. Is the issue that your data is lost with all the other labels John. ...Show All

  • Smart Device Development Upgrading from Beta 2 of VS 2005 to RC / RTM Version - What device device developers should know

    We were looking at some scenarios where as a device developer you had VS 2005 Beta 2 on your machines. Then you decided to un-install Beta 2 and install RC candiate. There are a few things you should be aware of. 1. If you had installed the DMA Transport Update , please make sure remove that before you un-install anything else to clean your machine. We are also in the process of adding removal of this Patch to the un-install tool that VS Setup team has been working on. 2. You would also need to clear your old data store and saved state. Here are some symptoms of having older files on your machine. 1. Error message as soon as the Device Emulator starts Failed to open the VPC Network Driver. Verify that the driver is insta ...Show All

  • Visual Studio resize ReportViewer control to Report's height

    Does anyone know how to dynamically resize the ReportViewer control to the height of its local report at runtime Sometimes the report is long and I would like the ReportViewer control to extend its height and sometimes the report is short and I would like the ReportViewer control to shorten. I am trying to get rid of the scrollbars on the side of the ReportViewer control while allowing the customer to see the entire report. Thanks, Assuming you are using the webforms control, if you set ReportViewer.AsyncRendering = false, this will cause the viewer to process the report as part of the aspx page and display it inline, instead of in a frame. If you also set ReportViewer.SizeToReportContent, the vie ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. )

    I have a series of 2D coordinates which I'm wanting to multiply by a 90 degree rotation matrix to calculate their new positions. The coordinates are values such as 0,0 -1,0 1,0 and 1,0. I've seen two constructs in the XNA framework which might help me but I have a couple of questions I'm hoping someone can help me with. I'm thinking the best way to do it is to store my coordinates in Vector objects such as Vector2 myVector = new Vector(0, 1); and then multiply them by a Matrix object which is a 90 degree rotation matrix. I believe the matrix for a 90 degree rotation to the right would look like this: 0, -1 1, 0 The problem is, the constructor for the Matrix object takes 16 arguments (for a 4D matrix) and I'm not sure how to convert the ab ...Show All

  • SQL Server MDX - VISUALTOTALS and PARALLELPERIOD

    Hello, I have a seemingly simple MDX statement that VISUALTOTALS fails on. I want to calculate a 'Last Year' measure using PARALLELPERIOD. I can create the measure OK and display it ON COLUMNS okay too. The problem comes if I wrap VISUALTOTALS around it to form the "all" member - it always give me a null for last year + all. Sample MDX is shown below. In the result set the column headed "All" + "CCMS Last Year" is always NULL despite the fact that the individual last year members have values. The column headed "All" + "CCMS This Year" has the correct value in it! --------------------------------------- WITH MEMBER [measures].[CCMS This Year] AS ([Measures].[Column Cms]), NON_EMPTY_BEHAVIOR= ...Show All

  • Microsoft ISV Community Center Forums VBA Userform Control of multiple userform controls

    I have built a data entry VBA application in Excel so we can input data electronically instead of manually on paper only. I created a series of Userforms to display one at a time to "walk thru" the test procedure and allow entry of the data for one section at a time. The problem I have is that I am trying to use the standard form controls "frmTest.Hide" or "Unload Me" when done with the forms. Then if I wish to redisplay one or more of the forms for re-entry use "Load frmTest" and/or just frmtest.Show if old form just hidden. I am seeing that the old forms are not hiding or unloading and worse when I try to redisplay with either the "Load frmTest" if previously unloaded and "frmTest.show" I get a VBA error that it cannot display ...Show All

  • Visual Studio Express Editions Access a DLL C++ 2005

    Hi guyz, it seems like im lost now, since, i ve been fighting with vc++ 2005 express for good few hours.... I have created a dll (MyDll) with C++ Expess and now i want to create and application using same C++Express that will be accessing the function MyDll in the earlier created dll file. I have tried many ways, even this link: http://goffconcepts.com/techarticles/development/cpp/calldll.html but no luck :( It seem to not work out for me, so if you guyz can tell me how to call dlls from c++ 2005 express application , i would be very gratefull. Or maybe sm1 knows some links where i can look up real examples of how to call dll's created in C++Express from C++Express console applications... many many thnks ...Show All

  • .NET Development why does the .NET Runtime Optimization Service keep trying to use the internet?

    about once a day the .NET Runtime Optimization Service tries to use the internet for some reason even though there are no .NET applications running. why does it keep doing this and is it okay for me to block it here is the packet information: File Version : 2.0.50727.42 (RTM.050727-4200) File Description : .NET Runtime Optimization Service (mscorsvw.exe) File Path : F:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\mscorsvw.exe Process ID : 0xF30 (Heximal) 3888 (Decimal) Connection origin : local initiated Protocol : TCP Local Address : 192.168.0.2 Local Port : 2344 Remote Name : crl.microsoft.com Remote Address : 131.107.115.28 Remote Port : 80 (HTTP - World Wide Web) Ethernet packet details: Ethernet II (Packet Leng ...Show All

  • Software Development for Windows Vista in the StateMachine use BaseWorkflow

    I use a empty StatemachineWorkflow as the baseworkflow . and the xoml-only to design the really workflow,and I want to know how can i invoke the function in the service running at the workflowruntime. ( Actually I have two problems can't resolve 1 when a define a state and in it ,I use the hee to catch the event ,and also I change the HEE's Invoke Property manually ,and there 's no error.but the invoke method what I defined in the baseworkflow always can't be invoke at debug .I want to know how can it work; 2 at the end of the HEE run ,I use the CallExternalMethod activity ,and how i can invoke the service 's method to call and with the paramers I'd recommend you start with a state machi ...Show All

  • Visual Studio Express Editions Newbie: Video tutorials and audio??

    Are the video tutorials narrated I have no audio, i don't know if its just me or that there is symply no narration or audio. Thanks. I would then guess that its your machine configuration rather than anything to do with the files on the server. ...Show All

©2008 Software Development Network