Search:

Type: Posts; User: meboz

Page 1 of 2 1 2

Search: Search took 0.04 seconds.

  1. Replies
    0
    Views
    438

    XML Serialization

    Hi All,

    Could someone tell me how to go about serializing objects with XML attributes to get to the following XML?

    <Listing name="something>
    <Classification...
  2. Thread: Desktop repaint

    by meboz
    Replies
    0
    Views
    413

    Desktop repaint

    Can anyone tell me how I can capture the repainting of the desktop?

    I want to build a programme that fires and event when the desktop is shown, like when the last window is minimized.

    cheers
  3. Thread: Unit testing

    by meboz
    Replies
    1
    Views
    572

    Unit testing

    Does anyone know of a good unit testing forum?

    cheers
  4. Replies
    1
    Views
    505

    SQL Server Reporting Services 2000

    Hi,

    Can anyone explain why when I change the default parameters in a report (rdl) and re-deploy the report to the report server, the changes are not reflected?

    Have I explained this clearly?
    ...
  5. Re: "Show that the sum of the first 2n natural numbers is n(2n+1)"

    try mathematical induction
  6. Replies
    2
    Views
    596

    Re: Chance happening within chance group

    When I was at school, probable was defined as > 1/2.

    Your definition seems to be interesting:

    'Probable' is the chance of returning a favorable outcome after n-trials where each trial has n...
  7. Replies
    22
    Views
    1,035

    Re: Solve a problem here and prove urself.. :afrog:

    1.1998852139365e+59
  8. Replies
    2
    Views
    547

    Re: Display all months in time-series data

    it accesses a bunch of CSV files directly, and this cant be avoided unfortunately
  9. Replies
    13
    Views
    1,908

    Re: Problem With Square Root and Quadratic Formula

    isnumeric will do the job but is a legacy function, correct?

    im curious to know what the best way of validating a text box for numeric data.

    currently i would use a regex, but is there a...
  10. Replies
    2
    Views
    547

    Display all months in time-series data

    Hi all,

    I got a report that shows total leave taken (hours) for each month for the past 12 months, as a graph.

    This graph appears for each department in my company.

    Now, when the department...
  11. Thread: Tough Puzzle

    by meboz
    Replies
    9
    Views
    782

    Re: Tough Puzzle

    the problem reduces to a pair of simultaeneous equations as follows

    0 = a*sin(pi/6) [from f(x)]
    0 = 2a*cos(7*pi/6) [from f'(x)]

    in that case, a is always 0, a very boring solution, correct...
  12. Thread: Tough Puzzle

    by meboz
    Replies
    9
    Views
    782

    Re: Tough Puzzle

    i dont believe there is a solution to this problem
  13. Replies
    13
    Views
    1,908

    Re: Problem With Square Root and Quadratic Formula

    have you considered the case of a = 0?

    or when the solutions dont exist in R? eg the discriminant < 0?
  14. Replies
    2
    Views
    550

    Re: Status Bar location in a Form

    set the forms dockpadding property for the 'bottom' of the form to be a number higher than zero
  15. Thread: GAC Issue

    by meboz
    Replies
    3
    Views
    614

    Re: GAC Issue

    i did but failed
  16. Replies
    3
    Views
    580

    Re: Table locking in MS Access

    why dont you use the locking options in the OledbTransaction class when you create the transaction?
  17. Thread: GAC Issue

    by meboz
    Replies
    3
    Views
    614

    GAC Issue

    Hi all

    I have a bunch of assemblies listed in the GAC, and I want to add a reference to them in my project, which I understand cannot be done directly.

    I would like the said assemblies, namely...
  18. Replies
    12
    Views
    957

    Re: DataReader laughing at me!

    when you add parameters, shouldn't you create a new instance of a parameter then add it to the command?
  19. Replies
    5
    Views
    598

    Re: Please Help with regex

    how does that work? i thought reg expressions were only used to test matches?

    not extract a substring

    EDIT: I see, Value property of the match function. Thats neat
  20. Replies
    40
    Views
    2,268

    Re: Is there any Function or Method to do this?

    you can generalise that formula...

    Heres how I interpreted the problem....

    How many combinations of array of size 1xn can be made, where each element can be chosen from i number of elements?...
  21. Replies
    5
    Views
    598

    Re: Please Help with regex

    i dont think that regex is the way that should be approached, however, if you mustuse that technique here is a good website for regex stuff
    ...
  22. Replies
    30
    Views
    41,708

    Re: "True Random" Number Generator

    your right phill, my mistake.
  23. Replies
    7
    Views
    703

    Re: newbie excel programming help

    heres an example of a dll reference through the command line.

    not sure if its the same for com objects

    C:\...\Work> vbc.exe /t:exe Main.vb /r:Customer.dll
  24. Re: DataGrid - Can Individual Cells be ReadOnly?

    is it possible to capture the keydown event, or mouse enter event for a cell? you could maybe use that
  25. Replies
    3
    Views
    545

    Re: Sub-class within form class

    the only time i will be needing this class is when the form is being used.

    im attempting to simplify some coding that populates a dialog form called from a number of comboboxes on the main form. A...
  26. Replies
    3
    Views
    545

    Sub-class within form class

    Hi all,

    I have a sub-class within a form. Perhaps not the best way to achieve my goal but this question is valid.

    I have a public member of the Form class which is set to the form itself in...
  27. Replies
    5
    Views
    529

    Re: starting vb .net need some help

    the command line compiler is vbc.exe.
  28. Replies
    30
    Views
    41,708

    Re: "True Random" Number Generator

    hey there,

    this thread caught my attention cos im interested in the randomness of the random class.

    if you adjust your code behind the form to look something like this.

    Private Sub...
  29. Thread: Databinding

    by meboz
    Replies
    1
    Views
    522

    Databinding

    hi all

    i have comboboxes on a form that access lookup tables in database.

    I want to use databinding and have done so with all the data access stuff as components on the form.

    I would like to...
  30. Replies
    3
    Views
    607

    Re: A few questions...

    {0:c} converts a number to a sring representation of currency, i think

    eg . string.format("{0:c}",2000) would return $2,000.00, or something like that

    TypeOf returns the object type
  31. Replies
    18
    Views
    15,043

    Re: Ways to have a random colors in VB.Net?

    if randomize isnt used, you need to do something to the seed.

    ive noticed that if i have random number generating on a forms timer event that ticks in multiples of 1 sec, they are certainly not...
  32. Re: Inherit or interface, oop design question

    cheers

    ive gone for inheritance cos the inheriting classes are all basically the same, and i wont be need to implement polymorphism
  33. [RESOLVED] Inherit or interface, oop design question

    Hi all,

    I have a dialog box with a couple of comboboxes that retrieve their items from lookup tables in my database.

    I keep my lookup tables all the same with the following fields:

    ID
    Name...
  34. Replies
    2
    Views
    454

    Re: Get the name of the datatable

    come on guys and girls, there has to be a way to do this...
  35. Replies
    2
    Views
    454

    Get the name of the datatable

    Hi all

    I have a datagrid that uses a dataset as the datasource, and the dataset has multiple, unrelated datatables

    When I expand one of the datatables, is there a way to get the name of the...
  36. Replies
    8
    Views
    887

    Re: CSV to Access table

    ok, got it to work. I was missing the following line:

    Me.da_PhListRawData.Update(dt)

    i didnt realise that calling Update on the adapter that it executed the Insert command..

    thanks for all...
  37. Replies
    8
    Views
    887

    Re: CSV to Access table

    ok, i think im close. I am doing all this in the designer.

    Here is the SQL of the insert command, im sure thats causing the problem

    INSERT INTO [tblPhListRawData] (all the fields) VALUES...
  38. Replies
    8
    Views
    887

    Re: CSV to Access table

    ok.

    Ive got the adapter working. Ive set the insert command connection to my access database.

    DO i have to change the commandtext at all?

    Also, how do I use the datatable properly?

    Im...
  39. Replies
    8
    Views
    887

    Re: CSV to Access table

    ok. Im trying to connect to one of the CSV's.

    which driver do i use?

    Microsoft ISAM 1.1 OleDB
    Microsoft Jet 4.0 OleDB
    Microsoft OledDB Provider for ODBC datasources
  40. Replies
    2
    Views
    574

    Re: Is Threading Appropriate?

    thanks for that
Results 1 to 40 of 76
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width