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 wOOdy-Soft 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 sbing

  1. sbing

    Adding a New Control File

    Hi, Your approach looks reasonable; however I would make one slight alteration in the Host copy command. Since you know that control01 is valid based upon the fact that you have a stable startable instance, I would copy control01 rather than control02 to create control03 as follows...
  2. sbing

    SQL query for CLOB

    Hi, Try to make the substr character buffer length slightly larger as in the following: select id, length(rec), dbms_lob.substr(rec, 4096 ,1) from ITEMS WHERE ID = 'PROD' or if that doesn't work try giving it the maximum character buffer length: select id, length(rec), dbms_lob.substr(rec...
  3. sbing

    cvstrac compile - ld: fatal: collect2: ld returned 1 exit status

    I am attempting to compile cvstrac (Wiki) for Solaris 9 ad Solaris 10. I get the following error(s): $ make gcc -g -O0 -Wall -o cvstrac attach.o browse.o cgi.o common.o cvs.o db.o format.o git.o history.o index.o login.o main.o md5.o rss.o search.o setup.o svn.o test.o...
  4. sbing

    How to preselect items in a C# ListBox Control

    JC, Worked as advertised! I did exactly what you described. I used the this.Load statement and moved all of my ListBox initialization code into the this.frmMain_Load method and “everyone lived happily ever after.” Thanks...
  5. sbing

    How to preselect items in a C# ListBox Control

    JC, I tried your suggestion. I cut and paste the frmMain_Load method from your reply into my form class, but it never seemed to be executed. I enabled debug and placed a breakpoint on the lstFrom.Items.Add("BTU/min"); statement and the program execution never stopped there. Am I putting this...
  6. sbing

    How to preselect items in a C# ListBox Control

    How do you highlight/preselect items in a C# ListBox and where is the best place in the code to do so – Form_Load, Control_Load methods? Here is the code that I tried but it did not work: public frmMain() { // // Required for Windows Form Designer support //...
  7. sbing

    Grabbing UML diagram Association Link connector text....

    I found a solution to my data entry issue. I simply cut and paste a zero value cell from another shape protection field into the LockTextEdit field and that works just fine. Thanks for the help.
  8. sbing

    Grabbing UML diagram Association Link connector text....

    I was able to access the shape sheet for the connector; however when I attempt to update the LockTextEdit field it doesn’t take my value for some reason. When I press enter after entering a =0 value, (I had to enter the equal sign), I get my 0 value followed immediately by another shape...
  9. sbing

    Grabbing UML diagram Association Link connector text....

    How do you move/rotate/manipulate the connector text on a UML diagram. I want to move/rotate the text that is associated with an Association Link on the UML diagram. If the line connecting the classes or interfaces is vertical, the Visio product places the connect text directly over the top...

Part and Inventory Search

Back
Top