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

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

Jorryt

Member List

RolandLee
zeki
Craig Regester
Leonnuel
j_e_f_f
systemX
MonuReddy
fyllekai
sam_dlg
C#newbie
quemi
roger reynolds
davco
LopuX
Voidd
Brock Andrew
MichMash
sperlis
Kraelen
Don Tucker
Only Title

Jorryt's Q&A profile

  • Visual Studio Express Editions VB 2005 Express and SQL Server 2005 Express

    Hi Friends, I have the SQL server 2005 express installed on the server. From the client machines, I am able to connect the sqlexpress instance running on the server and access the database (using the Sql server management studio express). From client machine using VB 2005 express , is it possible to connect to the sqlserver 2005 express running on the server In VB 2005 express designer, add datasource, there is no option to select database residing on the server Thanks. The express products (Using the Wizards) can only connect to the local database (Generally .\SQLEXPRESS). To con ...Show All

  • Visual Studio Team System DoNotDeclareStaticMembersOnGenericTypes (CA1000)

    In general I agree with the rule. However, what about operator overloads   Should they trigger this violation   And, if not, how do you prevent the violation only for operators The usage of an operator generally does not need to specify <T>. I.E.    public class MyClass<T> {       private T x;    // violation CA1000!    public static operator == (MyClass<T> left, MyClass<T> right)    {       return left.x.Equals(right.x)    } } ...    MyClass<xxx> = ...Show All

  • .NET Development Is Microsoft serious about serialization?

    I've been working through a serialization model have been stumbling over many semingly simple serialization problems that lead me to believe that Microsoft is not serious about serialization. There does not appear to be a unified model or methodology to the serialization within .Net. For example, the latest problem I hit is that the System.Windows.Forms.Padding structure is not serializable. Why is it that Microsoft did not tag this seemingly simple structure with the Serializable attribute Is there some criteria Microsoft uses to decide what is serializable and what is not Another example is the inconsistency of the formatters. They are s ...Show All

  • Microsoft ISV Community Center Forums Expose 'Structure' to VAB from ScriptHost

    We are developing an application that hosts VBA for extensibility. We are able to create and execute the VAB scripts, including the ability to have VBA call back into our host application. We are using VBA 6.4. and developing the application in C++ Visual Studio 2005. Our problem is that we need to expose a 'Structure' to the Visual Basic Script. We have been able to sucessfully define the structure in our host application's IDL, and VBA is able to recognize the structure (including Intellisense). The problem is when VBA calls back into our application, we keep getting a 'type mismatch'. ---- example stuct defintion ----- type ...Show All

  • Windows Forms ToolStripMenuItem keyboard shortcuts swallow ListView/TreeView label edit shortcuts

    When the user enters label editing mode for a TreeView or ListView control, I would expect that keyboard shortcuts such as Ctrl-X, Del etc would be handled by the label edit control. This was the case with the beta 2 framework. However the behaviour of the 2.0 release framework seems to have changed in this area. It now seems that if the TreeView or ListView's parent form has a menu strip or context menu strip, then any key presses are first directed to the toolstrip for shortcut processing. This means that if you have a keyboard shortcut of Del defined for a menu item, and the user enters label editing mode and presses the Del key, th ...Show All

  • Windows Forms DataGridView Performance issues with CellFormatting

    Hello: I'm using the DataGridView for displaying data to the user. The number of records that will be displayed at a certain time could vary between 0 and 150. I use the CellFormatting event handler to do some formatting like changing the font face and the background colors based on the cell values. Earlier we were iterating through the rows of the gridview to accomplish the same. Since the performance was dreadful, I changed the code to use the CellFormatting. Now, the performance when the gridview loads is a lot faster than the earlier approach. But everytime, we scroll through the gridview the application just hangs, and its bec ...Show All

  • Visual Studio 2008 (Pre-release) Convert BitmapImage to byte[]

    Hi all How can i convert a BitmapImage loaded with UriSource to a byte[ ] array so i can save it in SQLServer. I dont find how to convert to a Stream Thanks. On BitmapImage there is a CopyPixels method which will let you get the pixel data out in the form of an Array. Here you can pass it a byte[] and get what you need. Please keep in mind though that these are raw uncompressed image bits that are not format specific. So in order to use them in the future you need to use the BitmapSource.Create method to create a BitmapSource from an Array. Robert. ...Show All

  • SQL Server SQLDMO Transfer object crashing

    Hello All, I have a quick question. When I attempt to use the SQLDMO Transfer object with the CopyAllTables and CopySchema flags set to true - and attempt to transfer a database from sql server 2005 that has had database diagrams enabled (so the sysdiagrams table is added to the database), the transfer always fails with the following error: [Microsoft][ODBC SQL Server Driver][SQL Server] Incorrect syntax near ')'. Has anyone else had this error before and have a solution Thanks I couldn't reproduce this problem. The database diagrams weren't transferred, but the transfer concluded successfully. Maybe yo ...Show All

  • Microsoft ISV Community Center Forums Not much there

    Started by spiderM9 at 03-29-2005 10:18 AM. Topic has 1 replies. 03-29-2005, 10:18 AM spiderM9 Joined on 03-29-2005 Posts 1 Not much there My buddy contacted me and we traded introductions.  Didn't hear from him for a long time, then he dropped a note saying they were preparing a new drop and he'd help me get it set up.  Never heard from him again.  One concern is that my MSFT buddy didn't have very much software experience to begin with and was new to his team, so he didn't really have any specific product experience either. 03-29-2005, 1:1 ...Show All

  • Visual C++ BUG; isalnum - asserts in debug build

    If you try (using VS2005) isalnum('£') then you get an assert. The problem lies in '£' being cast to an int -93. This is then cast to an unsigned and checked to see if it is withing 0 to 255. As -93 cast to an unsigned will give a huge number, we then get an assert. Andy Cooper From MSDN: When used with a debug CRT library, isalnum will display a CRT assert if passed a parameter that isn't EOF or in the range of 0 through 0xFF. When used with a debug CRT library, isalnum will use the parameter as an index into an array, with undefined results if the parameter isn't EOF or in the ra ...Show All

  • Windows Forms Printing winform in app ?

    I have the following code; see below! The form image works, the printing works. What does not work is making the image Landscape. It just seems to ignore it. How can I get it to go landscape Thanks Deasun Try                        CaptureScreen()             With prtPrvDialog                                .Document = prtForm ...Show All

  • Visual Studio 2008 (Pre-release) DLINQ Queries and observations

    I have the following queries/Observations about DLINQ. 1. I could not find any direct way of handling many to many relations. Suppose if User and Role are related by a join table UserRole then I should be able to have a collection of Roles in User and vice versa. Which i think is not possible in DLINQ. (Please correct me if I am wrong) 2. State management is handle outside entities. In scenareos where a client grabs a entity from a WS , makes some changes and post it back to the ws for updation, how is the DLINQ framework handle optimistic locking Why can't state be maintained in the entity itself maybe by a base class, we already c ...Show All

  • SQL Server Designing SSB queues, EA sample and unreliable interdependant NTFS tasks

    Our current project involved into managing NTFS hierarchical folders structured by multi-level customers and associated projects for them. Essentially each folder level represents one level of customer hierarchy or project root. Both have different subfolders and user access rights for them based on generic XML templates. The folders resided on file servers across the country and should be accessible in ordinary way NTFS file shares are allowing. LAN/Intranet MS AD Win2003 / SQL2005 environment. The folder management system basically have to keep the folder structure in tact with changes in underlying managing application logic. That i ...Show All

  • Visual Studio Express Editions about Install asp.net 2.0

    I am working on  asp.net 1.1(VS2003) ,can i keep both s/w on a my system. Both means asp.net 2.0(Express Edition) and asp.net 1.1. is there any special procedure. Thanks   Mukesh ...Show All

  • Visual Studio 2008 (Pre-release) XAML SplitView tool

    For some reason I can't find XAMLPad after installing NetFX Beta 2. I've been looking for SplitView online and can't find it. Can someone please point me in the right direction Thanks, -Alex Start Menu => All Programs => Microsoft Windows SDK => Tools => XAMLPad Or C:\Program Files\Microsoft SDKs\Windows\v1.0\Bin and search for XAMLPad :) HTH ...Show All

©2008 Software Development Network