Search:

Type: Posts; User: vbud

Page 1 of 10 1 2 3 4

Search: Search took 0.13 seconds.

  1. Replies
    13
    Views
    3,127

    Re: Datagrid + Generic List + Hide Columns

    aGridTableStyle2.MappingName = empList.toString() does not do much... :(
  2. Replies
    13
    Views
    3,127

    Re: Datagrid + Generic List + Hide Columns

    Here's a sample code I am trying to test:

    Employee Class:


    Public Class Employee

    Private empId As Integer
    Public Property EmployeeId() As Integer
    Get
  3. Replies
    13
    Views
    3,127

    Re: Datagrid + Generic List + Hide Columns

    Still does not work... Could it be that the DataGridTextBoxColumn object is unable to map property name of an object with the MappingName when a List of Object is bound to a datagrid?
  4. Replies
    13
    Views
    3,127

    Re: Datagrid + Generic List + Hide Columns

    Does not seem to work, on thing I forgot to mention is that I have a generic List(Of Object) as datasource. Each object is in fact a simple Product Class object. From the code you pasted petevick the...
  5. Replies
    13
    Views
    3,127

    Re: Datagrid + Generic List + Hide Columns

    But I am unable to declare an object as DataGridColumnStyle... This class does not seem to be available, also as mentionned in my first post, GridColumnStyles does not have AddColumn as a member but...
  6. Replies
    13
    Views
    3,127

    Datagrid + Generic List + Hide Columns

    Hi all,

    I have the following situation:

    A WM5/PPC application with a datagrid that have a generic list of object as datasource. The list of Object is actually a List(of Product) where Product...
  7. Replies
    2
    Views
    1,082

    SQLCE Strange Identity problem

    Hi all,

    I an encoutering a rather awkward problem that could be something very silly.

    I am using VB.Net 2005 over WM6 to develop an application for a client. I have created an SQLCE database...
  8. Thread: Inheritance...

    by vbud
    Replies
    6
    Views
    819

    Re: Inheritance...

    Ah this is what i was looking for actually... Overridable and Overrides. However I now declare the derived instance as MyBaseClass and create the appropriate derived class at run time... Thanks again.
  9. Thread: Inheritance...

    by vbud
    Replies
    6
    Views
    819

    Re: Inheritance...

    hmm thanks for this, implementation of IInterface from MyDerivedClass removed. However the purpose was to have a factory class that can create any of the derived classes dynamically depending on the...
  10. Thread: Inheritance...

    by vbud
    Replies
    6
    Views
    819

    Inheritance...

    Hello everyone, it's been a while since I last wrote a line of code in VB.Net.... I have the situation below:

    ' Interface class
    Public Interface IInterface
    Sub Init()
    End Interface

    ' Then I...
  11. Re: How to find almost unknown meaning in TextBox?

    I think you are looking for something like this:


    dim strText as string

    strText = "Blahblah blah blah blah blah. Blhblah blahblah ABCDEFGH.a blaabla bla"

    dim arrStrTemp() as string
    dim i,...
  12. Replies
    3
    Views
    554

    Re: [2005] Throw Exception From Web Service

    Can you please post the exact error message? I think that the problem maybe that you are not passing the correct SOAP message to or from the web service. Either types or names are different.
  13. Replies
    4
    Views
    801

    Re: [2005] Scan For Wireless Access

    Ok, I've worked on a PDA project that does this. It basically checks the WiFi signal strength. You need to be able to use the underlying APIs to do this. So first of all is to know which hardware do...
  14. Replies
    4
    Views
    801

    Re: [2005] Scan For Wireless Access

    The subject is vague, please go directly to your point it would be easier to help you then.
  15. Replies
    2
    Views
    816

    Re: [2.0] Custom button shape

    Bump!!!
  16. Replies
    2
    Views
    816

    [2.0] Custom button shape

    hi all, I need to create a custom button or label with the shape as attached. I've tried using GraphicsPath but at most I could create a button with rounded corners only. My custom button need to...
  17. Re: [2.0] Convert HtmlTable to HTML source code

    Yes, perfectly. Thanks!!!
  18. Re: [2.0] Convert HtmlTable to HTML source code

    The document I want to generate is far more complex than the sample I posted, so instead of having to recreate an HTML parser i'm looking at alternative solutions...
  19. [RESOLVED] [2.0] Convert HtmlTable to HTML source code

    Hi,

    consider the following code snippet:



    HtmlTable table = new HtmlTable();
    HtmlTableRow row1 = new HtmlTableRow();

    HtmlTableCell cell1 =...
  20. Replies
    1
    Views
    403

    Re: Archive script

    Bump!!!
  21. Replies
    1
    Views
    403

    [RESOLVED] Archive script

    Hi all i've been struggling to do this and hope that someone can help me here.

    I want to add a new action when right-clicking on files having the extension ".vb", namely "Archive". On selecting...
  22. Replies
    6
    Views
    1,075

    Re: [2.0] Dynamic Generic List

    Ok thats my point, so you can't return a list of say ClassA as being same as a List of IBASE. I'll have to find another way then...
  23. Replies
    6
    Views
    1,075

    Re: [2.0] Dynamic Generic List

    Ok, here goes:

    IBase in an Interface Class defining methods and properties that all classes implements.

    BaseClass is a generic class that implements IBase

    Within BaseClass there's a method...
  24. Replies
    6
    Views
    1,075

    [2.0] Dynamic Generic List

    Hi all,

    I have a situation such that it is only at run time that i would know what type of generic list i want to create. Therefore I need something like:

    Private List<IBase> Test(IBase myObj)...
  25. Replies
    1
    Views
    2,627

    Creating a .reg file in Compact Framework

    Hi all,

    I have the following issue on a PDA device:

    Users can alter registry entries on a PDA device while my application is running. Each time the application exits, I need to save the changed...
  26. Replies
    6
    Views
    4,398

    Re: Display gif image dynamically in Crystal Report

    http://inspirone.blogspot.com/2007/01/loading-images-dynamically-in-crystal.html :)
  27. Replies
    1
    Views
    588

    Re: Dinamic Image File In Crystal Report

    I recently helped someone with a similar issue and thought to post the solution on my blog, please feel free to add any comments:
    ...
  28. Replies
    2
    Views
    1,450

    Determine if button was clicked...

    Hi all, i have the following situation on a Windows Mobile 5 device :

    I have some validation on the lost focus event of a control. However when the user clicks on the Cancel button, the lost...
  29. Re: Prevent second instance of application

    Thanks for the tip. I finally ended using CreateMutex and yes its on Win CE.
  30. [RESOLVED] Prevent second instance of application

    Hi all,

    I have an application built in C# on .Net Compact Framework 2.0. I want to prevent my app to run in a second instance. Basically I need to prevent any other instance of the app to load,...
  31. Replies
    3
    Views
    698

    Re: Help with ASP.NET 1.1 to 2.0 upgrade error

    IMHO literrally means you need to check this link first http://support.microsoft.com/kb/810886 :)
  32. Replies
    3
    Views
    1,044

    Re: making a 30 days validation program..

    Though Registry is commonly used for this I would suggest that you choose stronger options along with this. When using the registry Use API to save at registry locations that has meaningless names...
  33. Thread: Report Designers

    by vbud
    Replies
    6
    Views
    776

    Re: Report Designers

    The datareport provided with VB6 us quite powerful if you tweak it a little bit. You could even do grouping and use multiple recordsets with it.

    To design a simple datareport in VB create a blank...
  34. Replies
    8
    Views
    2,134

    Re: Event handler not being recognized?

    Why not have the AutoPostBack property of the control set to True? This should trigger some server side event.
  35. Re: [02/03] Attach an ID to a datagrid row for use in Javascript

    I don't really understand the purpose of you doing this. Is this to know on which row you currently are on client side? Cause this can be achieved on server side through the selectedindex change...
  36. Re: What is the best way for search a string value in an XML file

    Actually I can load an XML file into a treeview, the tricky part actually if finding the search string into the files and then load these find matched into a treeview. Please find attached an example...
  37. What is the best way for search a string value in an XML file

    Hi all, I have the following problem :

    I have a list of XML files that contain data for an application. I need to loop through each of those files to find a search string. If found I need to store...
  38. Replies
    2
    Views
    553

    Re: show forms

    form2 objFrm = new form2();
    // shows in modal
    // objFrm.ShowDialog();
    objFrm.Show(); // shows form in normal mode
  39. Replies
    4
    Views
    4,340

    Re: Serializing List

    Yep, I ended up doing a custom serializable class storing only the FileName, Extension and Fullpath properties. Seems that serializing a List<CustomClass> works well. Thanks for the help anyway :)
  40. Replies
    4
    Views
    4,340

    [Resolved] Serializing List

    Hello all, i'm facing problems to serialize a generic list of FileInfo classes. My problem is that I need to retrieve the list of files in a directory and then save that list. The idea is to...
Results 1 to 40 of 382
Page 1 of 10 1 2 3 4



Click Here to Expand Forum to Full Width