Search:

Type: Posts; User: dinosaur_uk

Page 1 of 13 1 2 3 4

Search: Search took 0.16 seconds.

  1. Lookup Multiple Datatables into 1 datatable

    dt1

    ID Animal
    1 Monkey
    2 Cat
    3 Dog
    4 Fish

    dt2
  2. Replies
    5
    Views
    818

    VS 2005 [RESOLVED] SQL Nightmare! Please help

    Hi there,

    I have a tricky SQL problem which I have been trying to solve.

    Sales Table
    ID ItemNo SaleDate SalesID
    1 123 01/01/2011 100256
    2 ...
  3. Replies
    7
    Views
    1,122

    VS 2005 Re: Logic for filling circles in a rectangle

    Yeah, but i need draw at runtime and the number of circles in the zone is dynamic
  4. Replies
    7
    Views
    1,122

    VS 2005 Re: Logic for filling circles in a rectangle

    I've got as far as the rectangle zones, but i need the circles to fill inside these rectangles...
  5. Replies
    7
    Views
    1,122

    VS 2005 Re: Logic for filling circles in a rectangle

    How difficult is it to use these powerpacks?
  6. Replies
    7
    Views
    1,122

    VS 2005 Logic for filling circles in a rectangle

    Hi All,

    I am struggling with coding up a bit of logic.

    I have a map which I have created zones which are basically rectangles which have the coordinates sorted

    eg
    Zone 1
    Zone 2
    Zone 3
  7. Re: [2005] Strange Problem. System.EnterpriseServices.dll

    Sorted this problem!

    Simply put ";OLE DB Services = 0;" behind your connection string and it will prevent OLE DB from accessing that service.
    ...
  8. VS 2005 [RESOLVED] How to pick up all Datagrids in a form.

    Hi there,

    I have lots of datagrids on one form. However, the datagrid controls are all on different tabpages and tablelayoutpanels.

    How can i programmatically "pick" up all the datagrid in one...
  9. VS 2005 Integrating/Linking between Clickonce Apps

    Hi all,

    I have one form which i would like to use as a portal to all my clickonce applications which i have created.

    How do i programmatically fire up another clickonce application?
    ...
  10. Replies
    7
    Views
    941

    VS 2005 Re: RegEx questions!

    ' Regex match
    Dim options As RegexOptions = RegexOptions.None
    Dim regex As System.Text.RegularExpressions.Regex = New...
  11. Replies
    7
    Views
    941

    VS 2005 Re: RegEx questions!

    ' Regex match
    Dim options As RegexOptions = RegexOptions.None
    Dim regex As System.Text.RegularExpressions.Regex = New...
  12. Replies
    7
    Views
    941

    VS 2005 Re: RegEx questions!

    Ok,

    I've found that I can use the following regex to pick up the link, but how do i capture the text?

    (<link>) will capture the first one, but how do i know when it is ending?

    <[^<]+?> will...
  13. Replies
    7
    Views
    941

    VS 2005 [RESOLVED] RegEx questions!

    :wave:Hi all,

    I am a RegEx virgin and have no idea where to start. I have three questions which i would be more than gratefull if you could help me.

    1. Where is the best place to start learning...
  14. VS 2005 Re: Screen capture of a MDI children

    That worked a treat! Thanks!
  15. VS 2005 Re: Screen capture of a MDI children

    It is not copying the exact dimensions... it is copying abit of the MDI parent too...
  16. VS 2005 [RESOLVED] Screen capture of a MDI children

    All

    I am trying to get the screen capture of a MDI children form. Somehow it is just not working.

    Does anyone know where i am going where here?

    Cheers

    Ken
  17. VS 2005 Re: SQL help! What am i doing wrong?

    Ahhh all resolved guys!

    Thanks, it was the )
  18. VS 2005 [RESOLVED] SQL help! What am i doing wrong?

    Hi all,

    The following code


    Function AddToDatabase(ByVal TAG As String, ByVal EquipmentType As String, ByVal Description As String, ByVal Status1 As String, ByVal Status2 As String, ByVal...
  19. Replies
    10
    Views
    863

    VS 2005 Re: [RESOLVED] Sorting a datatable out?

    Is there a way of doing this in SQL query?
  20. Replies
    10
    Views
    863

    VS 2005 Re: Sorting a datatable out?

    This is brilliant! It works!

    I need to work this out in my head now....
  21. Replies
    10
    Views
    863

    VS 2005 Re: Sorting a datatable out?

    Thanks dude,

    my code at the moment is crazily long....and it still doesnt work!
  22. Replies
    10
    Views
    863

    VS 2005 Re: Sorting a datatable out?

    Bugger, can it not be done in VS2005?

    :(
  23. Replies
    10
    Views
    863

    VS 2005 Re: Sorting a datatable out?

    I just want to put it in another datatable.
  24. Replies
    10
    Views
    863

    VS 2005 [RESOLVED] Sorting a datatable out?

    All,

    I have a problem which I am struggling to efficiently put into code. I have a datatable

    ID | NAME | DATE | JOB
    0 | Joe | 01/01 | Selling
    1 | Bob ...
  25. Replies
    26
    Views
    151,067

    Re: VB - Color a row in a ListView

    Is it possible to colour the first Column and second column programatically?
  26. Replies
    1
    Views
    516

    Getting Range from selected Chart

    Hi there!

    I am a newbie in VBA and i am desperately trying to understand how the charting works in excel.

    I want to detect the data behind a selected chart.


    Dim Charty As Chart
    Dim sel...
  27. Re: [2005] Excel Automation - Copy and paste using VB.Net Late Binding

    it stops at this line

    oSht1.Range("A8:E44").Select() = True

    Error is :
    {"Public member 'Range' on type 'Boolean' not found."}
  28. [2005] Excel Automation - Copy and paste using VB.Net Late Binding

    Hi there,

    I have a background worker which takes one excel file, opens it, copys a range of cells and pastes it into another excel file.

    I have been bashing my head against the wall now and...
  29. Re: [2005] Merging 5 datatables using first Column as key

    What if one of my datatable is from another source?
  30. Re: [2005] Merging 5 datatables using first Column as key

    how do i do that at the database level?
  31. [2005] Merging 5 datatables using first Column as key

    :confused: Hi all.

    This has got me stuck for days and days now!

    I've got a whole lot of datatables and the first column is the same for all 5 database (ie date)

    How do i merge all of them...
  32. Replies
    3
    Views
    575

    Re: [2005] ClickOnce

    Are you running the clickonce from the pc you are programming from or a user pc? Coz it might be the .Net framework. I am facing the same problem.
  33. [2005] Strange Problem. System.EnterpriseServices.dll

    Hi All.

    Please help! I am about to pull all my hair out! I have recently developed a small program which SQL's a MS Access database on a shared folder.

    I published it to the network folder and...
  34. Re: [2005] EXE showing error in other systems

    Is it possible to publish this software and to get it to run properly without the MDAC? I thought that oledb was in the .Net 2.0 framework?

    I am experiencing the same problem of publishing a...
  35. [2005] Inserting Datatable straight into Access Database

    Hi All!

    Hope you all are well.

    I am basically storing all my user input into a datatable, and when the user finishes, i want to send that datatable into an Access Database.

    Is there a quick...
  36. [RESOLVED] [2005] Datarow expression filter but display only certain columns?

    Hi Folks!

    Is it possible to filter a datatable and get the datagridview to only display certain columns after the filter?

    cheers
  37. Re: [2005] How to time out a procedure

    it takes a long time as sometimes people do not have the network drive mapped or have access to it
  38. [RESOLVED] [2005] How to time out a procedure

    Good day all

    I am trying to check if a file exists for a path, but how can i put a timer on this so that if it is not working then it will time out instead of taking a long long time to send the...
  39. How to show owner form ontop of the other

    I am creating an instance of a secondary form

    Dim frm as frmSecondary
    frm.show(me)

    But the secondary form is always over the initial form, how can i force the original to be ontop of the...
  40. Replies
    4
    Views
    1,537

    Re: [2005] Help with "non-zero Size" error?

    Private Sub btnLoad_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnLoad.Click
    If Me.cboField.SelectedIndex = -1 Then
    Exit Sub
    End If

    ...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width