Search results for query: *

  1. rHasan

    Backup SQL Server database using my application

    Seems like every answer is found in the CJard's signatures!!
  2. rHasan

    Browsing the tables in an access database

    Hi I want to pass a database path, and display every table name found in an access database, following the column names of every table. How can I do this ? Regards Kapalic
  3. rHasan

    Adding record in related fields

    Hi, I am very new in using sql server and database programming with ado.net. I can't feagure it out, how to add or update data in the relational fields. I have three tables like this - Group Table with GroupID, GroupName field SubGroup Table with SGroupID, SGroupName field Product Table with...
  4. rHasan

    Where to store application settings?

    Application settings could be stored easily with the settings tab of the properties window of the project. You can then access and modify these settings with the My.Settings namespace. It's a nice way to store application settings! Regards!
  5. rHasan

    Moving Borderless Forms...

    Where can I get those constants?
  6. rHasan

    Moving Borderless Forms...

    Hi John, Will you please explain how does the managed code work? ThnX!
  7. rHasan

    Masked TextBox or Normal TextBox & Masked by Code??

    I've provided a technic for creating an extended textbox control which will only take Alphabet, Numeric, or Alphanumeric data (only one) as input. Check my blog by tomorrow given in my signature. Regards! Kapalic
  8. rHasan

    Whats the problem in the site?

    how to add it?
  9. rHasan

    Whats the problem in the site?

    We do not have any site in the blocking list!
  10. rHasan

    Windows Application suggestion

    I am using a flashy interface with Office 2007 like interface with a ribon control, which works like a Tabbed toolbar and replaces menus, and the outlooking of the form. A demo version is available for the registered VB 2005 Express users. You can then other froms as modal from the main form...
  11. rHasan

    Free training materials

    Can you please locate me some helpful sites to learn about visual basic 2005 and Ado.net 2 ? Is there any site where can I get free ebooks or free chapters on this topics? Articles? Please list some good sites! Regards!!
  12. rHasan

    DataRow Problem

    Thats why I've posted it on the site man!!
  13. rHasan

    Whats the problem in the site?

    I can access all the sites in the whole world EXCEPT vbdotnetforums.com. Its always telling me "Cann't find the site". With no other site I m having this particular problem. It's obviously with this site. Check it out! I really love the site, and I miss it!!
  14. rHasan

    Is this method all right ?

    Hi Cjard, Can you give me some example of how to use the add, update, and delete methods? I also need to verify, if a record exists in the database before I add that in the database. Regards! Kapalic
  15. rHasan

    DataRow Problem

    Color table do exists...thnx!
  16. rHasan

    Whats the problem in the site?

    I am hopeless, and leaving this wonderful site, because it remains unavailable...you should really check it out, if it is really behaving properly at the asia-pacific region!
  17. rHasan

    DataRow Problem

    Can anyone please tell me whats the problem with my DataRow ? dim objNewRow as DataRow = objDataSet.Tables("Color").NewRow() It's telling me instance of the object is not set! Thnx!!
  18. rHasan

    Whats the problem in the site?

    I don't know, but i m having difficulty in have visiting the site. Last day I could not at all, so could't the previous day. Only now i could visit it after several try. Please check out. thnx!
  19. rHasan

    Is this method all right ?

    I've provided the Delete functionality in my form in this way - IfNot IsConnectionOpen() Then OpenConnection() EndIf objCommand = New OleDbCommand("Delete From Color Where ColorID = " & Val(txtID.Text), objConnection) objCommand.ExecuteNonQuery() ShowData() CloseConnection() This system...
  20. rHasan

    One form for five tables

    Thnx guys for your help. But I've found out a solution for this myself. I've created a property for the form called Table, and supplied a table name to the form to work with while loading. Here is the solution - Imports System.Data Imports System.Data.OleDb PublicClass frmDetails Private...
Back
Top