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 Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: almi
  • Order by date
  1. almi

    Showing a form from Sub Main

    Hi, have you tried using Application.Run(Main Form) Best Regards Almi
  2. almi

    Need help ... Double click a cell off a grid

    the doubleClick is fired when you double click everything but the cell ALMI
  3. almi

    Column Width?

    I will sound stupid for sure, but i must ask this question. How can I set the grid column width from code? ALMI
  4. almi

    place MDI child window in upper left?

    Have experimented with the StartPosition Property and ??? ALMI
  5. almi

    Inhereted form

    Hi to all! I have the following problem 2 Forms -frmBase -frmInherited frmInherited inherits frmBase and it works fine, but i can't view the design of form frmInerited, can anyone help me Best Regards ALMI
  6. almi

    Setup Project

    I have added a setup project to my solution, than i have added Project Output to the setup project (binary files) and it works Best Regards ALMI
  7. almi

    CollectionBase Class / Interface of objects

    The collectionbase Implements IList, ICollection, IEnumerable these are the interfaces that must be implemented. It takes only the IList interface so that datagrid.datasource works, if its implemented it will show you data.
  8. almi

    place MDI child window in upper left?

    I did not have this problem, but try reversing the oreder to childWindow.Show() childWindow.Location = xyLoc childWindow.Location = xyLoc childWindow.Show() and i think you are missing the line childWindow.MDIParent = mainWindow Hope I have been of help ALMI
  9. almi

    Detect close button or get rid of it totaly?

    Try setting the form property ControlBox to false Best Regards Almi
  10. almi

    Multi Threading and COM

    I think that the use of ActiceX EXE component allows you asynchron communication with the component, since the component is running ih its own process space Best Regards Almi
  11. almi

    How do you make a TabPage Active

    Me.tab.SelectedIndex = 1 shoud do the job Best Regards ALMI
  12. almi

    Cannot inherit New constructor

    When you create a constructor NEW (p as string) for example, when you inherit it the new class shoud contain public sub new (p as string) mybase.new(p) ... ... ... end sub
  13. almi

    UPDATE string

    UPDATE Supportcall SET (Description,Status) VALUES ('" & txtcalldescription.Text & "','" & cmbstatus.Text & "')" Should look like this "UPDATE Supportcall Set Description = '" & txtcalldescription.Text & "', set Status='" & cmbstatus.Text &...
  14. almi

    Filtering problems

    I have created an SQL Connection, than a DataAdapter which fills a dataset, and now the problem: how do i filter records in the dataset without requering the database? In vb6 the job was done by recordset.filter property how do i do it in ADO.Net
  15. almi

    HowTo edit and display at the same time a db grid

    I have a db containing the following fields: ProductId | Qty | Unit Price | Amount I want to enter new data into a this grid without using a separate form for adding new records. It shoud look like it does MS Access (like a continous form or so) Thanx Misel
  16. almi

    How do i display records of an Access DB using the VBScript

    I have a price list in an access db. I want to display data in my web presentation using vbscript. How do i do that? Please help me

Part and Inventory Search

Back
Top