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

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

Nickus

Member List

Back2Escape
Kent Boogaart
LouArnold
Tom Frey
sam-pan
Gazuga
jmcilhinney
MichaelEaton
Danny Tuppeny
Nidonocu
Daniel Ratcliffe
Robert F Bouillon
GMS0012
hellomahesh
Abongs
Alex2200
pmanisekaran
PedroCGD
DavidLong
chazparks
Only Title

Nickus's Q&A profile

  • Visual Studio Team System URL to view the workitems

    how can i view the work items like testcases, bugs in the browser. can somebody send me the url to view that. thnx Also if you open the work item, and right-click on the work item tab, there's an option called "Copy Full Path". This will copy the URL of that WI (with the same notation that Swamy indicated above) into your clipboard. Thanks, ...Show All

  • .NET Development How to unregister a COM wrapped .NET assembly?

    Hi All, I created a COM exposed .NET 2.0 dll and registered with my Windows 2000 operating system using 'regasm' and 'gacutil' Then I tried to call this component from my classic ASP page. It worked fine. But, I need to change the functionality of my assembly. I unregistered it again using  'regasm' and 'gacutil'  utilities and copied my new .NET DLL and registered again.  But for some reason, i still have a pointer to my old assembly and new calls to the DLL from ASP page are not working. Any Ideas   I appreciate any help. Thanks     A common issue is that people don't explicitly assemblyversion. Then what happens is that every build produces a differ ...Show All

  • Visual Studio Express Editions Capital

    How can i made my program underdstand that the next char must be a capital if the last char was a . . you could use a keypress event for your textbox and check what the text is already in the textbox and if the last char is a . then if the current key being pressed is a capital letter then accept it otherwise leave it. Small example:   ..KeyPress event if Me.theTextBox.Length > 0 then    if Me.theTextBox.Text(Me.theTextBox.Text.Length) = "." then       if e.KeyChar.ToString().Equals(e.KeyChar.ToString().ToUpper()) = false then          e.Handled = true       end if    end i ...Show All

  • Visual Basic How to restrict user to tab (no mouse) selection

    Hello, There are 9 numerical TextBox plus other TextBox fields on a DataEntry Tabpage. How to restict the user ability to MouseClick in one of these numerical fields The reason - to eliminate repeating if statements (which writes 0.0 s in the fields), in the case the user MouseClick into one of these numerical field but fails to enter any numbers. As it is now, data entry are into the numerical fields are limited to NumberKeys and initially the DateEntry Tabpage numerical TextBoxes are loaded with 0.0 by the Data>DataBinding>Advanced setting. Greetings, Thanks, Could you please have a look at the question "Database save and restore". It was posted a time ago. Got no answer, but it seems that lo ...Show All

  • Visual Studio 2008 (Pre-release) PNRP service under Vista Ultimate version is very instable !!

    PNRP service under Vista Ultimate(RTM) version is very instable !! I'm on a project about WCF P2P. Under Windows XP(PNRP V2) everything fine. But under Vista Ultimate (RTM), I have to always restart PNRP service manually after some P2P testing. Anybody knows why Hi Hailong, Sorry to hear you are running into problems. Could you please elaborate on why you need to restart the service What kind of environment (internet vs lan; single machine vs multi-machine) are you testing on As far as I've tested and worked with PNRP on Vista, I've never run into issues where I've crashed and have had to restart the PNRP service and am curious to know more about the issue you are seeing. Th ...Show All

  • SQL Server Restoring a service or DB master key

    Can I restore a service master key or database master key that was created in SQL 2005 CTP to SQL 2005 RTM ...Show All

  • Software Development for Windows Vista remote debugging in Vista

    I'm trying to remote debug a simple application compiled with VS2005. The dev machine is running VS2005 pro, and the vista box has the remote debug tools installed. I turned off the vista machine's firewall so that would not be an issue. I started the debugger with: "C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\Remote Debugger\x86\msvsmon.exe" /timeout:99999 /noauth /anyuser /port:23 I'm running XP on the dev box (source), logged into one domain, and the vista box is logged into a different domain. I turned off authentication in msvcmon because of this. I also tried using the "run as administrator" with msvcmon, to no avail. The debugger connects (I get a "user connnected" message in msvcmo ...Show All

  • Windows Forms Text Editor

    Hi I was looking for run time Text Editors where the user can add comboboxes or the user can click on a text and it should open up windows form. I would appreciate your help if you can suggest me some text-editors like that. ...Show All

  • Windows Forms PAY PAL CODING....

    hi all, I wants to know the asp.net 1.0 coding for pay pal system. any code..... Check out the paypal sdk ...Show All

  • Visual Studio Express Editions Access table creation conundrum in VB2005E

    Hello, An Access database was created and opened in VB. This database has no tables. Never had. Hoped that will be the same procedure to create a table as is with an sql database i.e. right click on Tables>Define Table. The database.mdf icon is there but only Query is possible, unfortunately there is nothing to query, because the table was not defined yet. ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Private Sub btnCreateTable_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles btnCreateTable.Click Dim conADO As ADODB.ConnectionClass = New ADODB.ConnectionCla ...Show All

  • Windows Forms ListView Column Widths Question

    Hi folks, I'd like to retrieve the current width of a column in a ListView, except I'm having troubles figuring out how to get the column I want to work with. My WinForm is using C/C++ - advice -Zero Hi nobugz, When I use the proper syntax (as you pointed out above), I receive the following compiler errors: error C2845: '[' : cannot perform pointer arithmetic on __gc pointer 'System::Windows::Forms::ListView::ColumnHeaderCollection __gc *' error C2227: left of '->Width' must point to class/struct/union The line of code now looks like: int iWidth = listViewLogWindow->Columns[0]->Width; -Zero ...Show All

  • Windows Forms An Item with the same key has already been added

    I have this fault when trying to add New Data Source, As I can solve it Help me. An error ocurred while retrieving the information from database. An Item with the same key has already been added Initially it worked, and not in which moment I let work My database is Mysql and working. ...Show All

  • Visual C++ Unresolved external symbol when using __inline in implementation file

    Hi, I am new to C++. Could somebody please explain why when I include __inline in the implementation file, some functions caused "Unresolved external symbol" error but not all. XCString.h ========================== class XCString { private: LPWSTR Buf; // Buffer. int Len; // Length; public: WCHAR operator[](int loc); // Operator [] overloading. XCString& operator=(LPWSTR str); // Operator = overloading. XCString.cpp ======================== __inline WCHAR XCString::operator[](int loc) <- ERROR { return Buf[loc]; } __inline XCString& XCString::operator=(LPWSTR str) <- No problem { delete[] Buf; Buf = new WCHAR[(Len = wcslen(str)) + 1]; wcscpy(Buf, str); return *this; } ...Show All

  • Visual Studio Tools for Office Excel Edit Delete Disabled

    I created an Excel Workbook project using Visual Studio and VSTO. This project uses the ListObject control bound to a DataTable to display and update data in SQL Server 2000 database. When deployed to the user's workstation, this application has an annoying habit of disabling the Delete item on the Edit menu, preventing the user from deleting columns, rows or cells. Actually this is more than annoying - it's a show stopper. Researching the problem online produced very little in the way of amswers. Are other people seeing this behavior I did find a reference in this forum article: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=309265&SiteID=1 which suggests deleting Application Data\Microsoft\Excel\Excel11.xlb. Thi ...Show All

  • Software Development for Windows Vista The method "GetWorkflowDefinition" needs an instance which will be persisted

    Hello, Let me explain the situation: I would like to retrieve the workflow definition of my workflow. I thought that I could use the method "GetWorkflowDefinition". But that method needs to called on a workflow instance. So I need to make sure I have a WorkflowInstance object. Because it is possible that there are no running workflow instances, I am using the function "CreateWorkflow" of the WorkflowRuntime to create a "dummy" workflow instance on which I can call the method "GetWorkflowDefinition". The problem is that those "dummy" workflow instances are also persisted to the database, even when I did not start them! How can I prevent those workflow instances from being persisted ...Show All

©2008 Software Development Network