Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by WomanPro

  1. WomanPro

    Crystal report doesn't display all records of the datagridview but olny the last one.

    I have created a back - end application in C# with embedded microsft sql server. I am pretty new to crystal reports and I had created one but in a wrong way and I am trying to correct it. I almost don't remember how I created and I feel bad for that. So, I have a form represent orders...
  2. WomanPro

    Where do we put public functions in C# (modules don't exist) ?

    In Visual Basic .net we have the modules to write public functions and routines in order to call them from several points of entire application. What about c# 2019? Modules don't exist in C#. Any suggestions please? Thank you so much in advanced. Example of a public void function, I have...
  3. WomanPro

    TextBox of user control NavigationBar gives flickering during reducting the height of the form.

    I have a form with specific minimum size 1100 x 800. My form has labels and textboxes in order to display all customers of a microsoft sql server database table. I also have a user control class which is a navigation bar for the records. The following code is my NavigationBar control class...
  4. WomanPro

    Insert into query adds records to unreadable format, how do I change that?

    Thank you so much, I finally used NChar and NText wherever it need and it definetaly worked with N char in the insert into query. Do I have to change the collation?
  5. WomanPro

    Insert into query adds records to unreadable format, how do I change that?

    Hello everybody, I use Microsoft SQL Server Management Studio 19.1 (Microsoft SQL Server 2022) I have created a database with one table Customers. When I run an INSERT INTO QUERY record is inserted but in unreadable format. INSERT INTO Customers (custID,custAFM,custDOY...
  6. WomanPro

    Trying to change all permsissions for a specific path under root with getting errors

    I am tryting to change permission for a specific path under root "C:\BackgammonTxt\AppDataFile.txt" With CreateNew sub I first create the folder BackgammonTxt and AppDataFile.txt to write data to it. CreateNew Sub takes part through installer class from ovverride install sub. But I am getting a...
  7. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    My machine that I write source code is 64bit, but I am targeting on any machine, that's why I have an apprehension if is a good solution or not.
  8. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    I tried the following and getting error unhandled exception, the parameter is incorrect. The following works fine in the installer class during installation without any error. Public Overrides Sub Install(stateSaver As IDictionary) '08062023 Dim SelectionValue =...
  9. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    I have a question please, you told me to run myinstaller with admin permissions, how can I do this with source code? I am thinking that in case a user installs the game on his machine, I want him to have automatically the rights for that, not facing any problem I haven't tried yes with...
  10. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    Yes, you are definately right and the reason for that is that the installer runs during installation as I mentioned above I have 3 projects in a solution: A project with an installer class and a registration license key form named RegistrationLicense (this runs during installation), the main...
  11. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    In the installer class I have the following code Public Overrides Sub Install(stateSaver As IDictionary) '08062023 Dim SelectionValue = Context.Parameters("SetupTypeValue") Dim myvalue = Integer.Parse(SelectionValue) mContextSelection = myvalue Const...
  12. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    Thank you, I will give it a try and I will let you know if I have any question. Is it a better option rather than storing variables with their values to a txt file?
  13. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    Really interesting, I would like to ask you, in case I use Registry, is it possible to prevent user to change these values manually? Because I want these values to be inserted only from installer class and the user to be unable to change these values from registry, because I don't want the user...
  14. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    I don't know how to that. How can I take advantage from this?
  15. WomanPro

    Sharing actual values of variable between installer project and installed project in a solution

    Hello, I have a solution with mulitple projects. The main project wich is a game, a project with an installer class and a registration license key form named RegistrationLicense and the setup project. In the setup project, inside user interface I have add a custom dialog with two option buttons...

Part and Inventory Search

Back
Top