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

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

RONE162622

Member List

Tubarão
landre3567
rocco n
Will Ballard
Andrew Skalkin
Jonas Bystroem
rainersimon
Olav Tollefsen
Ludens
Marshes
Dpowers
Jeremy Wiebe
Bhaskar Reddy
Seemsimnotalone
shine46055
ClaudiaM
ahossain
DarthVic
Sean Huang
Stew2006
Only Title

RONE162622's Q&A profile

  • Visual Studio Tools for Office multiple windows again and again

    So,   I get this strange error once again. Please give some directions what is the cause of it and how it can be circumvented. I create Word project drag some bookmark controls from my data source and then I create an Actions pane with Binding navigator control in it. The Binding navigator controls is bound to the binding source of the bookmark controls in Word document. Just for the sake of concept proof I make my dataset to be Cached and public also. I build the project and close VS.NET IDE. Then I open the Word document from bin folder load the dataset from database, save the document and close MS Word. After that I stop the ...Show All

  • Visual Basic Change Font Style

    Hi, I am a beginner in VB.Net and want to ask a question. I hope somebidy can help me. I want to change the font style from a text in textbox by checking a checkbox. When checkbox Bold checked, the text in textbox change to Bold. When checkbox Italic checked, the text in textbox change to Italic. Etc, etc..... I have my code here: ---------------- If tbxTeks.Font.Bold Then tbxTeks.Font = New System.Drawing.Font(tbxTeks.Font, tbxTeks.Font.Style Xor FontStyle.Bold) Else tbxTeks.Font = New System.Drawing.Font(tbxTeks.Font, tbxTeks.Font.Style Or FontStyle.Bold) End If -------- ...Show All

  • Visual C# Connection property has not been initialized??

    I'm getting the following error when I click submit, does anyone know why this is happening System.InvalidOperationExceptio n: ExecuteNonQuery: Connection property has not been initialized. cmd.ExecuteNonQuery() is highlighted in the error message... protected void btnSubmit_Click( object sender, EventArgs e) { OleDbConnection DBConn; OleDbCommand cmd; DBConn = new OleDbConnection ( "provider=microsoft.jet.oledb.4.0 ;" + "Data Source= C:\\Documents and Settings\\Sarah Kelleher\\Desktop\\BIS4\\eTime \\App_Data\\time.mdb" ); DBConn.Open(); cmd = new OleDbCommand ( "INSE ...Show All

  • SQL Server Getting Error 1935 when trying to install SQLXML 3 SP3

    I have a Windows 2003 Server SP1. I have SQL 2000 Server SP4 running on it. I am trying to instal SQL XML 3 SP3 on this server. But the installation aborts midway giving an error.I got the following in the event log.  Product: SQLXML 3.0 SP3 -- Error 1935. An error occured during the installation of assembly component {303994BA-6487-47AE-AF1D-7AF6088EEBDB}. HRESULT: 0x80070002. assembly interface: IAssemblyCacheItem, function: Commit, assembly name: Microsoft.MSXML2,publicKeyToken="6bd6b9abf345378f",version="4.20.9818.0",type="win32",processorArchitecture="x86" Please help. Thanks in advance Rupesh Nair ...Show All

  • Visual Studio Team System 'Work Items' report is failing in VSTS beta3

    Hi there,      I have installed successfully VSTS beta3 server, few reports inabled but few of them are failing. Like 'Work Items' report is failing with error: 'An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'dsExitCriteriaParam'. (rsErrorExecutingCommand) For more information about this error navigate to the report server on the local server machine, or enable remote errors '   How do I fix it Thanks, Anu anu, please see this forum post, and see if the information there helps you: http://forums.microsoft.com/MSDN/ShowPost.aspx PostI ...Show All

  • Visual Studio mshelp:link does not work

    Hi, Recently I run XP Repair Pro 2006, the program that cleans up the registry. After that many features stopped working and MSDN is one of them. Now tags starting from <mshelp don’t work. For example all link that were created like <mshelp:link don’t work. They are displayed as links but when you click on them nothing happens. However there are no errors displayed. I looked for a solution on different forums, followed many suggestions but nothing helped. I tried to uninstall and install again MSDN and VS 2005, use IEFix, run ie.inf, install SP2 again (I have Windows XP SP2). I found similar descriptions concerning to VS ...Show All

  • SQL Server Web Application sample for Data Mining using Association Rules

    Does anybody have a sample web application similar to what you have done in the Live Samples in www.sqlserverdatamining.com for product recommendation using VB.NET and C# in VS.NET 2005 Beta 2 and June 2005 CTP of SQL Server 2005 This asp.netPro article on SQL Server Data Mining has an accompanying download with C# code for a similar product recommendation web app that uses Association Rules: http://www.aspnetpro.com/newsletterarticle/2004/10/asp200410ri_l/asp200410ri_l.asp (Note that the article was based on older build of SQL Server 2005 so you might have to make some minor changes to get it to work). ...Show All

  • Visual Studio Express Editions Can I use VB Express in the full version of Visual Studio 2005?

    Here's the situation. We purchased and are using a full version of SQL 2005 Server which of course includes Visual Studio 2005. I would like to test using some VB.NET and C# possiblities using the free express editions to see if we want to use the full versions. From what I have read, you have to uninstall all 2005 products related to SQL or Visual Studio before installing Visual Basic Express. Can I do this without hosing up my PC I just finished a reformat and don't have time for another one. Thanks. The final versions should be able to coexist, you have to remove beta versions of each product, tho ...Show All

  • Visual Studio ApplicationVersion property

    What is the intent of the ApplicationVersion property. It is mainly intended as a place holder for version information that can be consumed by a task which would then set the version of the assembly Simply setting the property does not seem to update the version of a DLL. I figured it out. It is used when you use the Publish feature in the IDE. You can specify the application version to be written out to the deployment manifest. It does not cause the assemblyInfo file to be updated or does not seem to be tied in any other way to the actual version of an assembly. ...Show All

  • Visual C# How to handle keypresses in a UserControl

    I have a program with alot of UserControls, I want all of those controls to react on keypresses and I want that code to be inside the control. Right now Im using this method but sometimes it doesn't register the klicks. I have to click several times before the control react, sometimes it doesn't work at all. To make it react on the enter-button it takes about 5sec bashing on the keyboard, other buttons "only" requires 4-5 klicks. protected override bool ProcessCmdKey(ref Message msg, Keys keyData) { if (keyData == Keys.Up) DoStuff(); return base.ProcessCmdKey(ref msg, keyData); } ...Show All

  • Visual Studio Team System Can't instrument project targets for ASP.NET performance session?

    I create a new ASP.NET performance session and point it at my web application directory (i.e. not using IIS). Now, I can sucessfully get performance data for the web site itself, but I cannot seem to get performance data for any other project assemblies I've configured for instrumentation. At first I noticed that it was instrumenting the project assemblies in their respective project \bin directory as opposed to my web site's \bin directory. Then I tried using target binaries and selected my assemblies directly from the web site's \bin dir, but that didn't help either (and also doesn't seem like the right thing to do). So... any clues ...Show All

  • .NET Development Remoting socket address problem

    Hello to all reading this post, I have one remoting application with server and client parts. It seems to work just fine until I attempt to restart the server. If client applications have accessed the remote object and I attempt to restart the server, the server stops successfully, but I receive the following error when it's trying to start up again: " Only one usage of each socket address (protocol/network address/port) is normally permitted ." I have to wait a good 5 minutes or so before it will let me use that port again. Is there some way in dotnet to force the port to be released so I can immediatly reuse it ...Show All

  • Windows Forms RichEdit Control and CTL + I Key combination

    I am having a problem with the .Net RichText control.  I am writing an application that relies heavily on the RichText control for user input in a form design app. When the user presses CTL + I, I need to set the font style to Italic. I wrote code to override the KeyPress function. It works, but a Tab Char is also inserted into the  ...Show All

  • SQL Server Is it possible to make Calculation-values persistent in a Cube !?

    Hello Is it possible to make Calculation-values persistent in a Cube ! I made an very intensive calculation based on historic data.  This resolves rather in a complex MDX-statement and becomes slow at retrieving time  I was wondering.... Is there a way to calculate the value at processing time (by MDX-expression) and store it in the cube I know there is a field 'MeasureExpression' but this field is not full MDX suitable ! Actually... Except for the aggregation-functions (sum, max, min, ...) I want to use a MDX-calculation-expression ! Yes indeed.... it's a very very interested article Many thx Michael. ...Show All

  • Windows Forms Conditionally deploy SQL Server Express

    Hi, The application I am building is designed to work in several configurations. 1.) The sql server 2005 database could be installed on a dedicated server and workstations containing the application connect to this instance. 2.) The sql server express database could be installed with the app on a workstation and other workstations could connect to that single database. 3.) A single user installation where the sql server express database and application are deployed to the one workstation. The setup project I am putting together asks the user whether they wish the installer to search for an existing database. a) If yes, the ...Show All

©2008 Software Development Network