Search results

  1. A

    Why need to order MS Access?

    And also, everytime when we order it, we need to pay fees. Why do we need to pay the fees?
  2. A

    Why need to order MS Access?

    Hi, I have a question. why do we need to order MS Access application when the user request it in the company? Suppose one user buy MS Access application, then we can install the other workstation, right. But, everytime, we need to order MS Access for that user account/workstation. In...
  3. A

    Vb.net Vs Asp.net

    Hi, I have a question. Actually, what is the benefits for VB.NET? what is the benefits for ASP.NET? Can I say that VB.NET have event procedures. Whereas, ASP.NET can doesn't have event procedures.
  4. A

    Event Procedures

    Hi, In MS Access, we can do many event procedures in the forms. How about ASP.NET/ASP? Can we have event procedures in ASP.NET/ASP? Because i want to do automatically population data to the other fields once I choose one data in certain field. Thanks.
  5. A

    Color in the List box

    Hi, I have a question. Can we do the color inside the List box? Suppose we 10 rows data inside the List box, I want to put color every other lines. Can we do that? Thanks.
  6. A

    Lock the files

    But, will there be lock to delete/copy/paste file permission on the specific file only? Thanks.
  7. A

    Lock the files

    Hi, We have sharing drive, we let many users to open the files, but we don't want to let the users to delete, copy, and paste the same files. How can we lock it out? Just hide the files, but it is not efficient, the user can unhide it. I don't know. Can anybody suggest about it? Thanks.
  8. A

    Asking for Security

    Hi, I have a question for user-level security and workgroup. Suppose we setup user-level security and have a workgroup with storing all username, password, and groups, if adminstrator want to change one user permission, let's say that change the user permission from update to read permission...
  9. A

    array

    Hi, I have a problem. dim arr() as variant redim arr(2) arr = array([n1],[n2],[n3]) for i = 0 to 2 ' section 1 if arr(i) = 1 then ............... Me("n" & i) = -1 .... end if ' section 2 if arr(i) = 300...
  10. A

    Popup Form

    Hi, In MS Access, we can do popup form (docmd.openform "tmp",,,,,,acDigonal) In VB6, can we do as same as MS Access style? Thanks.
  11. A

    Popup Form

    Hi, In MS Access, we can do popup form (docmd.openform "tmp",,,,,,acDigonal) In ASP/ASP.Net, can we do as same as MS Access style? Thanks.
  12. A

    Delete Admin Account

    Hi, After I setup user-level security, and add the new users with Admins permission. Why I cannot delete the Admin account? Can we delete the Admin account forever after setup user-level security? Please let me know about it. Thanks.
  13. A

    VB6 & MS Access

    Hi, I have a question. Suppose I wrote the VB application and create the .exe file for connecting MS Access, if the user does NOT have MS Access application, can .exe file still work with the MS Access file? (like retrieve data, store data,..etc) Thanks.
  14. A

    Dropdown list

    Hi, I create a dropdown list, which has 3 columns with column heads. Can we set Bold format on the column heads? Thanks.
  15. A

    Contineous form

    Hi, Can VB6 do Contineous form? Thanks.
  16. A

    Form

    Hi, I have a question. I create the form1, this form1 has one record source, I want to create and place another form (another record source) on the form1. Can VB6 do that? I know MS Access can do that. I want to know whether or not VB6 can do it. Please let me know, thanks.
  17. A

    Asking Memo

    Hi, I create the table, and fieldname, What is the datatype, memo? Datatype: Text Fieldsize : 255 (max char) Datatype: Memo For the memo datatype, what is the size for that? Is it unlimited size? Please let me know, thanks.
  18. A

    Asking exists

    Hi, if exists(select * from information_schema.tables where Table_Name = '##tbl') drop table ##tbl Can we use this statement to drop temporary table? Because when I run it, it cannot delete the temporary table. So, we cannot check the temporary table. Please let me know...
  19. A

    Dts

    Hi, I created DTS package, I want to transfer (export data) the sql results from SQL Server to Excel worksheets but, I have a problem. I double click on the Transform Data Task line, and input multiple T-SQL statements in the sql query section, but when I run it, it doesn't work. Can the sql...
  20. A

    declare tablename

    declare @tbl as varchar(100) -- setup the temporary table @tbl = '## New Orders' select Students, Sum(Orders) into @tbl from members where id = 1 or id = 2 Group By Students when I run it, it has an error. @tbl is invalid in the statement. What's wrong with it? Thanks.
Back
Top Bottom