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 Rhinorhino 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: golyg
  • Content: Threads
  • Order by date
  1. golyg

    How to assign a textbox.text value to selected dropdownlist value

    I have a page where the user selects a product. I wish to then populate the textbox value with the selected ddl value to allow them to update the value if necessary. Here's my code: Protected Sub ddlProductFamilies_SelectedIndexChanged(sender As Object, e As EventArgs) Handles...
  2. golyg

    combo box error.

    Using Excel XP. I receive the following error when I open my workbook that already contains values in comboboxes. A little background... When the value in the first combobox changes, the list in the second dropdown changes. error message: run-time error '380': Could not set the List property...
  3. golyg

    Wireless device Frequency question.

    I was looking into purchasing a cordless phone and a wireless router for my home office this past weekend but noticed that the phone and my wireless router would both use the same frequency, 2.4mHz. I was curious if anyone knows if router technology may move up to 5.8mhz frequency or just always...
  4. golyg

    How is a graph legend data sorted in CR7.0?

    I have a report with a bar graph. I've created this report throught the "Report Expert" and in the "Sort" tab I've added a field in which I want the graph to sort by, I've even choosen under "Order", 'specifed order' and to the right of that I specifed the order in which I want to display the...
  5. golyg

    Passing Parameters within a report in CR7.0

    I want a sub-report to use a value that is being returned in the main report. I was thinking that I had to create a parameter value in the sub report for this to happen but now I am always being prompted from the VC++ app (that is where the report is being created..) . any idea how to do...
  6. golyg

    String manipulation help.

    I have a string that is coming from a database that I want to break down into seperate parts, in order to view it on the screen, I've decided that they should be no larger than 55 characters. The max length of the initial string is 256 but could be as small as 10.... The string is dynamic. So...
  7. golyg

    How to use decode to determine if number is negative

    I have a view that I'm using for CR report. I am using a decode statement so that I can determine which range the specific amount falls in. Just recently, I have come across the need to decode negative numbers. My questions are, how can I include negative numbers correctly? Is there a better...
  8. golyg

    Can I have an embedded Select statement in the Report Selection Expert

    Is it possible to have a statement like this in the Report Selection Expert: ({VLSYY_YEAR_YEAR.CASENUM} in (SELECT caseNo from subject case_subject where su_code = code and su_code = ToNumber({@Filter-SubjectNumber}))) I keep getting an error message that states: "The ) is missing" right...
  9. golyg

    Getting a Microsoft Cursor Engine error '80040e21' error...

    I've been researching this error message and it appears that it pertains to inserting data that is too large for a field, yada.yada.yada..But I'm not inserting any data. Here is my problem: I am not inserting any data, I am trying to open a page when I receive this error in one spot and in...
  10. golyg

    CR 7.0 Legend question

    Does anyone know how I can indicate throught Chart Expert how to use 2 different markers for the values being displayed on a line graph? Right now, I am displaying 2 values for each year change, and it keeps displaying each value with the same marker(a triangle). I would like to display 2...
  11. golyg

    Newbie Q: Adding multiple lines to a line graph

    I am trying to create my first CR 7.0 report. I would like to create a report that will display a line graph which contains 2 vertical lines, 1 for an average and 1 for a median value. I am having a terribly hard time displaying more than one. any insight would be great. thanks,
  12. golyg

    How to update PL/SQL field when user enters data through MS Access.

    I have a user who uses ms access to update/insert data thats in an oracle db. When the user enters a new record into a certain table they want a date to automatically be populated into a date field. How can I do this? would I use a view? thanks,
  13. golyg

    Active X Controls vs. Standard Window Controls

    Can someone explain to me why you would use Active X controls in place of standard window controls? quick list of benefits if possible and can I use regular controls on a dialog where ActiveX controls are being used? thanks so much
  14. golyg

    what is: 0xE06D7363: Microsoft C++ Exception

    When I attempt to debugg my app I receive the following message and my app never starts: Warning: CreateDlgControls failed during dialog init. First-chance exception in <appName.exe> (KERNEL32.DLL): 0xE06D7363: Microsoft C++ Exception. The thread 0x644 has exited with code 0 (0x0). The thread...
  15. golyg

    Obtaining .exe creation date.

    Hello all, I want to know if there is a way that I could "grab" the date the .exe was created and display it in the "About" dialog box for the user...? TIA,
  16. golyg

    error '80020009' Exception occurred...error message

    Hello all, I am going through a recordset and displaying secondary codes depending on a primary codes...and for some reason I keep getting this error: error '80020009' Exception occurred. on this line: do while suppNumb = rs.fields("supp_numb") here is a little code.... set rs =...
  17. golyg

    Preventing certain users from running certain programs like chat...

    I am using XP home OS and I was curious if there was a way that I can prevent one user from using a program but not another. This would be handy as that it would allow me to prevent my child from using a chat program like Yahoo at certain times but still allowing myself. thanks...
  18. golyg

    recordset creation problem

    I am attempting to open a recordset like this: tsql = "" tsql = "SELECT desc FROM product" set rs2 = dbsAMS.OpenRecordset(tsql, dbOpenSnapshot) I created the sql query through ms access and copied it over but now i am getting a 3146 error Description: ODBC--call failed. message... Its a...
  19. golyg

    Problems exporting data to Excel....

    I have a report that the user can view either on a page with HTML or they can open it in Excel. I am attempting to change the content type with this statement: response.contentType = "application/vnd.ms-excel" But it appears that when I do this I lose all my request variables and my...
  20. golyg

    Hiding a HTML label with Javascript

    I am calling a javascript function and in there I am checking to see the value of a listbox and if its a particular value I would like to show a label...but I keep getting this error: "'hisForm.other' is null or not an object" So, how do I hide the HTML label in Javascript? thanks

Part and Inventory Search

Back
Top