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

Software Development Network >> Jose M. Ladero's Q&A profile

Jose M. Ladero

Member List

phlox
Saam S D
Claudio Livio
Robert Darwin
Gooddogs.com
SQLHelp
vbrook
JeffGill
Hoa
WaveyDavey
hugh2005
DSATISH
kihtap
Romain Larmet
KRS India
Don Hiatt
Frank_D
Brad Pitcher
Muzukashii
Lee Keel
Only Title

Jose M. Ladero's Q&A profile

  • Visual Studio Write Attribute relation to COM+ in the AssemblyInfo.cs programmatically.

    Hello. I want to know about adding attributes relation to COM+ in the AssemblyInfo.cs programmatically. There is as below.     [assembly: ApplicationID("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx")]     [assembly: ApplicationActivation(ActivationOption.Library)]     [assembly: ApplicationName("AppName")]     [assembly: ApplicationAccessControl(Value = true, AccessChecksLevel = AccessChecksLevelOption.ApplicationComponent)] I want to write the above attributes not class file but " AssemblyInfo.cs ". How should I do that Anyone helps me please. Thanks. Gwisun ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Who is using XACT?

    If you are using or considering XACT for your product, could you let us know Recently we heard from a developer who was about ready to ship an XACT title, and we had no idea. We try to provide as much direct support to early adopters as we can, help them with any problems they bump into, etc; we can also adjust and prioritize our features based on real-world usage. So, if you're using XACT "secretly", please come out the woodwork and let us know, and maybe we can help. Thanks! Dugan Porter - Game Audio Team - Microsoft This posting is provided "as is" with no warranties, and confers no rights My team is currently porting th ...Show All

  • Software Development for Windows Vista xoml activities

    Like others, I suspect, I want to be able to offer customization of workflows etc to customers by rehosting the various MS desgin controls and by supplying libraries of activites and rule sets. I intend to store the definitions of these as xoml blobbed in a db. I assume that xoml activities, (with code behind), would allow customers to customize them as well as the workflows and that as long as all the code behind was in the GAC, all would be fine. My activity may be xoml but when the workflow is built in VS the activity is compiled and the workflow xoml references the assembly. Can one have xoml workflows that include xoml activity ...Show All

  • Windows Forms Iterating DesignerSerializationVisibility.Content collections?

    Running the following code to get the property descriptor of ToolStripContainer.ContentPanel results in a descriptor marked with DesignerSerializationVisibility.Content. ToolStripContainer tsc = new ToolStripContainer (); PropertyDescriptorCollection props = TypeDescriptor .GetProperties(tsc); PropertyDescriptor prop = props[ "ContentPanel" ]; Up until now, I've been using IEnumerable to iterate over objects which are marked DesignerSerializationVisibility.Content but "ContentPanel" isn't IEnumerable and prop.Converter reports that it cannot convert to IEnumerable. What am I missing What is the appropriate way to iterate a Desig ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. rear view mirror using stencil buffer

    hi all, iam displaying a vehicle rear view mirror using stencil buffer. my problem is when iam displaying this its only showing the objects which are rendered lastly. can anyone help me . or am i using wrong principle by using stencil buffer ,because iam 30 days buddy for direct3d programming. any other solutions are also welcome bye have a bug free day I am not sure what you are mean with “rendered lastly”. Do you mean that what you see depends on the order you draw it or something else Using the ...Show All

  • Visual Studio Express Editions sizeof(time_t)

    Hi Guys, I've wasted 2 datys trying to find out the reason for the crash when VC6 dll used VC7 dll exporting C API... The reason was in disaligment caused by pretty #ifdef introduced by the developers in the VS 2005... Actually I see no reason in forcing this time_t to be 8 instead of common 4... If someone wants to use 8, so, he can feel free to use 64 bit time value explicitly... I can't but consider this define as weird and dangerous, is there someone who can explain what is the actual reason for such a define However it may be, it's also would be nice to know, what are another hidden issues with data-types and other stuff that can cause ...Show All

  • Visual Studio Express Editions Unable to create the designer

    Hi, I recently downloaded the Express Editions for Visual Studio and I'm having a bit of a snafu.  So far the only program I've tried to use is Visual Basic 2005, but from the little research I've been able to gather on this problem it appears that I would have the same error with any of the applications. Essentially I cannot view the designer.  Everytime I try I get an error message.  If I try to create a New project I get "Microsoft (R) Visual Basic Compiler has encountered a problem and needs to close.  We are sorry for the inconvenience."  It says no information has been lost, and to check the compil ...Show All

  • Windows Forms tableLayoutPanel bugs

    i have an tableLayoutPanel on my form which CellBorderStyle property is set to "Inset". it takes seconds to render this panel. but if i set CellBorderStyle property to "None" it is many times faster. this must be a bug. Another bug that tableLayoutPanel has is sometimes you cannot drag and drop controls in it, you have to edit Cell property. But becareful while editing, cause you cannot edit this property like width and height, it raises a meaningless error like '1,17 is not a valid value for Int32. '. you must edit sub properties Row and Column separately to do this. How many rows/co ...Show All

  • .NET Development SQL Server 2005 Push

    Can someone point me to any documentation, articles, examples, etc regarding the best way to push data and/or notifications to a remote client machine that is running a win forms app from SQL Server 2005 Thanks. Someone else gave me the following link from a different forum as well. http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnvs05/html/querynotification.asp ...Show All

  • Smart Device Development Connect to Access DB in Desktop

    Hello, I wanted to know if it is posible to connect a mobile device to an Access Database in a desktop computer by wifi. It's different froma normal connection in a Windows app or how it is posible I hope you can help me with this. Thanks. James. Not without some kind of proxy: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=292291&SiteID=1 ...Show All

  • Visual Studio Alin

    I recently met a problem in my GET operating. When I GET my applications via the Source control of VC6.0, some files of the projects wasn't be get down to my workfolder and it need me to enter the VSS get them manually by myself. Sometimes, there just are several files needed get manually and sometimes it is a hard task to get because of the number of files is so large. Besides, I had to BUILD my application in VC and then GET the non-get file in VSS. It's so troublesome. To work out this problem, I have tried these: 1\ I deleted the non-get files in the VSS database and added them back . 2\ I destroied the database and rebuilt it . ...Show All

  • Visual Basic Clearing a checkbox

    Just making a clearClass that clears textboxes, checkboxes etc. Public Class ClearClass Public Shared Sub ClearTextboxes( ByVal insideWhat As Control.ControlCollection) Dim txt As Control For Each txt In insideWhat If TypeOf txt Is TextBox Then txt.Text = "" End If Next End Sub Public Shared Sub ClearCheckBoxes( ByVal insideWhat As Control.ControlCollection) Dim cb As Control For Each cb In insideWhat If TypeOf cb Is CheckBox Then cb.Text = "" End If Next End Sub End Class The code calling it is... ClearClass.ClearTe ...Show All

  • .NET Development How do I get a .NET TextBox to implement MY OWN INTERFACE

    This is a tough one.  I know how to use and implement interfaces from my own classes, but how do I take a system.windows.forms.textbox and get it to implement an interface that I designed.  I really don't want to have to inherit a textbox into a usercontrol and then do it from there... isn't there a more direct means to do it    I have tried creating an empty class file and making it look like the following... =================================== Imports System.Windows.Forms Public Class MyCustomTextBox    Inherits ...    Implements MyOwnInterface End Class ================================== a ...Show All

  • Visual Studio Team System SupressMessage is not in the correct language

    Why is that when I select to copy errors as SuppressMessage attributes, the result is always in C#, not VB.NET, despite what the project language might be I would expect it to be based on a project language, or a default option, or the language to be a sub menu. Bill, I'm making the assumption you're talking about the Copy As -> SuppressMessage option in the FxCop standalone tool and not the similar functionality that is available in Visual Studio Team System If so, I agree that's a great suggestion. Unfortunately, as FxCop only analyzes binaries and not the source files themselves, it might be hard (without resorting to hack ...Show All

  • Visual Basic Run Application in ForeGround

    Hi, How can I make sure that my vb form in my application always start/show in foreground (fore front) and any other application will run in background (behind my application) Thanks ...Show All

©2008 Software Development Network