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

  • Users: imendi
  • Content: Threads
  • Order by date
  1. imendi

    Mouse Pointer Hourglass with movement ??

    Hi, I know how to set the mousePointer of the screen to vbHourglass. But somewhere I have seen that this pointer (vbHourglass) can also move 180 degrees ! Any ideas on how to do that ? Thanks, Imendi
  2. imendi

    How can I Find a string in the value of a field?

    Hello, I have a SQL that I want to send from VB6 to an SQL Server Database. Before I was using an Access ddbb, and I had something like: IIf(InStr([Name],&quot;/&quot;)<>0 And InStr(InStr([Name],&quot;/&quot;)+1,[Name],&quot;/&quot;)<>0 ...
  3. imendi

    Reduce to rows to one, putting some values together

    Hi, This is a complicated. I have two Tables: Client (fields: ClientCode, ClientAddress...) Vendor (fields: VendorCode, VendorName...) Then, doing ------------------------------- select VendorCode, ClientCode where Client.VendorCode = Vendor.VendorCode ------------------------------- I may...
  4. imendi

    Delete record in table from a Recordset

    Hello, I have the following code behind a delete button in a Form: MySQL = &quot;select * from Mytable where (MyTable.Cod = &quot; & Me!txtCod & &quot;)&quot; Set Myrs = MyDB.OpenRecordset(MySQL , DB_OPEN_DYNASET) If Myrs.recordcount > 0 Then Myrs.Delete MsgBox &quot;Register deleted...
  5. imendi

    Pass var of ASP to JavaScript code

    hi, I have an asp page where I have some code to read the conents of a text file. That is in asp, using <% ... strFileName = Server.MapPath(&quot;/muestras/avisos/actual.txt&quot;) Set FSysObj = Server.CreateObject(&quot;Scripting.FileSystemObject&quot;) Set TS =...
  6. imendi

    Change bgcolor in TD with onMouseOver

    Hello, I am trying to change the bgcolor of a TD when the user moves the mouse over it. So I have: <TD onMouseOver=&quot;TDColor(this,'#808080');&quot;> and the function function TDColor(a,b) { this=a; a.bgcolor=b; } and it doesn´t work, what is wrong? Thanks, im
  7. imendi

    Update INPUT BOX onChange of Combo Box

    Hi, I have a combobox with some records extracted from a table in Access. Then, in the same table there is another field that I want to display in an INPUT BOX after the value in the combo box has been changed. For the combo box I actually extract both fields, the one that is displayed on the...
  8. imendi

    Images in a Frame, how can I set a hyperlink behind?

    Hi, I have some frames where I have images. I want to by clicking image called &quot;Home&quot;, go to the main page for example. Now I have: <frameset cols=&quot;100,100,*&quot;> <frame id=&quot;btn1&quot; name=&quot;btn1&quot; src=&quot;btnhome.jpg&quot;> ... </frameset> I want the user to...
  9. imendi

    HDD not recognised after motherboard burned !!

    Hi, The other day there was a storm where I live (it sounds like a story for children, I know) and my PC went off. I took it to the shop and they told me that only the processor, memory and floppy are &quot;alive&quot;, the rest is broken. However, I know that there are some companies that try...
  10. imendi

    How to open a report on another database from a form?

    Hi, I have database db1 where I have my code and forms, and db2 where I have my reports. From a form in db1 I would like to open a report in db2. How could I do that? Thanks, imendi
  11. imendi

    How can I show a report into a form

    Hi, I have a form where I select some options and from there I open a report with the records that match those options. But instead of opening the report as a separate window, I would like to open it into another form (similar to including Sub-forms into a form). Then I would be able to show...
  12. imendi

    Current record position and total records in a form

    Hello, I have a form with the recordsource = table1 Now, I want to add a textbox that shows in what record the user is and the total number of records, something like &quot;Record 4 of 34&quot; And I don´t want to use the default Navigation buttons that come with the form. It should update...
  13. imendi

    Can I access from Access 2.0, data that is in Access 97 ?

    Hi, The question is shown in the title. I tried with recordsets, but it gives an error when trying to open the access 97 database; something like &quot;It cannot open the database *********. It might not be an access database or the file could be damaged&quot; Any ideas on how I can access...
  14. imendi

    Hard Disk was working, now the bios does not detect it

    Hi, I have a Seagate hard disk on a PC that some months ago (2 I think) stopped working because of a problem with the power supply. Before it was working without any problem. Now I am trying to fix it, changed tha power supply and it switches on. But from there, nothing happens. The monitor...
  15. imendi

    Class name for opening Access2.0 with GetObject

    Hi, I want to open a file in access 2.0 from Visual Basic and I want to do it using getobject. So I would have: z=GetObject (MyFile,&quot;XXXX.application) where XXXX is the name of the class to use, eg: access.aplication would use access 97 to open the file. My question is, what is the...
  16. imendi

    Messaging between users inside W98 network

    Hi, Is there anything in W98, similar to net send in Windows NT, that allows a user to send a message to other users withing the network? Thanks, imendi
  17. imendi

    TreeView control

    Hello, I have a form where I want to put a treeview control where I can select a database. How could I do that? thanks, im
  18. imendi

    Get network id´s from *.ldb

    Hi, I am looking for some code with which to get the network user id (used to log to the network), from an *.ldb file. I would like to open a treeview control, select a file with extension ldb and display the users that are conected to it. Thanks, Ignacio

Part and Inventory Search

Back
Top