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 TouchToneTommy 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: *

  1. kiramoto

    Exchange 5.5 SDK

    Hi everybody, I would like to develop somethings for Exchange 5.5, but I don´t know how to start. I downloaded the Windows Platform SDK, but the samples are for Exchange 2000. I looking for older versions of Platform SDK. I have Windows 2000 Server, Exchange 5.5 Server and Visual Studio 6.0...
  2. kiramoto

    executing an oracle procedure ! HOW?

    Hi everybody, I wanna know how to execute an oracle procedure named "imp_estados" in my code I tried this: dim sql as string dim conn as adodb.connection dim aux as sring aux = "provider = ora...." conn.open aux sql = "execute imp_estados;" conn.execute(sql)...
  3. kiramoto

    DBGRID control

    thanks 4 responding my doubt... Yes, I want to populate the grid with the SQL data. I changed the code : vStrConnection = "xxx" Set Conn = CreateObject("ADODB.Connection") Conn.Open vStrConnection sql = "select * from myTable " Set...
  4. kiramoto

    DBGRID control

    Anyone could help me? Thanks,
  5. kiramoto

    DBGRID control

    Hi everyone ( again )... I have a DBGrid Control and I wanna display some data from SQL Server. I established a connection to SQL : vStrConnection = "xxx" Set Conn = CreateObject("ADODB.Connection") Conn.Open vStrConnection sql = "select *...
  6. kiramoto

    HowTo erase a excel's file (*.xls)??

    I working on a application where I have to create an Excel file and then erase the same file. I know how to create this, but I don't have any idea how to erase. Can anyone help me??? Thanks in advance,
  7. kiramoto

    Displaying data with data control, help!!

    I did something like this : CommonDialog1.ShowOpen PlanName = CommonDialog1.Filename 'open my worksheet Data1.DatabaseName = PlanName Data1.RecordSource = "Plan1" and there is a MSFLEXGRID which property DataSource = Data1 It doesn't work. Can anyone help me...
  8. kiramoto

    Data Control

    I did something like that : CommonDialog1.ShowOpen PlanName = CommonDialog1.Filename 'open my worksheet Data1.DatabaseName = PlanName Data1.RecordSource = "Plan1" and there is a MSFLEXGRID which property DataSource = Data1 It doesn't work. Can anyone help me...
  9. kiramoto

    Data Control

    Hi everybody, I want to show a preview of my Excel's worksheet in my vb application, using the data control. How can I set dinamically the databasename and the databasesource of the Data Control?? Thanks

Part and Inventory Search

Back
Top