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 SkipVought 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: Gaff
  • Order by date
  1. Gaff

    VB6 Editor

    Thanks for your help, i was afraid you were going to say that about the IDE!!!!
  2. Gaff

    VB6 Editor

    Hi Strongm, Sorry I wasn't very clear. I have the sourcecode and I have an exe but I want to be able to edit the sourcecode and create a new exe. I didn't realise you still needed a licence for VB6 IDE, have been looking for last while trying to find a trial version but no look. The...
  3. Gaff

    VB6 Editor

    Hi All, I was wondering if anyone can recommend a free VB6 editor. I need to run a VB6 application to see how it works. Tried the FAQs but didn't find anything there. Thanks in Advance. Ricky
  4. Gaff

    Printing a GridView from Web Application

    One of the web pages in my application displays a Gridview that can have hundreds of rows. Is it possible to print a GridView from a web application, any of the articles I've looked at only seem to deal with it from a Windows application point of view? Also if it is possible to print a...
  5. Gaff

    Search Function Crashes

    For some reason whenever i go to use the search function it just disappears and i have to try and find the file manually. Is there any particular reason for this. Thanks for your time.
  6. Gaff

    Detect presence of program on PC

    Thank you all for your replies, they have all been very useful.
  7. Gaff

    Detect presence of program on PC

    Is there any way to detect the presence of Microsoft outlook on a computer. I have a vb program with an email capability and it is over a network and the computer may not have Outlook but if they try and send an email then it hangs the system. I want to be able to check for outlook on the...
  8. Gaff

    Bringing up a Message Box when X Button is pressed

    Bill that worked a treat. Scott i didn't try your way because the other way was quicker. Thanks anyway though.
  9. Gaff

    Bringing up a Message Box when X Button is pressed

    i tried that but it still doesn't seem to work. The Exit Sub still seems to cause the whole thing to close. Here is my Sub: Private Sub MDIForm_QueryUnload(Cancel As Integer, UnloadMode As Integer) Dim choice As String choice = MsgBox("Are you sure you want to Exit the Application")...
  10. Gaff

    Bringing up a Message Box when X Button is pressed

    I'm using an MDI form and when someone clicks on the X button on the parent form, i want a popup to comeup to confirm that they want to exit the application. I put the message box in the unload event of the form but even if someone selects no and they do not want to exit the application, i have...
  11. Gaff

    Reloading a VB Form

    Is it possible to reload a form after it has been loaded initially. Is there some kind of refresh property perphaps?? I'm updating my database using the form and other details on the form are being retrieved from the database and i want to just refresh these details. Thanks.
  12. Gaff

    referencing a dynamically created textbox

    thanks that worked fine!!!
  13. Gaff

    referencing a dynamically created textbox

    I am creating textboxes based on details that i get from a cookie.They are being created dynamically by using a "document.write" statement.The name of the textboxes all begin with "text" and i am appending on number based on a variable called num which i'm using to loop...
  14. Gaff

    String Manipulation problem

    John i was still getting the same error when i did it based on len(). I suppose i should have mentioned that the code was in an if then and only gets executed if mypos is greater than one. However the split worked fine. thanks troy
  15. Gaff

    String Manipulation problem

    In my database i'm keeping peoples names in the following format Surname, FirstName. When i bring back these details to the form in VB i want to split the string. I'm using the InStr function to try and split it on the comma. I have no problem assigning just the surname part to a variable as...
  16. Gaff

    Deleting an Access Table using VB.

    Ya that is exactly what i wanted.Works fine. Thanks Ed
  17. Gaff

    Deleting an Access Table using VB.

    I'm trying to Delete an Access table using VB. I don't even know if this is possible. I couldn't even do it using SQl in Access. I know in Oracle there is the DROP table method and i was wondering if there is any similar method in Access, and then i could just execute it from the VB frontend...
  18. Gaff

    A Timetable idea

    Just one more thing, is it possible to put more than one value in a cell so that one is above the other, I tried usign the 'vbcrlf' but this didn't seem to work.When i say i used the vbcrlf i mean i used it in a variable that i was using to multiple values to the variable. it just concatenated...
  19. Gaff

    A Timetable idea

    Thanks for your help, i can get the flexgrid to do what i want now. Once again thanks
  20. Gaff

    A Timetable idea

    Thanks for that. The FlexGrid sounds fine, but where do i find the bound property, it doesn't seem to be in the property window. Also when i want to manipulate the table to put in column headings do i refer to the cells i want to work with as if the grid is a two dimensional array, for example...

Part and Inventory Search

Back
Top