Search results for query: *

  1. D

    Question can we have an editable combobox in datagridview ?

    Can we have an Editable DataGridViewComboBoxColumn in a datagridview or any other alternate for the same ?
  2. D

    Question Having Displaymember and Valumember for TextBox

    Can we have a Displaymember and Valuemember property (like combobox) for a TextBox so that if i user types a string value in the textbox, its Text Property will have the string and Value property will have its ID (Primary Key value). Please help! Regards
  3. D

    Question Changing Measurement Units of Form to from Pixels to Twips

    Hi everybody! Is there any way so that i can set the measurement unit of a form from Pixels to Twips? Regards Thanks
  4. D

    Question How to create a Upgrade Project

    Upgrade Project but after creating a different setup project with the updated .exe file, when we run the setup, it asks to remove the earlier version of the application. where in i want that it should just upgrade it.
  5. D

    Question How to create a Upgrade Project

    I have a question for many years.. Suppose if I Deployed a project using Setup Project. After some time, I added some features or modify it on customer demand. 1) How do I make a upgrade project so that the user runs the setup and the new changes are upgraded on the client system. 2) How do...
  6. D

    Autogenerate ID

    I am developing an application for Co-operative Society Receipt printing Software. I have Members Table with a primary Key MemberID. It is an access database. MemberID as a Long Integer Column. If the user opens Members Entry Form, a new Record is already added with the new autogenerated...
  7. D

    Enter Key function as TAB Key

    Thanks Thanks for your Suggestions. But I have around 20 textboxes on the form. do i need to write code for each textboxes keypress event or there is better way to accomplish this. Regards
  8. D

    Enter Key function as TAB Key

    Hello everybody I have a Data Entry form. I wanted to make the Enter key work like TAB key so that if a user presses Enter key, the next control should get the focus key. For this, I used the Forms KeyPreview on and Form's KeyUp Event to trap the Enter key and used the SendKeys.Send("{TAB}")...
  9. D

    Question What is the best option for Data Connectivity ... DataSet Designer or Hardcode

    I am devloping a small desktop application for general bill printing. I will be deploying this application to my customers. Thanks Regards
  10. D

    Question What is the best option for Data Connectivity ... DataSet Designer or Hardcode

    I noticed many times that Database connectivity using DataSet designer runs slow in opening Data Entry form. I just wanted to know what is the better options between hard coding for connectivity and DataSet designer.
  11. D

    Question How to skip validation of active control when form's close button is clicked.

    You did not understand my question. The Active (Focused) Textbox Control which has the validating method and when you click on form's close button, it will fire its (Textbox's) Validating event first and then the form's closing event will occur. Regards Thanks
  12. D

    Question How to skip validation of active control when form's close button is clicked.

    Hi Bobby I mean to say that suppose I have a textbox which has the current focus on the form and it has a validating method to check if the textbox is not empty. If it is empty, it shows a error message and remains in the textbox. Now problem is that some times user wants to close the form...
  13. D

    Question How to skip validation of active control when form's close button is clicked.

    Hi everybody. Is there any way to skip a the validating event of the active control when the close button of the form is clicked. It is very annoying when user wants to close the form, but due to the validate event of the active control, it asks for the valid input. The user is forced to...
  14. D

    Question Printing at specified position measured in mm (mili-meter) units

    Thanks! Thakyou very much Sir...... Regards
  15. D

    Question Printing at specified position measured in mm (mili-meter) units

    Hi all I am developing a software for Printing Cheques. I want to show user a form asking the bankname with Payee, Amount, Amount in words, and Date positions in mm units so. These measurements will be used for printing the the details on the cheque at desired location. I just want to know...
  16. D

    Concurrency Voilation Error

    Hi Everybody I am developing a software for keeping record of Delivery of a particular product. I have a Table named 'DelMan' which is the mastar table of Deliverymen I have another Table called 'Deliveries' to store Daily Delivery details for all the deliverymen I wanted to design the User...
  17. D

    Question Parameter ?_1 has no default value

    Resolved - Parameter ?_1 Has No Default Value Hello Sir.. Thankyou for all your suggession in improving my code and making it easy to read for every one. I have resolved my Problem. The problem was that I was trying to using the DataAdapter.Update(Dataset, Tablename) to update the Newly...
  18. D

    Question Parameter ?_1 has no default value

    Ok ! Thanks again 4 ur suggessions. I improve my code and post it back on this forum for help Thanks
  19. D

    Question Parameter ?_1 has no default value

    Thanks 4 your suggessions. I will tell you what I exactly want I want to write a MergeUtility. This uitility will ask the user the Master Databse Location where the Records should be appended and the User Database from which Records should be taken to append to the master database. The...
Back
Top