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

Software Development Network >> Ales Beranek's Q&A profile

Ales Beranek

Member List

me here
Kyle Pike
jlowery
Petruchio
Graham Kingdon
HsiaoI
TheHighKing
Freakie
Slacker
ph23ms
Svunsson
Tim Tidwell
marktait
JeffGilbert
AlG
Bob Keller Jr
Jeroen Boiten
M.Lipinski
idodo
noorafridi
Only Title

Ales Beranek's Q&A profile

  • Windows Forms Custom control cannot be moved in VS.NET designer

    Hi all, I developed a custom control derived from ScrollableControl. After I dragged my control onto a test Form, the control can be selected, but I cannot use mouse to move it around or resize it as I can with normal controls. However, If I used the property browser to change its Location or Size property, it takes effect. What is the possible cause of this problem Thanks in advance If your TestControl works fine, then I have no idea what is the real cause of the problem. In my case, however, when I removed the line base.AllowDrop = true, it solved the problem. And it's definitely not b ...Show All

  • .NET Development 64 bit XP for Turion

    I have a Msdn professional subscription, and just bought a computer with an AMD Turion. Apparently the pre-installed OS is 32bit XP. How can I check that Is XP64 and Developer Studio for 64bits part of the MSDN software bundle If I want to install a 64 bit XP, is this just on the XP DVD in the MSDN distribution, and the installer will find out that it is a Turion, or do I have to download it from somewhere thanks in advance, andreas One of my msdn disk has xp x64 pro on it. Before you install (no upgrade path) the 64 bit version of xp make sure you check for drivers. A ...Show All

  • Visual C# Access to path "path" is denied.

    Hello, I am writing an app that will sit on the desktop. It needs to be able to make a copy of a folder that sits on the server. It will copy the folder from the server and place it in the same directory on the same server. This is the line of code that I am using: System.IO.File.Copy(sDistinationFolder + "NewOrderTemplate", sDistinationFolder + myDate.Date + "_" + mtxtJobNumber.Text); So, as you can see, I am copying a folder called 'NewOrderTemplate' and the new copy will be called date_jobnumber. When I try to run this I always get a "Access to path "path" is denied." error. The root folder ...Show All

  • Visual Studio Team System Error using TFSAdminUtil

    Want to change local TFSService account to a domain account XY\TFSService. When I start the TFSAdminUtil with changeaccount I get the following messages: Status: Update database account on database server: ABSERVER. Error: Update service account on database server: ABSERVER failed: Incorrect syntax near 'sp_changedbowner' .. Any idea what might be wrong Thanks Hans-Peter Okay- still no idea what happened - some settings have already been updated - some not. So we tried to to all that stuff manually (as described in "How to: Assign a New Account to a Team Foundation Server Service". Now we f ...Show All

  • Smart Device Development Custom Controls

    I have not found much documentation on creating designers for VS2005 CF2.0. For example to create a property like: ImageList of the treeview control AND to get the parent of a component (i.e. those residing in the tray). Anyone could suggest a good boook Evan You might want to check out this webcast as well as the demos here http://blogs.msdn.com/xinyan/archive/2005/11/10/491420.aspx Or this talk and the demos here http://blogs.msdn.com/parthopdas/archive/2006/04/12/575007.aspx There is a really nice article on designtime experience for custom controls at http://symbian.sys-con.com/read/113332.htm ...Show All

  • Visual Studio Team System How would we go about converting an agile project to a CMMI project

    How would we convert a project from an agile method to a CMMI project without losing all of our work items Amy, Is there any downfall using your approach versus the approach stated in the previous reply from Martin Woodward. We are fairly new in our use of TFS and began with Agile about a month ago. We have about 500 work items, many of them completed or closed. We are not concerned yet at this point in losing history since our development team just began using Tasks and Bugs last week after our migration from VSS to TFS Source Control. CMMI definitely suits our process better than Agile so we are going to migrate no matter what, bu ...Show All

  • Windows Forms Open Forms Dynamically?

    I have a VB.net app that In the future will have additional forms added to it. I dont want the calling of the forms to be hard coded with the form name, I want it to be dymanic so one procedure will open all of the forms that I have now and will have in the future. This is what I have now. This code does NOT support t ...Show All

  • Visual Studio Express Editions Help Authoring

    Will Express accept a chm help file If not what type of help file does Express require and is there a converter from chm to Thanks shakalama, Here is the url.. http://helpware.net/mshelp2/demo2/h1xNET.htm I have tried it with Help & Manual help files and it works fine. ...Show All

  • Windows Forms datagridview dispose

    Hello I've a form with a datagridview connected to a bindingsource on a table. I open it with Showdialog. On the CellMouseDoubleClick event I want to select and close the form so I write this .DialogResult = DialogResult .OK; But I've an error in the DataGridView.Dispose method : "Object reference not set to an instance of an object." on the : base .Dispose(disposing); because my datagridview is based on a DataGridView If I click on the grid to select the row and then click on the Valide button : it's ok If I use the CellMouseClick event : there's an error.   Can you help me. Thank's I response ...Show All

  • Visual C++ Edit control create failed

    After my application run some time,It failed to show dialog or formview that contain Edit contorl ,when I try to dynamicly create edit control ,It fails too. at this time the imagelist contain icon is also failed load. when edit control create fail ,I found that CWnd::DefWindowProc process WM_NCCreate message ,return 0 and GetLastErrro return 0x00000008 ERROR_NOT_ENOUGH_MEMORY,So createwindow return NULL. But I feel odd is that I still can new CEdit then call it's Create method at this time, why wndProc tell ERROR_NOT_ENOUGH_MEMORY. Isn't memory virtually unlimited under win2000 I feel some resouce leak. but anyone can tell me wha ...Show All

  • Visual Studio Express Editions Webbrowser printer settings

    Is there a way to modify the printer settings when using the webbrowser.print() method I want to set these option without the user seeing the print setup dialog. I've tried all of the various registry "hacks" but they have never fully work correctly. I've been searching for a complete solution to this problem since 2001 and it seems like printing an html document with programatic control over the settings is impossible Wow. Im not sure I understand why microsoft would not give us the ability to print html in landscape mode to ...Show All

  • SQL Server Will update/delete trigger fired by cascade update/delete?

    Will update/delete trigger in a foreign-key table be fired by cascade update/delete If there're multiple rows being cascade updated/deleted in the foreign-key table, how many times the update/delete trigger be fired Only once or per each affected rows Hi. Yes, the Update/delete trigger will be fired on cascaded update/delete. And any trigger is fired only once per action "update"/"delete" or "insert", not per each affected record. The only limitation is on the type of the trigger :AFTER triggers have no restrictions on cascading references , where "INSTEAD OF" t ...Show All

  • Visual Studio Express Editions 'NullReferenceException' with blank picture boxes

    Whenever a picture box is blank (contains no image) and it is used in an If statement, it comes up with a NullReferenceException error. How can this be resolved Example 1 : Checks to see if the picture box is blank: For temp = 1 To 116 If Form1.Pile(temp).Image.Equals(Form1.Blank.Image) Then 'Form1.Blank is a picture box with no image. If Form1.Pile(temp) is blank , then the error pops up GoTo 200 End If Next temp How can I check to see if the picturebox specified is blank Example 2 : Picture box may or may not be blank, and it is checked to see if its image is the same as another one: If ...Show All

  • .NET Development Setting up a central folder for DLLs that all my sites can use

      Im trying to create a number of DLL's in .Net. I want them to be accessible by a number of different web apps, and I want the DLL's stored in one single folder. When I update the DLL's all of the apps should automaticlly see the changes without me having to rebuild each of the apps. I currently have this setup with ASP, VB6 dlls and Component Services, but I cant seem to get it working in .Net. I create the DLL, place it in the folder, and the web apps take a copy of it into the bin directory, meaning that when I update the DLL in the main folder, the apps will still use the copy in the bin folder. How do I get around this and force t ...Show All

  • Windows Forms Problems binding to a run time created control

    I am having many issue trying to bind a many-to-many relational table built in Access. I did NOT build this database, just trying to update some webpages to VS2005 using the existing database. The first part of the page is binding to a particular order, this order has many rows, within these rows are accessories rows for thos rows. Quite complicated but the only way I think I can explain it. The order, the order row, and the accessories are all different tables. The order is displayed based on the SO number which is the primary key, the order row is linked to the order table by the SO number key, the order row's primary key is RowNo, each SO ...Show All

©2008 Software Development Network