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

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

limssd

Member List

Murphy
Eric Kehr
DotDidIt
mikem2042
Janet Robinson - MSFT
Eric Reed
dnear1
billy_bob123456
WPX
Greg3055
Ahmed Abbas
RonFarley
Manivakkam Krishnan
Bonner
ArcyQwerty
xibalba7
AmundL
abbasshaikh
Dave Hunt
rschiefer
Only Title

limssd's Q&A profile

  • Windows Forms How to display SmartTags/DesignerVerbs in a home made DesignerHost

    Hello, I have a some custom controls that i drag and drop onto a form designerhost that i've implemented. The custom control i'm adding has its own designer that adds properties and designer verbs. My form designerhost is able to display the new properties generated in its designer, but the designerverbs are not visible. Which services/interfaces have to be implemented by my designerhost to get this to work (when I add my custom control to the Visual Studio form designer, the designer verb displays as expected). The designerhost currently implements the following interfaces IContainer, IComponentChangeService, IDesignerHost, IExten ...Show All

  • SQL Server subreport parameter

    hi, When I use the subreport,I want to set the parameter,but when i set the parameter,and preview the report, it shows that some error happened I doubt whether it is me that write the value incorrectly or the reporting service error thx What is the datatype of the report parameters in the subreport In the main report, on the subreport reportitem, did you specify the mapping from the main report to the subreport parameters Do the expression results match the expected parameter datatypes of the subreport parameters -- Robert ...Show All

  • Visual C# Database - Best Practices

    I am working on a database application and was hoping someone might be willing to give me some advice on what the "best practices" are regarding where to put my database access code: Should I place the database access code in my Main method, the Load Event of the main form, a seperate method inside my main form, or in a seperate class file Thanks! Here is a good list with resources, it is allways good to seperate it in tiers, but remember that it depends on your needs. Data Access Layer with SqlWrapper library A Data Access Layer to persist business objects using attributes and reflection ...Show All

  • Visual Studio 2008 (Pre-release) Custom TriggerActions

    Are we supposed to be able to create our own TriggerActions TriggerAction is not sealed, but the abstract 'Invoke'  method is defined as Internal in the base class, so there is no way it can be overridden outside of the WPF assembly. I should mention that I would like to create two trigger actions. The first will simply invoke a method (by name) on a target instance using reflection. The second will call Execute on an ICommand instance. The instances will be hooked up using {StaticResource}. I looked for something prebuilt to do this but I can't find anything. It seems like a common task to want to e ...Show All

  • Windows Forms Datagrid with a Multiline column

    Hello, I need to make the a Windows form Datagrid column to be able to display multiline text. Any ideas how I can do it  Or Can I use listview instead Madhuri You will have to make a custom column style. though the better question is this, do you want it to show all the time in a bigger box or only when it has fo ...Show All

  • Visual Studio 2008 (Pre-release) WPF & Games

    Hello everyone, After learning of the number of possibilites of Windows Presentation Foundation I was, naturally, excited. But now I'm confused. WPF is based on DirectX. So when I develop games, do I use my DirectX wrappers and classes, or do I use WPF Thanks for your answer in advance. - Ryan.  We can say that WPF is a simplified layer over DirectX. It doesn't have all the resources of it. About game creation using WPF there are this site having tutorials including source code, executables etc: http://www.dmu.com     ...Show All

  • Visual C# Visual c# help!

    hello friends, i wanna know whick book shld i refer for Image Processing using Visual C#.Net. Thank you and regards, Sharadha There are no books that I know of. www.codeproject.com has a series of articles on image processing. They're not too bad, I know the bloke who wrote them :-) By the way, the point of this forum is Visual C# help. You should try to provide a header that describes your problem a little, that will attract people who can help you. ...Show All

  • Visual Studio Express Editions How to filter the items in a listbox depending on the selected item in a combobox.

    Hi, I have a combobox bound to a Section table and a listbox bound to a Department table. The listbox has to display the departments agreing with the Section selected. I tried this: Private Sub SectionComboBox_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles SectionComboBox.SelectedIndexChanged DepartmentBindingSource.Filter = "SectionID=" & SectionComboBox.SelectedValue End Sub but it gives me an error: Syntax error: Missing operand after '=' operator. Is it possible to do this in a different manner Thank you. Selected Value returns an Object. ...Show All

  • SQL Server CeWriteRecordProps failling with a empty FILETIME field..

    Hi All, Does anyone have already made an application that writes some data into the EDB Pocket database I’m trying to insert a record with a empty FILETIME field and I’m getting the Error 87 (INVALID_PARAMETER), I’ve tested with some date in the field and the record is added sucessfull, it seems that the database doesn’t accept anymore empty FILETIME fields Is it true I didn't find anything in the docs. thanx in advance. Hi Laxmi, Thank you very much for your reply, I’m passing now a non-empty FILETIME and it's working very well, now I'm stuck in another function, a similar problem with the CeSe ...Show All

  • Visual Studio Express Editions Hyperterminal and SerialPort comms problems

    Have been through all the discussions about these 2 talking to each other, copied and played with code but cannot get any text sent to hyperterminal via the Serialport code in my form. Hyperterminal to Hyperterminal works ok and both have the same settings as shown with Serialport (COM1,9600,8,1,none) . Code used is below : - Imports System.Text Imports System.IO.Ports Public Class Form1 Dim WithEvents serial As New System.IO.Ports.SerialPort Dim strtext As String = "&H1234" Dim buffer As String ---------------------------------------------------------------------------------- ...Show All

  • Windows Forms MsgBox Font

    Seems like a simple solution, but can't find the answer.  How do you change the font properties for a Message Box. I want the text to show as Font Size 15 Thanks MsgBox("HELLO WORLD", MsgBoxStyle.OKOnly, "Title") You cannot modify the font properties or layout of the MsgBox since under the covers, it calls MessageBox in User32.dll. This Win32 C-function only exposes the owning window, text, caption, buttons to display, and dialog result. If you want to modify font properties, you'll have to create your own Form, as DMan1 mentioned. ...Show All

  • Microsoft ISV Community Center Forums How to create a DLL in VB.net for MS Access 2003

    Hi, I've been searching high and low on the net but I cannot find out how to create a dll in VB.Net that I can call from VBA in MS Access 2003. I know that I need to add a com interop to allow vba to reference it but I've not found out how to do that. Does anyone know Hi, You might want to try the VBA forum. http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=74&SiteID=1 Thanks. ...Show All

  • Visual Studio Team System Project in solution explorer

    We're in the process of setting up some test boxes to run some manual tests.  I've created a project with all the tests.  The additional testing resources have installed the team system client.  What is the best way to get them the project with all the tests   I tried exporting the project and then allowing them to access the project and put it on a local folder.  The only problem is when they try to open the vbp file an error comes up stating 'The Visual Basic 6.0 file is corrupted or cannot be read.' Any suggestions thanks, aaron  I received exactly the same error message after exporting and then extr ...Show All

  • Windows Forms book for data grid

    Any good books for data grid in windows form ...Show All

  • SQL Server Accessing from desktop - path not found.

    Hi, I am trying to write a desktop application using C# and .NET that can edit an SQL Server Mobile database stored on a device. The problem is no matter how I specify the data source, I get an error the path was not found. Heres the bit of the code: string strConn = "Data Source=" + "Mobile Device\\My Documents\\Nutricom.sdf"; SqlCeConnection connDB = new SqlCeConnection(strConn); connDB.Open(); And the error i get is.. The path is not valid. Check the directory for the database. [ Path = Mobile Device\My Documents\Nutricom.sdf ] Everytime it thorws an error saying the path is invalid and to check the locaiton of the dat ...Show All

©2008 Software Development Network