Search:

Type: Posts; User: Joye

Page 1 of 7 1 2 3 4

Search: Search took 0.03 seconds.

  1. Replies
    11
    Views
    7,446

    VS 2019 Re: How to Search a DataGridView using TextBox?

    That worked :bigyello:

    I think the problem solved
    I just needed to set my datagridview with this behavior properties:
    AllowUserToAddRows set to False

    and my final code was :


    Private...
  2. Replies
    11
    Views
    7,446

    VS 2019 Re: How to Search a DataGridView using TextBox?

    No No No I just needed a push to the right way..
    I think I'm on now and confident enough to go through..

    Thank you very much and I know you from a long time on this great forum and I already know...
  3. Replies
    11
    Views
    7,446

    VS 2019 Re: How to Search a DataGridView using TextBox?

    Yes I'm using ADO.NET and the whole grid is bound to an Access data table.
    Searching in how to use DBNull.Value?


    This case is true but I need to know how to not include it from the same search...
  4. Replies
    11
    Views
    7,446

    VS 2019 Re: How to Search a DataGridView using TextBox?

    I came up with the idea of using CStr that might handle Nulls



    Private Sub Button38_Click_1(sender As Object, e As EventArgs) Handles Button38.Click

    Dim temp As Integer = 0
    ...
  5. Replies
    11
    Views
    7,446

    VS 2019 Re: How to Search a DataGridView using TextBox?

    I will make sure I will learn how to do that in a short time.




    Exactly What I need:http://yoursmiles.org/tsmile/rulez/t2005.gif


    How to fix the code to take that into account?
  6. Replies
    11
    Views
    7,446

    VS 2019 How to Search a DataGridView using TextBox?

    So I'm using this code to search in all cells:






    Private Sub Button38_Click_1(sender As Object, e As EventArgs) Handles Button38.Click
    Dim temp As Integer = 0
    For i...
  7. VS 2015 Re: How to communicate with a USB device from my program?

    That was really helpful ��
    Thank you for the keyword I was looking for ����

    Still wating for the second part of my Question and I believe it’s called somehow a (Dongle) and you cant use the app...
  8. VS 2015 Re: How to communicate with a USB device from my program?

    Thats great ����
    So please share your experience if possible and where I can find the instructions for that..

    For the next part, yes it is the same and I hope and I’m sure someone could help...
  9. VS 2015 How to communicate with a USB device from my program?

    It might not be clear from the title but I will try to make it as simple as I could.

    I want to get a new PC with only windows 7 or 10 on it, then I want to make a program that runs once windows...
  10. VS 2015 Re: [RESOLVED] How to Duplicate a Panel with it's all controls?

    Doing now
    Really Happy to solve this and many problems on this great Forum.
    Thank you very much
  11. VS 2015 Re: How to Duplicate a Panel with it's all controls?

    That worked Just fine :thumb: :check::check:
    But guess what?
    I needed to make a new blank project other than the one I was testing on and it worked.
    So i'm wondering if there are some properties...
  12. VS 2015 Re: How to Duplicate a Panel with it's all controls?

    I really do appreciate that.
    Thank you very much.🙏🏼
    One more thing I noticed:
    While trying to solve the problem I deleted all instances from that UserControl on the main form and kept only one...
  13. VS 2015 Re: How to Duplicate a Panel with it's all controls?

    Great it Amazed me how easy it was :thumb:
    but there is something is not going very well :ehh:
    when running the application with three instances and start changing the text inside textboxes it...
  14. VS 2015 Re: How to Duplicate a Panel with it's all controls?

    Okay that worked fine :thumb:

    I Added the a UserControl that user control has no panel and I manged to move it by mouse in run time then I added this control twice on the same form and worked fine...
  15. VS 2015 Re: How to Duplicate a Panel with it's all controls?

    Fully understood.
    I will try this and see
    Thank you very much
  16. VS 2015 [RESOLVED] How to Duplicate a Panel with it's all controls?

    So my project is something like Trello but program but with some special editing made for my work needs.

    I made one panel with all needed controls and codes and I also changed the names of...
  17. VS 2015 Re: RightToLeft Alignment dosn't work when assigned to (Application Settings)

    I have 2 textboxes are meant to be used for two Languages and one of them should be right to left and the other is English so at run time user can decide what language he wants to use and for that...
  18. VS 2015 RightToLeft Alignment dosn't work when assigned to (Application Settings)

    On my form there are two textboxes called (Subject1) & (detail1)
    When using the flowing code without assigning the them to (Application Settings) they work fine and I can set them at run time to...
  19. VS 2015 Re: Saving All Changes For All Controls Location,Size and Texts?

    Done ✅
  20. VS 2015 Re: Saving All Changes For All Controls Location,Size and Texts?

    I can't believe that worked :eek:

    It really saved me a lot of time and effort :thumb:
    and guess what?
    In my project user can move some controls, location information are part of the user...
  21. VS 2015 [RESOLVED] Saving All Changes For All Controls Location,Size and Texts?

    I wonder if there is a simple code that could save all controls locations X & Y for all controls,sizes and Texts as it is after closing the form?
    So what ever on that form can be changed, it can be...
  22. Replies
    5
    Views
    1,035

    VS 2015 Re: Changing X Location of Panel

    That Worked perfectly :thumb:
    Thank you very much
  23. Replies
    5
    Views
    1,035

    VS 2015 Re: Changing X Location of Panel

    Okay, it worked perfectly this way but I needed to remove ( <= ) Because it says ( Expression Expected )

    and it works this way now:


    If newpoint.X >= 250 Then
    newpoint.X = 350
    ...
  24. Replies
    5
    Views
    1,035

    VS 2015 [RESOLVED] Changing X Location of Panel

    In my form i'm trying to move panels around so I manged to make them move with the mouse to be located anywhere on the form. Now to mange these movements I made some limits to the location X to be in...
  25. Replies
    6
    Views
    2,939

    VS 2015 Re: Drag & Drop GroupBox into Panel

    Thank you very much
    I decided to only move things around instead of drag and drop and it's working so far..
  26. Replies
    6
    Views
    2,939

    VS 2015 Re: Drag & Drop GroupBox into Panel

    While Debugging (running) :)
  27. Replies
    6
    Views
    2,939

    VS 2015 Re: Drag & Drop GroupBox into Panel

    Okay, that's what I have done so far and succeeded with:

    -This is the form example:
    164489

    -All controls are allowed to drag and drop

    -This is my code:
  28. Replies
    6
    Views
    2,939

    VS 2015 [RESOLVED] Drag & Drop GroupBox into Panel

    Hi everyone

    So my issue is that I want to drag a GroupBox that contains some controls to be dropped inside a Panel control and it should be in order to stick to the left side and under other...
  29. VS 2008 Re: DateTimePicker Language and settings are changing!!

    Some of the sittings
    162689
  30. VS 2008 Re: DateTimePicker Language and settings are changing!!

    Well,there is a good reason for that. Actually the program takes the (.Text) of the DateTimePicker and transfers it to an Excel sheet where there is an OFFICIAL form and the Date must be in English...
  31. VS 2008 DateTimePicker Language and settings are changing!!

    I have a DateTimePicker tool on my project form and it's all fine on my PC, but when trying to test it on other machines it's language and settings changes according to the PC running the program.
    ...
  32. Replies
    2
    Views
    1,910

    VS 2015 Re: Operation must use an updateable query" error

    Very informative
    Thank you very much
    I Will try that and respond and follow all your recommendations because they simply make sense and right to do from the beginning.
  33. Replies
    2
    Views
    1,910

    VS 2015 Operation must use an updateable query" error

    So I have a datagridview which connected to a (.mdb) database.
    And when using Microsoft Access databases with ADO, it is necessary to give the user Write permissions on the directory containing the...
  34. Replies
    13
    Views
    2,737

    VS 2015 Re: Determining OS and Processor Problem!

    Such A Relieve :)
    I'm going to try that out on many devices
    Thank you very much
  35. Replies
    13
    Views
    2,737

    VS 2015 Re: Determining OS and Processor Problem!

    So your suggestion is if (System.Environment.Is64BitProcess = true) I handle the user a x64 version of my program and if not I just handle him x86?

    Is it that easy??

    Because I was so confused...
  36. VS 2015 Re: How to determine if ACE.OLEDB.16.0 provider is registered on the user machine or

    I tried it this way:



    Public Class Form1
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim ace_registry As Object =...
  37. VS 2015 How to determine if ACE.OLEDB.16.0 provider is registered on the user machine or not?

    So my program needs ACE.OLEDB.16.0 provider to be registered on users machine and I want to know if he already has it or not so I can install it for him from my project installer.

    How can I...
  38. Replies
    13
    Views
    2,737

    VS 2015 Re: Determining OS and Processor Problem!

    The reason is I want to determine what Active solution I should use with the user like If i should use:
    x86?
    x64?
    Any CPU (prefer 32 Checked)?
    Any CPU (prefer 32 Unchecked)?

    and then know what...
  39. Replies
    13
    Views
    2,737

    VS 2015 Re: Determining OS and Processor Problem!

    Then what Exactly I need??
  40. Replies
    13
    Views
    2,737

    VS 2015 Re: Determining OS and Processor Problem!

    Then what Exactly I need??
Results 1 to 40 of 256
Page 1 of 7 1 2 3 4



Click Here to Expand Forum to Full Width