Search results for query: *

  1. M

    How to use SVN

    Thanks that's very useful to know :)
  2. M

    How to use SVN

    I am confused about how to use VisualSVN in Visual Studio , although the same would apply to any subversion. Some very Basic Questions I have are. I open My project from my projects folder. Using Visual SVN . I create a new repository at say "C:\Repositories" and import it there. I make a few...
  3. M

    After Updating a windows forms app to .Net5 I have one more error to resolve ( I started with over 1500!)

    Thanks for reply Yes I have added a few . I had to, to get rid of the errors. But I'm pretty certain I have no duplicates though. I did replace and rename a complete form but I have removed the old one from the project. I checked the project file but they look completely different once you...
  4. M

    After Updating a windows forms app to .Net5 I have one more error to resolve ( I started with over 1500!)

    I'm just updating a medium sized windows forms app To .Net5 The last problem I have is Error MSB3577 Two output file names resolved to the same output path: "obj\Debug\net5.0-windows\MyAppName.Resources.resources" MyAppNameC:\Program Files (x86)\Microsoft Visual...
  5. M

    Post data to web server

    I am trying to post data to a webserver on my network. I've never had anything to do with PHP HTTP etc nothing and no real idea what/how it all works If I type into my browser "http://192.168.1.105/emoncms/input/post.json?node=1&csv=100,200,300" and hit enter the data gets posted Ok but how do...
  6. M

    Datagridview.forecolor won't change!

    Damn I have to admit it was my fault all along :blue: what had happened was that when I did all the above, the cellFormatting event handler was disconnected from the grid. When I realised and put the handler back in. it stopped working again and it was very obvious why! I had code that changed...
  7. M

    Datagridview.forecolor won't change!

    Just thought I would leave my method of solving this problem in case it happens to anyone else. I added the code to change forecolor in another grid on a different form but used the same methods as the one I was having trouble with. This worked perfectly. I treble checked my code wasn't...
  8. M

    Datagridview.forecolor won't change!

    Yes I agree that's a good strategy, the original project is quite complex and large with the grids on home made user controls etc so was hoping I wouldn't have to go down that route lol
  9. M

    Datagridview.forecolor won't change!

    Thanks That sort of proves that something else must be happening here. I'm almost certain that I had this working before too ! just can't figure out what might be stopping it working. I tested the code is providing the right colors to the datagrid by stepping through it. I'll just keep...
  10. M

    Datagridview.forecolor won't change!

    Hi all I have a fairly basic problem that I just can't solve. I am trying to change the font color in a collection of grids everything else like background color font etc works ok but I cant get the forecolor to change. I have tried DataGridView1.ForeColor = blahblah.color and...
  11. M

    setting is not a Valid Identifier

    Ah! I see. Thanks I can see now, why they didn't use this method before then, although I suppose it would be quite easy to add an underscore at the beginning. Thanks for you help Mike
  12. M

    setting is not a Valid Identifier

    "Hi I converting a VB.net application to vb.net 2013 and one of the things I am doing is converting a homebrew config file to My.settings. To get started I began typing in some of the identifiers, some had spaces and they weren't accepted but I easily got round that by using underscores but...
  13. M

    will timers be reset if PC Hibernates and then resumes

    Yes that's what I thought! without the extra code that I wrote to work around the non-existent problem with the timers the Load form code just makes sure the timers are set up to start exactly on the quarter hour then leaves them alone. So in the case of a restart they would be set up again and...
  14. M

    will timers be reset if PC Hibernates and then resumes

    Thanks I know the time will be correct but I am using a set of timers that do the various jobs needed. I would have thought a timer doesn't know or need to know the correct time and that when resumed it would carry on from where it was? That is what I assumed but It seems this is wrong...
  15. M

    will timers be reset if PC Hibernates and then resumes

    I have an App that needs to log Data exactly on the quarter hour.(amongst other things) We have had some power outages lately and the code as is, does not always restart gracefully depending on the outage(very quick off and then back on seems to be the culprit) So I have installed a UPS and...
  16. M

    I can only get 1 document window open at a time

    Thanks I tried that but it didn't help. It happens on all my solutions so I guess it can't be just one corrupted file. Mike
  17. M

    I can only get 1 document window open at a time

    By the way that didn't solve the problem where when i re-open the ide the old documents I had open in my previous session are not open. can you help with this one please? Mike
  18. M

    I can only get 1 document window open at a time

    thanks very much !:D
  19. M

    I can only get 1 document window open at a time

    when I click on a document (class,form or module) in the solution explorer It replaces the document I have open. in other words instead of leaving the original document in another tab the tab closes and is then replaced with the new document. leaving only one tab not two IYSWIM I have been...
  20. M

    Removing a class Template - How?

    Ok for the sake of someone else who might have this problem I have found that the templates are stored in your VBprojects folder of all places! and that you can delete them from there.
Back
Top