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

  1. Cardioes

    Changing the text in a dw 'Text Object', from syntax in a window

    Matt, Thank you very much for your assistance.
  2. Cardioes

    Changing the text in a dw 'Text Object', from syntax in a window

    Greetings Tek-tips, I am curious if there is a way to modify the text in a 'Text Object', that is on a datawindow, from syntax in a window. For example: 't_1' on the datawindow displays "First Name". I want to place the datawindow into a window, and change the 'text' to something else.
  3. Cardioes

    Creating a Calendar

    Matt, Thank you again for your assistance! Any chance to clean up my code and learn more efficient methods is much appreciated =). Your suggestion for using "SELECT COUNT(*)" did indeed solve the issue of my select statement now working in run-time. However, it is returning a value of 0...
  4. Cardioes

    Printing in Powerbuilder

    Matt, Thank you very much for your assistance =).
  5. Cardioes

    Creating a Calendar

    I can not even get the Message box to pop up, so that I may debug it: LoopSection31: if NextDay_i <= 31 then row_i = dw_1.getRow() dw_1.setcolumn("cell" +String(Day_i)+"") dw_1.setItem(row_i, "cell" +String(Day_i)+"", String(NextDay_i)) dw_1.AcceptText() Date_i = String(Year_i)...
  6. Cardioes

    Creating a Calendar

    I think I cleared some of my own confusion =p, I just need help with the select statement now. I added the Select Statement to the loop that creates each day on the Calendar. The error I'm getting is: "C0038: SQLSTATE = 37000[Sybase]ODBC DRIVER][Adaptive Server Anywhere]Syntax error near...
  7. Cardioes

    Creating a Calendar

    Alright, so I made some adjustments to handle various exceptions, and the calendar works as intended; at least for now, hehe. I'm starting to play with Select Statements, and I think I grasp the concept. However, trying to get the information from one column to check if it exists...then to loop...
  8. Cardioes

    Printing in Powerbuilder

    (I tried posting this earlier, but the topic did not show up) Greetings Tek-Tiks, Is there a way to print a report and control what the filename would be? I would like to be able to store that file name in a variable. I suppose it is a simple inquiry, but I can't seem to be able to find a...
  9. Cardioes

    Creating a Calendar

    Never mind. I got it to work =)
  10. Cardioes

    Creating a Calendar

    Alright, so I fixed the initial problem using: ------------------------------ ////Generate Month Long Day_i, NextDay_i, Year_i, Month_i, row_i String Date_i, DayName_i, mod_script_i ////Get Column Values row_i = dw_1.getRow() dw_1.setcolumn("Month") Month_i = dw_1.getItemNumber(row_i...
  11. Cardioes

    Creating a Calendar

    Greetings Sybase Community, I am still a bit new to Powerbuilder, and coding in general, and would like to ask some assistance. I am attempting to create a calendar. Here is what I have done so far, and the problems I am having. -I created a table with just two columns; month and year...

Part and Inventory Search

Back
Top