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

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

John_Abbott

Member List

Vijay TS
neoret
MjkSoft
wael78
SamC
Dmitrit
gleblanc
Gkeramidas
naveen.jaikumar
Roinka
Pan-Wei Ng
Koobor
Peer Larsen
RajanikanthM
Joshna
David Wong Chien Shiung
Yogi Verite
HehePoo
Patience404
TomEire
Only Title

John_Abbott's Q&A profile

  • .NET Development SqlDataSource/DataField Bug in 2.0 ?

    I've come across an odd situation. If someone has a table where a column name contains a space, and you generate a SqlDataSource on that column, some interesting things happen if you try to bind them. When I tried to bind, (in a GridView), the column name First Name via DataField="[First Name]", it gave a runtime error stating that [First Name] cannot be found in the sqlDataSource. Oddly enough, I took the brackets out and just sent i ...Show All

  • .NET Development Unicode - Bidirectional Categories for CodePoints (RFC 3454)

    I'm implementing StringPrep (RFC 3454) in the .NET 2.0 framework. I've got the following areas all working: - Full Case Folding (all tables) - Form KC Normalization - Prohibit (all tables) Everything so far works properly with full 32 bit CodePoints (surrogate pairs are handled properly, etc). The area that I'm now stuck in is the Bidirectional portion. I need to determine the bidirectional category for a particular codepoint: [Unicode3.2] def ...Show All

  • Software Development for Windows Vista DirectShow Alternatives

    Hi everybody, I've been programming Multimedia Applications through DirectX / DirectShow platform for the last 5 years. I've been working with Video Capture Devices, low level streaming / tunning, Image Processing Filters, etc, using specific DirectShow filters. DirectShow is not recommended any longer for games developing after Microsoft, my question is: for all the developers that already have lot of programs and libraries suppo ...Show All

  • Visual Studio Team System The LocalIdentifier property is not overwritable

    I am trying to connect to the TFS reporting cubes from excel but get a popup informing me that The LocalIdentifier property is not overwritable. I can find nothing on the web except someone having a similar problem http://www.sqltalk.org/ftopic45791.html Does anyone know how to fix this issue There's a post on the SQL Server Analysis Services forum on this problem. http://forums.microsoft.com/msdn/ShowPost.aspx PostID=92710 ...Show All

  • Visual Basic Code Print Button To Print An Existing Word Document (VB.Net)

    I'm very very very new to VB.Net and am doing a class project. I want the user to simply click a print button and get a printout of an existing Word document. Is this possible and if so, can someone suggest the code I would be very greatful for any help. Wanda I don't claim to be an expert, but the only way I've ever found to make it work through the word object library was to have a macro in the documen ...Show All

  • Visual C# trouble using delegate in WndProc

    when i use delegate like this: ----------------- [System.Security.Permissions.PermissionSet(System.Security.Permissions.SecurityAction.Demand, Name = "FullTrust")] protected override void WndProc(ref Message m) { delegate_ReplyFromDataProcess = new PrepareDelegate_ReplyFromDataProcess(ReplyFromDataProcess); delegate_ReplyFromDataProcess.BeginInvoke(m, null, null); } delegate void PrepareDelegate_ReplyFromDataProcess(Mes ...Show All

  • Windows Forms Encounter exception when load form

    Hi friend  when I load a form with a lot of controls, sometime it will throw exception like following: The system cannot find the path specified    at System.Drawing.Icon.Initialize(Int32 width, Int32 height) and The operation completed successfully    at System.Drawing.Icon.Initialize(Int32 width, Int32 height) does anyone has idear on it Best Regards He Lin my code: priva ...Show All

  • Visual Studio 2008 (Pre-release) MaxItemsInObjectGraph

    I'm getting the following error. Error while trying to serialize parameter http://tempuri.org/:GetByUpdatedDateResult. Maximum number Error while trying to serialize parameter http://tempuri.org/:GetByUpdatedDateResult. Maximum number of items that can be serialized or deserialized in an object graph is '65536'. Change the object graph or increase the MaxItemsInObjectGraph quota. The method returns List<T> where t ...Show All

  • Visual Studio Express Editions Searching for e-books

    Can someone please direct me to the benefits area of the express editions.  I am trying to find the ebooks that they say are available and have been through the portal. I was able to find the location of the VB book stuffed in a Blog area for MS, I was not pleased. The C++ book I have not been able to find, same with J+. VB location http://msdn.microsoft.com/vbasic/learning/introtovb2005/ ...Show All

  • SQL Server Management Studio and dbo requirements

    Why is it that Management studio continues to raise an error to a user that does not have db_owner permissions, but is a member of the db_ddladmin role. I have tried to remove the amount of people who have db_owner in my development environments and in place grant db_ddladmin and db_securityadmin. The problem is that management stuio ( in 2005 ) and enterprise manager ( in 2000) raise an error when the user isn't in the db_owner role and is ...Show All

  • Visual Studio Team System Warehouse processing problems

    Hi, I'm running TFS over a Virtual PC, and the OLAP Services eats my CPU most of the time. I found a post (http://forums.microsoft.com/msdn/ShowPost.aspx PostID=3063) and a blog about this problem ( http://blogs.msdn.com/buckh/archive/2005/04/19/409886.aspx ). But after I changed this setting to 3600 or to 360 and restart the TFSServerScheduler service, the OLAP Service crashed withot any additional information. I tried to process the wareh ...Show All

  • Visual Studio Express Editions Mscomm, Serial ports and bit manipulation

    I have just started to investigate the replacement of some seriously old kit with a Windows XP version. I need to read and write data between either a usb/serial port on a new Windows XP machine and connect it to an old controller via an rs-232 cable. Data is passed between the two in Ascii format and can be as little as one character at a time or up to several hundred characters at a time. I will need to be able to interpret some of the dat ...Show All

  • Visual C++ Which is faster?

    I am currently using vb.net and am wondering if c++ can produce faster programs. The majority of my programs are small with about 50 - 60 controls (including tabcontrols, labels, trackbars, comboboxes, a menustrip and a status strip.) The programs run pretty good as a BASIC program but can lag uneccesarily. i.e. when changing tabs, and both tags have nothing but labels and linklabels on them. It shouldn't lag there. If c++ can produce these p ...Show All

  • Windows Forms is there any way to force a control to receive focus?

    i have a custom control inherited from panel and i need to be able to handle Enter/Leave events for it..any idears First off, yes, nested controls should raise Enter and Leave events all the way up the parent hierarchy.  If t ...Show All

  • Visual Basic ActiveX, COM replacements in .NET Framework - Visual Basic 2005

    Would anyone know what the .NET Framework has as a replacement for Control Objects or Components in Visual Basic 2005   I need something that was similar to the ActiveX Objects in VB 6.0.  How can I achieve a similar end-result even though the platform has changed. Thanks.     All of those object are still useable and accessible through vb2005 provided that th ...Show All

©2008 Software Development Network

powered by phorum