Search:

Type: Posts; User: Montgomery

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. VS 2019 Re: [RESOLVED] Why my command buttons now have a SHADOW ?!?

    thanks HEAPS !!!! :)
  2. VS 2019 Re: Why my command buttons now have a SHADOW ?!?

    Here is a view of my project properties:

    184430
  3. VS 2019 Re: Why my command buttons now have a SHADOW ?!?

    I have not done either ... disabled visual styles or disabled the application framework altogether in the project properties. What am I supposed to do to fix this?
  4. VS 2019 Re: Why my command buttons now have a SHADOW ?!?

    Here is the view in Design mode:
    184427

    Here is what I get when I run the project:
    184428
  5. VS 2019 [RESOLVED] Why my command buttons now have a SHADOW ?!?

    I have created a new Windows Forms vb.net project and now when I create a command button, I am getting a shadow for each command button when the project runs .... in the design view there is no...
  6. VS 2019 Re: How to write data to an Excel sharepoint file ?

    Thanks for your help in pointing these out. Unfortunately I don't know how to convert these to VB. I have seen some of these links before and to be honest all I want to do is to write to specific...
  7. VS 2019 Re: How to write data to an Excel sharepoint file ?

    Anyone with any ideas here?
  8. VS 2019 Re: [RESOLVED] Cannot update a simple Access DB Date/Time field

    Many thanks for your advice ... I have simplified the code along the lines you have suggested.
  9. VS 2019 Re: Cannot update a simple Access DB Date/Time field

    Thanks for the suggestion ... but if I do this the SAME error is obtained. I have tried all sorts of things. I have discovered that the trouble is that since Now = 2 January 2022 this is an...
  10. VS 2019 [RESOLVED] Cannot update a simple Access DB Date/Time field

    At the moment, for some unknown reason my code is generating the following error:
    183498

    Here is the code:


    Private Sub cbSetTestField_Click(sender As Object, e As EventArgs) Handles...
  11. VS 2019 How to write data to an Excel sharepoint file ?

    I am very familiar in using VB.net to write data to an Excel file that is on some local drive (e.g. c:\thisfolder\anotherfolder\thefile.xlsx), but not to writing data to an Excel sharepoint file. ...
  12. Replies
    4
    Views
    1,165

    VS 2019 Re: Problem with Portnumber 55001

    ok .... this is weird .... now it is working without any trouble !!! Bizarre since I did do a restart as part of my fault finding. I will say it is cured now ... don't know though what it was !!!!
  13. Replies
    4
    Views
    1,165

    VS 2019 Re: Problem with Portnumber 55001

    Yes understood .... I know of no other app that has been recently installed or updated that could be interfering with this.
  14. Replies
    4
    Views
    1,165

    VS 2019 [RESOLVED] Problem with Portnumber 55001

    I have been using PortNumber 55001 flawlessly for years and today this will not run on my Windows 10 PC (same machine I have been using for years). This is part of a server setup using TCP to...
  15. Replies
    2
    Views
    695

    VS 2019 Re: Problem with Form

    Thank you very much ... yes I did introduce something like that. Problem solved !!
  16. Replies
    2
    Views
    695

    VS 2019 [RESOLVED] Problem with Form

    I have some code that previously took the user from a menu form (that closes) to a show a form called frmIndividualTimes ... this now flags as an error and my project will not run.


    Private Sub...
  17. VS 2017 Re: Where should place this ELSE?

    Try getting rid of the first End If statement.
  18. Replies
    2
    Views
    2,134

    VS 2017 Re: BoxPlot Chart issue

    I have my values in an Array called ThisArray and I want to see a box and whisker plot that shows the maximum and minimum values, the upper and lower quartiles and the median etc. I am not able to...
  19. Replies
    2
    Views
    2,134

    VS 2017 BoxPlot Chart issue

    I have had success in adding a succession of points to a scatterplot type chart using Visual Basic coding. This is via the command Chart.Series("MySeries").Points.AddXY(MyX, MyY). The issue at...
  20. VS 2019 Re: Not a valid icon file error message

    I have now found a way where it works. When I download the converted .ico file, I just make a copy of it and then place in my resources folder for the VB application. So at this point my issue is...
  21. VS 2019 [RESOLVED] Not a valid icon file error message

    I am trying to load an icon file for my VB application. This icon will be in place of the default application icon when the application runs. Currently I am getting no success with the following...
  22. Re: Syntax Error in INSERT INTO Statement .....

    Thank you for this advice ... yes the field name Position WAS the cause of the issue. Changing it to JudgePosition is now ok and it runs with no issues. Much appreciated.
  23. [RESOLVED] Syntax Error in INSERT INTO Statement .....

    I am using connection strings to write to an Access file using OLEDB connection. I cannot for the life of me know why in two very similar occasions, it works well and not in the other. Firstly I...
  24. VS 2010 Re: Problem UPDATING an Access File Table using OLEDB

    Thank you very much ... this type of help is greatly appreciated. All is working now :cool:
  25. VS 2010 [RESOLVED] Problem UPDATING an Access File Table using OLEDB

    I have an Access file with a Table called Competitors which I need to update .... the DataType of Surname, FirstName, Code and AthleteAgeGroup are all Short Text and are to be updated. By some trial...
  26. VS 2010 [RESOLVED] Now chart series is not being recongnised ..... HELP !

    I have been working away for a couple of hours ... my chart in a form is dynamically updating according to my code. This code draws a square on a chart. Then I added another chart to the form and it...
  27. VS 2010 Re: Can I change the coordinates of a point in a XY chart ?

    Thanks for this.
  28. VS 2010 Re: Can I change the coordinates of a point in a XY chart ?

    Hangon ... I just moved the Application.DoEvents() command AFTER the re-plotting and it works !!!!!
    I can see the point move .... YAY !!!
  29. VS 2010 Re: Can I change the coordinates of a point in a XY chart ?

    I have tried that and you don't see any of the intermediate positions ... just the final position. Doing this ... you see the initial position and just the final position. I have even tried putting...
  30. VS 2010 [RESOLVED] Can I change the coordinates of a point in a XY chart ?

    I have an XY (scatter graph) chart object and I know how to ADD points to the chart at run time using code such as:

    MyScatterChart.Series("Series2").Points.AddXY(x, y)

    What I want to do is to...
  31. VS 2010 Re: [RESOLVED] Exe file does not run outside of its place in the Visual Studio folder

    Yes I have now included that and it works, although it did without that.
  32. VS 2010 Re: [RESOLVED] Exe file does not run outside of its place in the Visual Studio folder

    I guess I have learnt that if you have other components in your project, then the exe file is not all that the user might need to run the application. So far all of my VB projects have not needed...
  33. VS 2010 Re: Exe file does not run outside of its place in the Visual Studio folder location

    I think I have found the solution. My application has a .DLL file, which is a resource which enables my program to plot a histogram. You need to have the following files WITH your .exe file to...
  34. VS 2010 Re: Exe file does not run outside of its place in the Visual Studio folder location

    Absolutely nothing .... same as before.
  35. VS 2010 [RESOLVED] Exe file does not run outside of its place in the Visual Studio folder location

    I have a perfectly correct VB program that runs without error within the Visual Studio folder environment ... this file is called How Many Trials.exe. You simply double click on it, and it runs,...
  36. VS 2010 Re: Label array initialization problem

    Thanks very much that has solved my problems. I greatly appreciate your assistance.
  37. VS 2010 Re: Label array initialization problem

    I have now traced an error due to the following code:


    Private Sub nudButtons_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles nudButtons.ValueChanged
    ...
  38. VS 2010 Re: Label array initialization problem

    I made an error with the Dim Person(20) statements ... I didn't declare the size ... now I will go and see if it all works now.
    Yep ALL works now with the suggestions ... but ..... see the next post.
  39. VS 2010 Re: Label array initialization problem

    Now the same error occurs, after following your advice:


    Public Sub InitializeForButtons()
    ''Dim Person() As Label = {frmButtons.La19, frmButtons.La20, frmButtons.La21, frmButtons.La22,...
  40. VS 2010 Re: Label array initialization problem

    The method I have used has worked for me many times before. But I will try what you say.
Results 1 to 40 of 55
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width