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

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

bryanedds

Member List

DazlerD
alien-
vito1281
Sc0tty
Snortblt
NetPochi
Isty Ahmad
togie
vats
Phil Gould
Kumar Venkat
Arthur Greef
Mike Chapman
BullRush37
Avishesh
nielsb
KAAU
zyx100
SolidSpace
maqadri
Only Title

bryanedds's Q&A profile

  • Windows Forms Title bar and Scroll bar

    How would one change the background colors for either of these in code, without changing the properties of the desktop properties. Hi For this your have to create custom HScrollbar and VScroll bar's. this can be achived by. 1. create the class derived from HScrollbar and VScrollbar. 2. In Paint you can do what ever the thing you want. -Thanks Mahesh ...Show All

  • Visual Studio Express Editions Please an example.

    Hello. Did anyone add a new row on a Bindingsource.currencymanager I'd want to see an example of how I can do that. Thanks... Thanks you. The example is good, but I'd want to know another one that has the information of more of 2 related tables. Example: customer - relation with orders orders - relation with details I have problems inserting a row on the first table. Thanks... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. (Clip) Plane transform?

    Hi all -- I'm porting a water shader to XNA, but first I need to get my clip planes right. I noticed we still need to unproject the plane from camera space to world space, but I cannot find a method that actually allows to transform a plane! Like the MDX Plane.Transform method used to do. I tried to transform 3 world points with the inverse of my world*view*proj matrix, and create a plane including these points, but no luck. Thanks derek for the nice methods. However, I fear I must disagree with your last lines. The plane(0, 0, 1, -5) is NOT the same as the plane(0, 0, 100, -5). What we want here is the Z=5 plane, but in the second case you get a plane that is more like Z=0.05, because the Vector4 is norm ...Show All

  • SQL Server Question: About RDA.SubmitSQL

    I understand RDA.SubmitSQl is for Submitting SQL statements for execution on a database in Microsoft SQL Server on a remote server. What if I sumbit a Query like this : RDA.SubmitSQL("Select Max(CustID) From CustomerTable"); So can I get this value back to my local client to use Please help me out. Thanks. James Thanks Laxmi, Acctually, I have done what you replied. I just wanna improve the performance about it. That mean I always will grab one record down to local DB. And recreate the table. To top it off, local db doesn't support Stored procedure. Everytime to communicate db , we have to connect to db. Hope local db will support SP in the future. James ...Show All

  • SQL Server SQL 2005, Clustered FullText dependencies?

    After installing SQL Server 2005 on a cluster, I notice that the cluster resource "SQL Server FullText" has a dependency on disk H. Disk H was the disk I chose for Data Files during install. I would have expected the dependency would be "SQL Server" as it was in SQL 2000. Is this a bug I took a random database and added a Full Text Catalog. In the Browse section, I chose a clustered disk other than H (namely F) for the Catalog Location. So should the FullText resource now have a dependency on the F-disk as well Well, no there's not. I added Disk F to the SQL Server dependency list. Again, out of the box, the FullText resource just has a dependency on the H-drive as insta ...Show All

  • Visual Studio Team System Context menu - GetLatest (should have Server and workspace)

    I think the context menu should have GetLatest (Workspace) and GetLatest(Server). This will make it easier for people coming from VSS to understand that get latest (Workspace) will only get files relative to their workspace and the server will be obvious that it will force download. If you are concerned people will too easily overwrite their workspace versions make it an option to whether the server menu item is displayed or not (or put lower on menu). People used to GetLatest from VSS don't expect that they need to do GetSpecific version, Latest version, Force get in order to get the latest files. Comparing to the workspace version is a very common need, so we minimize the # of clicks there. N ...Show All

  • Community Chat it’s turbo c really back???

    this is an open question to all the people that wants to give an opinion about this topic, it’s turbo c really back It’s older than me but i have to use it. Do you agree that some teachers nowadays are trying to make us learn about some old program AndrewBadera wrote: mysteriously enough, my original replies in those threads got moderated into nothingness :( must have been a bug in the forum software! Well, you should know better than to pick on forums superstar "mcmarquez"! The 8 off-topic and almost completely incoherent threads he posted in his first 48 hours here were an example to us all. He posted for three days and then vanished, and hasn't posted once in the past 5 weeks. He's exactly the sort of poste ...Show All

  • SQL Server Log shipping

    Can stand by server in log shipping host production database used by other applications if yes, what is the effect of log shipping on other databases I am not planning to use the database for which i am log shipping. The server i am planning to use as secondary server in log shipping already has production databases (not involved in log shipping). Will log shipping affect performance of the secondary server ...Show All

  • Windows Forms How do I show a dialog with a "Do not show this again" checkbox.

    I want add a checkbox to a dialog to give the option to not show this dialog again (as is commonly used by many windows programs). My question is; is there an easy way using MsgBox() or MessageBox.Show, or must I do my own thing (creating a new form etc) ...Show All

  • Visual Basic Passing an array from a VC++ ActiveX component to VB .NET 2005

    Please point me in the right direction if this has already been answered. I've looked all over and found things close to my problem, but nothing that adapted properly. All I want to do is pass a one-dimensional array from an ActiveX componenet written in VC++ (2003) to a program written in VB .NET 2005. It seems like I should be able to package the array as a Safearray and then as a Variant, and return that object. But I don't seem to be able to package it properly. Thanks! That is correct. I am creating the array in the C++ code and trying to use it in the VB code. I'm afraid I'll confuse you by posting my declarations, because the only method I could find that might work would be to create the ar ...Show All

  • Windows Forms Drag and Drop problem(I have the code thoe)

    Hey, For the image drag and drop stuff I ahve a little problem...I want it to drag and drop but I dont want it to totaly take the image out...So what I am trying to do is instead of making it so that when you drag and drop an image it goes that but the picturebox that you draged the image from will still have it's image in there...Here is the code: private void pictureBox2_DragDrop( object sender, DragEventArgs e) { // Display the image in the selected PictureBox control. PictureBox pic = (( PictureBox )(sender)); pic.Image = (( Bitmap )(e.Data.GetData( DataFormats .Bitmap))); if ((e.KeyState & CtrlMask) != CtrlMask) { if (sender == pictureBox1) { pictureBox2.Image = null ; } else ...Show All

  • Windows Forms Custom Action dll in C#?

    Is it possible Getting entry point not found when building. No it can't. Well let's put it this way. If you use .NET Installer classes in any managed code language, Visual Studio setup projects call them by inserting a shim C++ Dll between the MSI process and the Installer class. The MSI process calls the type 1 deferred custom action in the C++ Dll, and that cranks up the CLR to call a managed installer class handler. If the original question was meant to be something like "can an MSI setup call a C# Dll like it can call a C++ Dll" I'll stick to my original answer of "no". I suspect you may have set your custom action properties so that MSI tried to call a C# assembly as if it were a C++ Dll(because you set Ins ...Show All

  • SQL Server MdxScript error using role security

    The following error is displayed when trying to open a cube... "An error occurred in the application: MdxScript(Quota Sales)(30,24) Then dimension '[Sales]' was not found in the cube when string, [Sales], was parsed" I am using role security and am trying to hide a base measure [Measures].[Sales] along with two calculated measures that use the base measure. The cube does not have a [Sales] dimension. I am using the Dimension Data tab within the role designer and denying all measures then selecting only the ones I want to appear in the cube. Those are written automatically into the "allowed member set" panel on the advanced tab. I have also tried allowing all members and then unchecking the Sales measure and sp ...Show All

  • Visual Basic NetWork Printer Not getting Displayed in Vb.NET Services

    Hi, I work on VisualStudio 2005 and .NET framework 2.0 I have written the below code and compiled both as Windows application and windows services. The Results are different. I need to run my program as windows services. Please help. I have added the Reference to Powerpack.Printing. If I run the below code as windows application, all printers gets listed. If I run the below code as windows services, NetWork Printers do not get listed. Any help would be appreciated. Imports Microsoft.VisualBasic.PowerPacks.Printing.Compatibility.VB6 Public Sub Listprinters() Dim objPrinter As Printer Dim strtemp As String = "" Try For Each objPrinter In Printers strtemp = objPrinter.DeviceName ...Show All

  • Commerce Server Discounts : Need a working example

    I have tried for the three days to solve this problem: Lista all products in a catalog with actual regular price and discounted price based on anonymous user. I have tried two examples, one on GotDotNet and one in this forum. We are using virtual catalogs. If no t solved I will have to use the cart and add/remove one item to recalculate price and compare with listprice (stupid a..). The GotDotNet solution never returns any value in discountContentSelectionContext.GetSelector().AllContentItems But the product pipeline works great fetching product values The Forum soulution returns my discounts but no DiscountItems after ApplyProductFilter executed. I would like some person at MS or You produce an example howto produce a working sa ...Show All

©2008 Software Development Network