Search results for query: *

  1. J

    Data Grid

    Hi all, I have managed to display records in data grid when the form is loaded. It is readble only. Now I want to edit n update the records in the data grid. how do I go about it? pls guide me:confused: thanks, jpdbay
  2. J

    Too many arguments to 'Public Sub New()'

    lingsn, Sorry for late reply. I just settled the overload argument issue. After initializing new constructor as per your advise, it works fine. :). It took almost 1 month to understand it. I feel like so silly:o..now, I can continue with the form.:) thanks again.
  3. J

    Too many arguments to 'Public Sub New()'

    Hi all, I'm getting the mentioned error when I copy paste a piece of code where I add a new button in a form. It works fine with all other buttons in the form. The code is: Private Sub cmdManualBucketAddition_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles...
  4. J

    Too many arguments to 'Public Sub New'

    Dear all, I'm getting the above error when I added a new button in my form. I copy paste the same code like other button to load the form. Unfortunately, it is throwing the error. The code is: The error is pointing to m_HeadId but it doesn't throw any error for other button. The error is no...
  5. J

    Inherited Control

    Sorry for late response as I was away. I'm getting "Trace not initialized error" when I select my of the existing form to inherit the controls.:( I don't hv clue why:confused: and to my surprise, the form is added in Solution Explorer but I can view it in Code View but cannot open Designer view...
  6. J

    Inherited Control

    Hi folks, I'm working on an existing proj which required me to add a new form to add new functionality. The problem is I want use few inherited controls (with downward arrow-see picture) which are in the other form. I tried to add Inherited form but it is throwing error. I also tried to add new...
  7. J

    VB .NET & Visual Source Safe

    Hi! Could anyone guide me on how to integrate Visual Source Safe and Vb.net project. Thanks jpdbay
  8. J

    ActiveX Control in VB.NET

    hi jmcilhinney, I really don't get ur idea. What I'm trying to do is calling DLL functions in web browser. how do I start and what are the steps involved? kindly correct me again if I'm wrong as i'm newbie .NET platform.:confused: Thank u. rgds, jpdbay
  9. J

    ActiveX Control in VB.NET

    Thank u for correcting me. how do I call DLL functions in web based application? I need to call smart card function in my app. How do I start? any ideas or ref website? TQ. rgds, jpdbay
  10. J

    ActiveX Control in VB.NET

    hi all, How to create ActiveX in vb.net? can I call DLL function from using ActiveX? Could any1 correct me if my statement is wrong n give me a guideline?:confused: rgds, jpdbay
  11. J

    How to create help file

    Thnx 4ur comment...I'll try it out. Rgds, jpdbay
  12. J

    How to create help file

    hi all, My .chm file still does not contain pictures:mad:. I hv tried all the methods which u guys mentioned. When I'm converting .doc file to .htm file; .png pictures .jpg pictures filelist.xml are created. After converting I hv 10 folders with 10 .htm files. I'm totally blank:confused:. Plz...
  13. J

    How save n retrieve picture in a application directory?

    hi, 1. How do save a picture to application directory in a folder named "Picture" with ID number (eg. 0000001.jpg)? 2. How to read and populate the picture from the directory to PictureBox? Currently I'm saving the picture in C:\ obj.GetPicture("c:\test1.bmp")...
  14. J

    Local Database

    Hi All, I'm developing a centralised system using MS SQL Server 2000. I want my system running on local database if the main server is down. 1. How do I detect the connection to main server is fail and switch to local database(using MS SQL Server 2000 as well)? 2. How do I update the server...
  15. J

    How to create help file

    hi, Yes, it is located in diffrent directory. The problem is, I hv 10 help file folders with each contains pictures and filelist.xml. It is automatically generated aft I converted which were in .doc to .htm. I hv tried to put all in 1 folder but cannot because each folder has same filelist.xml...
  16. J

    How to create help file

    hi bro Kulrom! Thanx alot for ur useful link. I managed to create .chm help file but the pictures are not displayed in the help file. Can u plz explain why is that so? I know I missed something silly but I hv tried many times but stil fail:confused:.. rgds, jpdbay
  17. J

    How to create help file

    hi all, I hv created an user manual document in .doc format. I want to use this user manual doc when I click Help menu in my application. can anyone plz help me on this matter with sample code n explain the making process of help file?:confused: Thank u in advance. Rgds, jpdbay
  18. J

    How to display date and calculate age

    hi Jay, Thanx 4ur comment n comment. Anyway, the formula for Age in the code should be: Age = dtNow.Subtract(dob).Days ' Get the Number of days. else it rtns -ve value. Thanx 4ur guidance. rgds, jpdbay I
  19. J

    How to display date and calculate age

    Hi, I'm capturing date of birth in DateTimePicker ("MM/DD/YYYY" format). 1. How do I display the date into "MM/DD/YYYY"? 2. How do I calculate age from the DateTimePicker using "MM/DD/YYYY" format? Anyone, with ideas or code of sample will be much appreciated. Thanx Rgds, jpdbay
  20. J

    Double click list view

    Hi agn! I dont understand how to create property(s) since each child form has diffrent number of controls whereas the search form is used by all of them. How to fic it? Please correct me if my statement is wrong. Please guide. Thnx. Rgds, jpdbay
Back
Top