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 Chriss Miller 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: todd666
  • Content: Threads
  • Order by date
  1. todd666

    Disable the "CTRL-X" in a datagrid?

    Is it possible to prevent the use of "CTRL-X" in the cell of the datagrid?
  2. todd666

    Select a cell in a datagrid (Detail)...

    I have a datagrid. When I click on a cell, it select the text. (By default, Kind of blue marine rectangle that frame the text.) If the length of the text is higher than what's is display at the screen, only a part of the cell become "BLUE" and the rest is not display. Exemple: Cell1 123...
  3. todd666

    How to view the "Trunc" path in Reference Box?

    How to know the name and complete path of the reference selected in the Available References box, if the path is too long and truncated at the display?
  4. todd666

    About Testing an Application?

    How can we proceed if I want that someone else or other people test my VB program and that they give me their comments ? Is it possible?
  5. todd666

    How to disable menu appearing when right click on datagrid?

    Hi, I have a datagrid. When I press the rigth button of the mouse in the area of the scroll bar of the datagrid a menu is appearing. How can I prevent this menu appearing? Thank you.
  6. todd666

    When DataGrid Cell is click, how to put value in this cell?

    When DataGrid Cell is click, I want to put(write) value in this cell. Is there a way to proceed, without using SQL?
  7. todd666

    Animated .Gif for MouseIcon?

    Is it possible to put an animated .gif picture for a MouseIcon? I try and I have always the Execution Error 480.
  8. todd666

    Where to place my code...???

    Hi, When nothing is execute and the program is waiting for action of user, can we place some code? If yes, where? I give an example: I click on the datagrid. There is some code to execute on the module "click_datagrid". After that, the program is waiting for some action of the user. Is there...
  9. todd666

    How to close an open file in Excel?

    If Excel is not open, I want to do nothing. If Excel is open with another file than "C:\Temp\test.xls", I want to do nothing. If Excel is open WITH "C:\Temp\test.xls", I just want to close Excel without saving. Here is my code, but it open the file even if the file was not already open. Any...
  10. todd666

    How to Determine if DataGrid is in Edition Mode?

    Hi, I use a DataGrid and when the cursor of my mouse is on datagrid, I can use the mouse wheel on it and it works very well. The problem is when I click on the DataGrid (for example), the DataGrid becomes in "Edition Mode" and the mouse wheel don't work. I have to press "Escape" and after I can...
  11. todd666

    Corruption of Data...

    Hi, I made a simple VB Program with all functionnality I want. The main functionnality is to search in a datagrid so I can consult my Unix Command and add or update the records. Everything is working well, except that I have corruption with some data. The first column sometimes does not fit...
  12. todd666

    Strange Behavior with EditActive Properties...?

    Hi, I have a datagrid and i use scrolling. When the datagrid is in "Edition Mode", I can't scroll with the mouse. I have to press "ESC" before re-use the scroll. I want that the user does not have to press "ESC" so I put this code: Form1.DataGrid1.EditActive = False But the DataGrid is...
  13. todd666

    How to prevent the "bip" sound after pressing ENTER?

    Hi, I have a programm with a search function. I can click on the button "Search" or press "Enter" to do "Search". Each time I press "Enter", a "bip" sound is made. How can I prevent it? Here is the code: Private Sub Text3_KeyPress(KeyAscii As Integer) If KeyAscii = 13 Then...
  14. todd666

    How to check if an Excel File is already Open?

    Hi, I can check if an Excel File exist but how can I check if this file is open? Thanks.
  15. todd666

    What is the number ascii corresponding to - caracter?

    Hi, What is the number corresponding to - caracter? Thank you.
  16. todd666

    Loosing integrity of my data...

    My program is terminate. I am using it and I found a big problem. I'm using a bd and datagrid on which I made some search, add, delete, ... operation. I have only one table on my BD and it contains about 300 records. I recently notice that my data is not ok. I give you an example. Here is...
  17. todd666

    About Focus ... ?

    On my principal form of my program, there is a datagrid and one textbox. When I am adding or modifying a record in my DataGrid, if I click on another program on the task bar and I came back to my program, the cursor is not in DataGrid, he's in the textbox. What can I do if I want the cursor...
  18. todd666

    Cut & Paste Problem with DataGrid

    Hi, If I make CTRL-C in any windows (it doesn't matter) and i do a CTRL-V in the datagrid of my vb program I made, it doesn't work. Nothing is paste. However, If I do a CTRL-C and I copy it on a Text Box in my vb program I made, it works. Why it doesn't work (paste) in a cell of a DataGrid...
  19. todd666

    Sleep, Wait, Delay, What should I use and How?

    I want to show a Form about 20 seconds and after 20 second, the form will close. What instruction (sleep, wait, delay, ...) can I use to replace xxx: Here is my code: Form1.Show VbModal xxx Form1.Unload
  20. todd666

    DataGrid or DBGrid?

    Hi, I just want to know what is the best to use: DataGrid or DBGrid. And, Is it correct? DataGrid is use with Adodc? DBGrid is use with Data? Please, inform me and correct me.

Part and Inventory Search

Back
Top