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

  1. joannef

    Totals Appearing Twice in Pie Chart

    Using Crystal Reports 10, when creating a pie chart from a SQL 2000 sp to be used in a VB .NET application, it is duplicating the totals it is pulling from the database (Counts the different types of data). Anyone have an idea why? Thanks for the help in advance. Joanne
  2. joannef

    How to use guidelines in .NET crystal designer

    I am trying to export data to excel for a mail merge and found out if I do not use the snap to grid and add guidelines it will insert blank columns and rows. Having found the solution to my major problem I then went to my Visual Studio solution, opened the report, and now I am unable to find...
  3. joannef

    Creating a view on server to be used by many users for mail merge

    I have an Access 2000 database that users rely on heavily for mail merges, this of course created many headaches so I have develpoed a SQL backend and VB .NET front end to avoid the issues I am having with Access and record locking. Now I want to add the mail merge capability and create the...
  4. joannef

    Changing legend for Excel Bubble chart

    Thanks Glenn, That gave me a workaround as well. Joanne
  5. joannef

    Runtime error 424:Object Required - used to work before 2000

    They are just a regular combobox with a set of list values, because the list values have no type of ctl I cannot seem to exclude them from being resized. Thanks for taking the time to look into this. Joanne
  6. joannef

    Runtime error 424:Object Required - used to work before 2000

    Got any suggestions for type of when it gives an error on the list items in the combo box. For example if the items in the combobox are Type1 Type2 Type2 When I run the resize it will tell me the control is of type "Type1" not list or combobox and therefore gets into the code...
  7. joannef

    Runtime error 424:Object Required - used to work before 2000

    I lied, but at least now it starts the application and its only when I switch forms that it gives me the same runtime error 383 I had before. And I do think it is the comboboxes causing the trouble at the moment. Back to the grindstone. Joanne
  8. joannef

    Runtime error 424:Object Required - used to work before 2000

    Hurray!! The renaming of the subroutine fixed everything. Thank you so much for your time and knowledge. I will have to remember that as programs get "smarter" with newer versions, I will have to use better programming techniques from ths start to keep up with it. Joanne
  9. joannef

    Runtime error 424:Object Required - used to work before 2000

    I wqas getting runtime error 424 object required .. which with your help moved it along until now i get the error runtime error 383 'Height' property is read only, when I look at the control it seems to show "". If I say do all but ctl = "" it resizes the form wrong. What...
  10. joannef

    Runtime error 424:Object Required - used to work before 2000

    Here is the full sub routine. This was working, could updating to Service Pack 3 have made need new references? Public Sub Form_Resize(frm As Form) 'Passes in the name of a form and does the form resizing On Error GoTo Errhandler Dim Heightratio Dim Widthratio Dim ctl As Control frm.Move...
  11. joannef

    pasting in Numeric field

    Why not use the IsNumeric function in Vb? Dim MyVar as long, MyCheck as boolean For example MyVar = "53" ' Assign value. MyCheck = IsNumeric(MyVar) ' Returns True. but if MyVar = "Help" MyCheck = IsNumeric(MyVar) 'Returns false If mycheck = false then...
  12. joannef

    Runtime error 424:Object Required - used to work before 2000

    That helped me get to my next problem :) Dim ctl as controls For Each ctl In frm.Controls ctl.Top = ctl.Top * Heightratio Next ctl Any suggestions? And I do appreciate your help with this. Joanne
  13. joannef

    Runtime error 424:Object Required - used to work before 2000

    I have this resizing code in my standard module that used to work before I moved to a Windows 2000 OS. Public Sub Form_Resize(frm As Form) 'Passes in the name of a form and does the form resizing ActiveForm.Move 0, 0, Screen.Width, Screen.Height ... End SUB Now I get a runtime error and the...
  14. joannef

    Passworded Word document keeps instance of word open on HTML

    I have a linked word document that I just recently added a password to for only authorized users to view the contents. Because the link on the web page worked fine before this password was added, now I am finding that once I open the document and add the password, an instance of WORD is kept...
  15. joannef

    MDAC_Typ.exe wont install on clean 2000 comp, anyone suggest reasons??

    I have a program that runs fine on WIndows 98 and NT. But for some reason it wont run on Windows 2000. I have updated the DAO object Library reference. I have installed the Jet pack 4.0. But when I do to install the mdac_typ.exe it runs through the whole installtion and as it does something...
  16. joannef

    MultiLine Text box Saving to Access97 Memo field losing data

    I know that a VB text box can store 64k of data .. an Access memo field in access can handle this as well .. why is it that my multiline text box will not display more than 255 characters? Maxlength in the text box properties is set to 0. Same happens for a RTF as well. Even when I try to cheat...

Part and Inventory Search

Back
Top