Search:

Type: Posts; User: flycast

Page 1 of 9 1 2 3 4

Search: Search took 0.06 seconds.

  1. Re: Creating user settings on the fly and issue with debugging an app using user sett

    Thanks @Aaron Young. I like that even better.
  2. Re: Creating user settings on the fly and issue with debugging an app using user sett

    Thanks @jmcihinney. That make sense as to why creating new settings on the fly didn't work.
  3. Creating user settings on the fly and issue with debugging an app using user settings

    I need to be able to store user settings so that they can be retrieved the next time the app is run. Basically the settings I need to save are various paths for file opening and saving. Part of my...
  4. Adding a right button click menu option without a forms app running

    Using C#.

    I want to make a menu option that shows up when the right button is clicked and only a certain app is running. The right button menu option needs to be available at all times but only...
  5. Replies
    6
    Views
    1,917

    Re: Fastest way to convert 14 bits into decimal

    Massively better! Now we are in the sub millisecond for the conversion. Thanks for the help, I have learned a lot about byte conversions here!
  6. Replies
    6
    Views
    1,917

    Re: Fastest way to convert 14 bits into decimal

    To confirm. The unused bits in the case of Mono14 are zeros:



    Link to the standard.
  7. Replies
    6
    Views
    1,917

    Re: Fastest way to convert 14 bits into decimal

    Thank you. All good points.
    bits[] IS a BitArray.



    What is an ICD? I am not familiar with that acronym.
    I guess an unspoken assumption on my part is you can't trust the last two bits. I need...
  8. Replies
    6
    Views
    1,917

    Fastest way to convert 14 bits into decimal

    I am converting Mono14 data into decimal. Mono14 is a GenICam format where the decimal value of a pixel is the first 14 bits of two bytes. I need this to be very, very fast.

    My problem is...
  9. Replies
    0
    Views
    2,003

    Logging for multiple classes

    Writing a app with multiple classes. The classes are intended to become NuGet packages after I get the app and the classes developed. My questions is about logging. I have been using Serilog some and...
  10. Replies
    5
    Views
    2,325

    Re: Saving code for reuse - best practice?

    I was using cli. I am NOT a CLI guy! NuGet Package Explorer App ... so much easier!
    Thanks.
  11. Replies
    5
    Views
    2,325

    Re: Saving code for reuse - best practice?

    So...I am running into tons of issues with NuGet. Please see this SO post. Interesting that a Msft person is saying that NuGet docs are out of date.

    I have found that I can create a class project,...
  12. Replies
    5
    Views
    2,325

    Saving code for reuse - best practice?

    I am developing multiple apps that use the same code or need to do the same things. In this case I have a form that discovers cameras on a local network. The code depends on certain third party...
  13. Re: Database choices using EF - What are your thoughts?

    I agree.

    I am using Devart's Entity Developer to build all the EF code. I am having issues using anything but a "pure" path for the connection string:

    ...
  14. Re: Database choices using EF - What are your thoughts?

    An additional issues that I just ran up against as well. With the local SQLite the database is installed in the "c:\user\[current user]\AppData\Roaming/[App name]" folder on each machine. This means...
  15. Database choices using EF - What are your thoughts?

    I have written a app that uses SQLite and a local internal database. At the time I thought it would be simpler. The app was originally written for a single machine. Now we will be rolling the app out...
  16. Replies
    0
    Views
    403

    4.0 NuGet package for Windows App login?

    Looking to limit what users can view in a Windows c# desktop app. My thought is to make tab hidden or not hidden based on if the user is logged in and what their user level is. I could code this but...
  17. The specified metadata path is not valid after installing app

    Using EF 6 and Devart Entity Design and DotConnect for SQLite. I am having issues with the embedded database location when running in debug, release and after installed.

    It works just fine to copy...
  18. Confused about proper use of ErrorProviders

    I have 5 controls that I need to check for errors. I have set up all the events on text changed event and identified the errors properly. I was pointed to ErrorProviders as a way to display that the...
  19. Re: Two different custom forms with the same custom event

    jmcilhinney - Thanks for that.

    Question...what is the why behind keeping the standard pattern for events?

    *Edit*
    Quoting your blog:
  20. Re: Two different custom forms with the same custom event

    The current state is to define an Extended form that has the events and then inherit that with the forms:


    public class ExtendedForm : Form
    {
    public delegate void...
  21. Re: Two different custom forms with the same custom event

    Thinking deeper about #2 above and using reflection I can get the event by doing the following:



    var ev =...
  22. Two different custom forms with the same custom event

    I have two forms with the exact same event. The event has the exact same name and the exact syntax - everything.

    The two forms have the same customControl in them. I need to add event handlers in...
  23. Replies
    2
    Views
    1,523

    5.0 Re: Triggering a event on many controls

    Fantastic! I will try that first thing tomorrow morning.
  24. Replies
    2
    Views
    1,523

    5.0 Triggering a event on many controls

    What would be the "best" way to do this?

    I have a UserControl that contains a PictureBox, a TextBox and some other stuff . I want to get the pixel data from the mouse location from that image and...
  25. Resizing custom control in window - not resizing properly

    I have form holding a custom control. The custom control is just a GroupBox with a PictureBox inside:


    Form1
    - GroupBox
    - PictureBox

    I have that control placed in a form of it's...
  26. Replies
    2
    Views
    1,267

    4.0 Re: Images in a scrolling window

    Thank you very much! FlowLayoutPanel is exactly what I had in mind.
  27. Replies
    2
    Views
    1,267

    4.0 Images in a scrolling window

    I'd like to display images from a camera. As an image is taken it is displayed in the top of the form. When the next image is taken the top image moves down and the newest image is displayed (and so...
  28. Re: Adding a button to each row of a dataGridView and attaching an action

    Once again....spot on. Thanks!
  29. Adding a button to each row of a dataGridView and attaching an action

    I have a list of a custom class that I am doing a LINQ query and attaching the LINQ query result as the datasource. The list is intended to be a list of source and destination paths for file moves....
  30. Override ToString() for current element on a SortedList

    I am inheriting as SortedList and adding a few touches - like changing the add behavior to check for a value and add the value if it is not already there rather than throwing an exception.

    During...
  31. VS 2017 Re: Highlighting just certain text in treeView node text

    jmcilhinney. As always. Exceptional. Thanks for all your help over the years. I just learned a whole lot in this post alone.
  32. VS 2017 Highlighting just certain text in treeView node text

    I have a treeview that lists matches that are varying degrees of closeness to the original text. The nade is the original search text and the child nodes are the suggested matches. What I want to do...
  33. Replies
    8
    Views
    2,163

    VS 2017 Re: VB.NET - Table not saving data changes

    That helps, thanks.
  34. Replies
    8
    Views
    2,163

    VS 2017 Re: VB.NET - Table not saving data changes

    Ahhhhh.... thank you!
  35. Replies
    8
    Views
    2,163

    VS 2017 Re: VB.NET - Table not saving data changes

    Just as a quick comment...I think I am confused between all the different table classes...BindingSource, TableAdapter, AdapterManager, DataSet. I suspect that I am getting the wrong data from the...
  36. Replies
    8
    Views
    2,163

    VS 2017 Re: VB.NET - Table not saving data changes

    Thanks for that. Getting closer. It looks like I am having two issues:
    1) My row value I am getting is the old value before it was changed. How Do I get the current row value in the datagrid? My...
  37. Replies
    8
    Views
    2,163

    VS 2017 VB.NET - Table not saving data changes

    I have a DataGridView with a table. I have a event handler set up for RowLeave. The event is firing but the underlying data is not changing the the actual SQL table. What am I doing wrong? I need to...
  38. Replies
    3
    Views
    591

    VS 2017 Re: VS - Issues with breakpoints

    Same thing happens.
  39. Replies
    3
    Views
    591

    VS 2017 VS - Issues with breakpoints

    Not sure if this is the right place for this question...
    Using:

    VS Community 2017
    Version 15.5.2

    I am running an app in debug mode. I have a couple of "weird" things that are happening.

    I...
  40. Replies
    1
    Views
    373

    Problems with adding new column

    I have a local data connection sql table. I have a dataset, binding source and an adapter. Everything was working fine. I have written some code and have entered data into the table. Now I need to...
Results 1 to 40 of 352
Page 1 of 9 1 2 3 4



Click Here to Expand Forum to Full Width