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 bkrike 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: makisbest
  • Content: Threads
  • Order by date
  1. makisbest

    Write values in database

    Hi all I create a table in my SQL 2000 Database, with the name "choose". I insert 2 columns value1 as integer and value2 as string. How I can write values in database choose and how I can update them? I want to do it in command, and not with designers/dataenvironment Thank you
  2. makisbest

    retrive data from vb6

    Hi all Is any way to retrive data from a vb6 table? For example I have in VB6 Dim i(1 to 10,1 to 10) as integer Can I send this data to CR? Thank you for support
  3. makisbest

    connect to access

    hi How I can connect to a table in my access database with code thank you
  4. makisbest

    Report problem

    Hi Is there any way to print my data to a datareport or crystal report and retriving my data from a table? Dim PARAS(1 To 999) as Integer --> datareport or Dim PARAS(1 To 999) as Integer --> crystal report Thank you
  5. makisbest

    text area problem

    I have a text area in my asp page "code" <textarea name="content" rows=10 cols=60> </textarea> "end of code" Is there any way to fill the text area with the value of one variable? Thank you for your time.
  6. makisbest

    datagrid

    Hi all What the datagrid1.index do? Is there anywere any manual for datagrid1 Thank you
  7. makisbest

    The datagrid jump lines

    hi all I have this code to move down with my datagrid. All things is going fine whene for a reason the grid is starting jumping lines without reading the line saing in the i loop. k = DataGrid1.ApproxCount For i = 0 To k Step 1 DataGrid1.Row = i code = DataGrid1.Text DataGrid1.Col...
  8. makisbest

    datagrid

    Hi all How I can move down in datagrid reading rows thanks p.s. can I have an example
  9. makisbest

    query and report

    Hi there I have a report ready connected with a Query. I make a copy of that report and I want to connect it with a diferent Query how I can do that. I am using Access 2003 Thank you
  10. makisbest

    Report and Query

    Hi there I have a report ready connected with a report. I make a copy of that report and I want to connect it with a diferent report how I can do that. I am using Access 2003 Thank you
  11. makisbest

    Syntax Error

    hi Where is the error on this code code SELECT Table1.aa, Table1.bb FROM Table1 WHERE (((Table1.aa) Like "'" & [Forms]![form1]![CoboBox0].[Text] & "%'"));
  12. makisbest

    passing values

    Hi All How I can pass a value from a drop down menu in a form to a query creteria? Thanks
  13. makisbest

    ip problem

    Hi all I have in my house a 3com wireless router with ip 192.168.1.1. In the office a linksys wireless router with ip 192.168.2.1 that goes to the second lan card of my sbs2003 server how used as proxy server with ip 192.168.1.1. You can understand that my lan has internal ip as 192.168.1.x...
  14. makisbest

    restore problem

    Hi When I execute a restore, in my sql database I get the error Microsoft sql-dmo (odbc sqlstate: 42000). And say that I dont have much space, but I do. Why?
  15. makisbest

    Hi

    Hi When I execute a restore, in my sql database I get the error [Microsoft][ODBC SQL Server Driver][SQL Server] error 42000. And say that I dont have much space, but I do. Why?
  16. makisbest

    change , to .

    Hi My SQL Script return Decimal values with "," instend of "." In my country is corect (Greece) but in VB doesnt. Can I change that without changing the regional settings Thank you.
  17. makisbest

    convert string

    How I can convert a string like "1234567" to a number like 12345.67
  18. makisbest

    wrong value

    hi In a recordset I give. rs!new_number=123456,78 when I debugin it I get the value 12345678 in the new_number Why?
  19. makisbest

    datareport

    Hi all I have this code Private Sub Form_Load() ' **** Create Connection and Recordset Objects **** Dim cnConn As ADODB.Connection Dim rs As ADODB.Recordset Dim strsql As String ' **** Instantiate the new objects **** Set cnConn = New ADODB.Connection Set rs = New ADODB.Recordset ' **** Set...
  20. makisbest

    to many sql

    Hi all Dim cnConn As ADODB.Connection Dim rs As ADODB.Recordset Set cnConn = New ADODB.Connection Set rs = New ADODB.Recordset With cnConn .Provider = "SQLOLEDB.1" .Properties("Data Source").Value = "server" .Properties("User ID").Value = "clroot" .Properties("Password").Value...

Part and Inventory Search

Back
Top