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 Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by johnnyv

  1. johnnyv

    Time Error '3021' eof or bof sometimes but not all teh time

    hello all here is my problem I am testing a VB/Acess app in 98, 2000, xp home and pro. My app will write as record out to a table when testing in any OS. I then run a sql statement to pull back the record ie select * where [name] = 'john' the reocrd containing the name john is present on all...
  2. johnnyv

    mdi form xp scroll bars

    Matt thanks for the reply, when the say the forms are a bit bigger do you mean that the standard forms are bigger or that both the standard forms and mdiform are bigger? Thanks
  3. johnnyv

    DB access problem

    I have created an app that uses an Access DB within the app I write records to a table then qeury the table based on criteria. It will pull back records as needed until it hits the last query. The last query is simple enough SELECT * FROM INF_Prof where name = 'joe' The table does have a...
  4. johnnyv

    mdi form xp scroll bars

    Hello I have created a program that uses an mdiform to load 9 child forms. I have sized all forms to fit into the mdiform without a need for scroll bars. When the app runs on all oprating systems except XP all is fine but the same app running on XP will cause scroll bars to appear in the MDI...
  5. johnnyv

    How did this happen?

    Hello all So I left work last night with all things being normal on my PC. When I left work last night I had 'locked' my PC and first thing this morning sat at my desk and signed on. So... normally my screen resolution is set to 1024 x 768 but this morning it 'magicly' was set to 768 x 1024...
  6. johnnyv

    Assigning value to MSChart Y axis at run time

    Let me try and answer my own question with the following code. note that the variable sXAxisTitle contains text for the X axis title. It is changed at runtime depending on the language to be used dim axisID as integer axisID = 1 ' this tells the next line of code to ' set the...
  7. johnnyv

    Assigning value to MSChart Y axis at run time

    I am using the MSChart control in a VB app. Currently I am hardcoding a value for the X and Y axis titles through the custom properties dialog under the text tab. What I want to be able to do is assign the value to the X and Y axis at run time to allow for English or French text. Can anyone...
  8. johnnyv

    question about my newbie site

    Yup it does Thanks for the info
  9. johnnyv

    referencing field in reocrdset

    Hello all I am playing around inner joins and have run into a problem. Here is my code strsql = "SELECT Client.ClientName, Product.ProductID, Product.Product from Client " & _ "INNER JOIN Product ON Product.ClientID = Client.ClientID Where Client.ClientID = " & Val(txtClientID)...
  10. johnnyv

    question about my newbie site

    Hello all I am a rookie when it comes to flash so I decided to create a site to display images as a way to learn a few things. The site is still under construction but I have a few questions if I could. - What is the best way to load images so that the site load time is minimized? - Why is...
  11. johnnyv

    Open web browser from VB

    Well here I go aagain answering my own question the following staement did not work lngRtn = Shell("rundll32.exe url.dll,FileProtocolHandler StrIndex_HTML_Path") This one did lngRtn = Shell("rundll32.exe url.dll,FileProtocolHandler " & StrIndex_HTML_Path & "") Notice how the variable name is...
  12. johnnyv

    Open web browser from VB

    This what appears in the debug window C:\Envision\Forms & Documents\Index.htm
  13. johnnyv

    Open web browser from VB

    I'm an Idiot!!, well sort of You can ignore problem one. THe IE window was minimizing to the tool bar because I was stepping though the VB code while I was running it. So oviously VB is going to retain focus !!! The word DumbAss comes to mind!! But with that said I still have a problem with...
  14. johnnyv

    Open web browser from VB

    I want to open an html page from within a VB app that is stored on my PC. I am using the following code to make it happen lngRtn = Shell("rundll32.exe url.dll,FileProtocolHandler C:\Envision\Forms & Documents\Index.htm") this will work but I have 2 problems First IE opens the html page but...
  15. johnnyv

    stepping through code as it executes in reverse order?

    Hello all When I want to step forward through my code as it is executing I can use the F8 key to see what is being executed. My question is how do I step backwards. I have a form deactivate function that is being called and I can't figure out why so I have 'red tagged' the function to force...

Part and Inventory Search

Back
Top