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

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

Yenen

Member List

Nick Hanson
Jokon
Gita Shingala
Cetin Basoz
Kproject
Larb
Simon Hay
12power4is1 left over
sun.Xiang
MikeL2
Manish_Jain
Tukkkko
Selim Dizdar
SvenP
Ubersnug
sogod
amontania
Rick B.
Vicki
guykirs
Only Title

Yenen's Q&A profile

  • Visual Studio Team System Cannot resolve bug activated by a removed user

    We have a bug that was activated by a person who left the company and was removed from our security group/DL. The bug was reassigned to another dev who fixed the issue and is now trying to resolve the bug. But when he changes the state to resolve and tries to save it, he gets a message saying "the field Activated By contains a value that is not in the list of supported values". It seems that the Activated By field has the name of the old dev that is not in our users list anymore. Since the field is not visible/editable in the form we cannot change its value. How can we resolve this bug Update: It is not possible to save ...Show All

  • .NET Development XmlDataDocument and EncryptedXml Problem

    Hi there Gurus! Well, this is a new thing happening, and I believe it has not happened to anyone before because I did not find anything related to this problem on the web: I have this simple code. Dim Doc as XMLDataDocument Doc = New Xml.XmlDataDocument(Ds) Doc.PreserveWhitespace = True Doc.Load("file.xml")  'This file IS ALREADY ENCRYPTED Dim exml As New EncryptedXml(Doc) exml.AddKeyNameMapping( "some key" , tDESkey) exml.DecryptDocument() On this last line of code I get the following exception: "Cannot load XmlDataDocument if it already contains data" Can anyone see what is happening Any ...Show All

  • Windows Forms Question about GridView

    I add a GridView to a web page, then edit columns ... select a field and then convert field to TemplateField after that, I customize the field. In the EditItemTemplate I got a TextBox1 by default. I add some code to GridView1_RowCreated method TextBox textBox = (TextBox)e.Row.FindControl("TextBox1"); string clientID = textBox.ClientID; here clientID is "TextBox1" but it is not the id from the IE's view source ... I try to add some javascript to control the textbox's content, but can't get the correct clientid. Anyone can help Thanks Dear papadi, I know what you mean. the following code TextBox textBox = (Tex ...Show All

  • Visual Studio 2008 (Pre-release) can't generate proxy class

    Hi I tried to generate a proxy class for my application with SVCutil.exe in the sdkshell but i couldn. it displayed "svcutil.exe has encountered a problem and needs to close. We are sorry for the inconvenience" when i tried to debug using JIT debugger it throwed an Exception "Could not load file or assembly 'System.Runtime.Serialization, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' or one of its dependencies. The system cannot find the file specified." need help regardin this.... Thanks, Jithendrian.R Sounds like there may be an ...Show All

  • Visual Basic No text in MSGBOX

    The MSGBOX function presents a result that has no visible text in either the prompt or on the buttons. Is there some property that turns this off I wrote a simple test code and it fails on my machine by displaying a box without any visible text. It has just a button to force up a msgbox. Any suggestions Public Class Form1 Inherits System.Windows.Forms.Form # Region " Windows Form Designer generated code " Public Sub New () MyBase .New() 'This call is required by the Windows Form Designer. InitializeComponent() 'Add any initialization after the InitializeComponent() call End Sub 'Form overrides dispose to clean ...Show All

  • Visual C# DataGrid loading password protected Access DB

    Hello, I am trying to load a password protected Access 2003 database into a C# app and whenever I execute the application, it displays this exception: System.Data.OleDb.OleDbException: Not a valid password. In the developer (C# 2005 express edition) it is able to pull the column names and such. Everything works fine for a non-password protected DB. Where can I set the password to the DB in the app Thanks a lot! -freeskier89 Put the following line in your connection string Jet OLEDB:Database Password=<password>; where <password> is the actual password e.g. string connString = "Provider=Microso ...Show All

  • SQL Server Unique Integer IDs

    Hello, I wanted to hear from you - if you've used any unique integer generation technique in the context of a disconnected smart client/local data store and have been successful with it. Any ideas/suggestions will be great. Thanks, Avinash We are using unique integer ID generation for our document ISNs. It works perfectly. You just need a good distribution if you have any concurrent processes generating IDs. I can provide further details if you wish. ...Show All

  • Windows Live Developer Forums Worlds Best App Contest Winners

    It’s time to announce the winning applications for MSNR Messenger’s Worlds Best App Contest , which MSN ran from September through December 31 st , 2005. There were a lot of great entries, hard work and interesting new ideas for building new applications and games within Messenger. Submitted applications were judged based on the official rules and judging criteria which included creativity, launches during the contest, suitability for the medium and best use of other MSN services. The following identified winning applications still subject to verification and acceptance of their winning prizes : Grand Pri ...Show All

  • Visual Studio Express Editions How To Loop On Rows From A Database Table

    I want to loop on the rows from a database table, but I can't work out how to do it. So far, the code I have is: Dim sConnectionString As String _ = "User ID=myname;Password=myPassword;Initial Catalog=mydatabase;Data Source=123.22.44.35,1433" Dim objConn As New SqlConnection(sConnectionString) objConn.Open() Dim sSQL As String = "SELECT * FROM manufacturer_list" Dim objCmd As New SqlCommand(sSQL, objConn) So from there, how could I loop through each record Thanks. This is a good example. http://support.microsoft.com/default.aspx ...Show All

  • SQL Server HostName and ReinitializeSubscription

    Hello all, I'm having trouble with my Merge Replication setup in regards to changing the HostName property of the SqlCeReplication object. As we all know, if you modify the HostName value, you must then call the ReinitializeSubscription(true) method before calling Synchronize(). Unfortunately, this isn't working for me. Following this sequence of steps consistently results in error messages saying that I need to either call ReinitializeSubscription, or change my HostName back to it's original value. Has anyone ever experienced this problem Regards, Rob Tiffany Hey Rob, You are correct, once yo ...Show All

  • Visual C++ _CRT_SECURE_NO_DEPRECATE has no effect

    MSDN clearly states that if you define _CRT_SECURE_NO_DEPRECATE it "will disable deprecation warnings". I tried adding _CRT_SECURE_NO_DEPRECATE to the Preprocessor Definitions and #define _CRT_SECURE_NO_DEPRECATE to the code. In both cases I still get a C4996 warning from every single strcpy call. The only way to disable the warning, as far as I can tell, is to use #pragma warning (disable:4996) or add the warning to the C/C++ settings (Advanced > Disable Specific Warnings). But this will disable all deprecated warnings and I only want to disable insecure CRT warnings (str... functions). Is the MSDN documentation false or am I ...Show All

  • SQL Server More questions about data mining plug-in algorithms?

    Hi, all here, I am having a more considertaion about Data Mining plug-in algorithms. When we say we are going to embed a uesr plug-in algorithm, so what is the context for that I mean in which case then we thing we need to embed a user plug-in algortihm I know when we say we are going to embed a user costomermized plug-in algorithm, it means we want something more costomized. But what kind of customized features are generally concerned Is it independant for different market sectors I dont think we can just try to embed a plug-in algorithm then compete it with avaialble algorithms to see which one is with better prediction accuracy ...Show All

  • Windows Forms contextmenustrip - submenu image margin disbale

    I can see how to disable the image margin in a contextmenustrip: ContextMenuStrip1.ShowImageMargin = False but I can't see how to disable the image margin in a submenu!! Any ideas Thanks Seems like this was covered in: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=144369&SiteID=1 ...Show All

  • Windows Forms Object reference not set to an instance of an object.

    Hi Msgbox recieves the following error - lookslike it's set to an object : get An unhandled exception of type 'System.NullReferenceException' occurred in Test Form Focus.exe.  Additional information: Object reference not set to an instance of an object. Imports mshtml Imports System.Text Imports System.String Public Class Form1    Dim objdoc As New mshtml.HTMLDocument()        ...Show All

  • .NET Development problem with Properties window - pls help !!

    Hi im using Microsoft Visual Studio .NET 2003 Whenever i open a new project or while designing any other projects, click on Properties icon the framework windows gets disabled and the properties window does not open. I am only able to open it when the project is in Running mode If any of you have faced such problem kindly guide me through this. Thanks in advance minzi I don't see what this has to do with this "XML and the .NET framework" forum. Please try posting to Visual Studio General . ...Show All

©2008 Software Development Network