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

  • Users: faisalsham
  • Order by date
  1. faisalsham

    how to display only first and last record in a report

    I have a list of records, however I only want my report to display the first and last record on the report. here is a sample of what I would like: records ------- A1001 A1002 A1003 A1004 A1005 To Be Displayed on the Report ----------------------------- A1001 A1005 Thanks in advance.
  2. faisalsham

    WordWrap DatGridView

    Thank You! That helped.
  3. faisalsham

    WordWrap DatGridView

    Hello, I'm using a DataGridView control, and I would like to be able to word wrap the text in a cell if it has multiple lines. I'm not sure how to do this. Any suggestion would be greatly appreciated. thanks in advance.
  4. faisalsham

    control arrays

    Hello all, I'm new to ASP. I have a text box control array created dynamically and I need to find a way to refer to the nth text box. I'm not sure how to do that. The code below just creates the text boxes and stores some value in them. Now how can I refer back to the nth text box through code...
  5. faisalsham

    counter doesn't work

    I converted the VB syntax to the Crystal syntax and it worked! it's weird why it doesn't work for the VB syntax. thanks again for your help!
  6. faisalsham

    counter doesn't work

    Thanks for the quick reply again Synapsevampire, If you read my first post, I do mention that the formula is in the detail section. Yes, I know that your formula allows for the first row but that is the only difference between the two formulas... and it still doesn't work. No groups.. just a...
  7. faisalsham

    counter doesn't work

    thanks for the quick reply synapsevampire... however, the code you posted is pretty much the same as the one I posted (mine is in vb syntax) and this is what I'm getting: ID counter ------------- 100 1 100 1 123 1 123 1 135 1 136 1 by the way, I'm using CR 9.0 can you...
  8. faisalsham

    counter doesn't work

    hello all, this is what I want my result set to look like: ID counter ------------- 100 1 100 1 123 2 123 2 135 3 136 4 I want the counter to increment anytime I have a new ID. I have the following code in a formula in the details section: dim intcounter as number if...
  9. faisalsham

    Supress a section

    try using this: if len(tablename.field) = 0 then "no data received today" else tablename.field end if
  10. faisalsham

    Suppress a SubReport

    Hello all, I have CR 9.0, I want to suppress a subreport if there are no records returned in the detail section of the subreport. I'm not sure how to accomplish this. Can anybody help? thanks in advance.
  11. faisalsham

    subreport parameters

    Ok, this seems very simple but not sure I'm having a difficult time. I have a main report with the following 2 parameters: 1. Start Date 2. End Date I also have a subreport in which I want to use the same 2 parameters as the main report. How can I pass these parameters to my subreport so...
  12. faisalsham

    binary data type in SQL SERVER

    Hello All, Does anybody know how can they read a binary data type from SQL Server. I have a field in a SQL Server table where the data type is binary. I'm trying to read this field in VB,however all I get is "???????!????" something like this. Is there a way to do this in VB? Your help is...
  13. faisalsham

    FTP Download issue

    Hello all, I'm trying to download file from a webserver. I am able to download a single file,however I need to download multiple files from the server. The problem is I will not know the names of the file ahead of time, so I was thinking if it is possible to download the directory that...
  14. faisalsham

    selectedindex is coming up undefined

    thanks for the help... that worked.. i need a vacation!
  15. faisalsham

    selectedindex is coming up undefined

    I have the following function that I'm using to build a query string. however the selectedindex for the listbox is coming out to be 'undefined' not sure what's wrong with the code. please help! function BuildQueryString(frmin) { var contractPK; var qs; var i; contractPK =...
  16. faisalsham

    Counting Records From Database

    dgillz, thanks for your help! It seems to be doing what I want to do.. now I have put the date factor in...
  17. faisalsham

    Counting Records From Database

    hello, I need to come up with the following report but have a difficult time. Here are the Columns and a sample data set: Work Unit Open WO Closed WO --------- --------- --------- Electrical 5 2 Carpentary 3 5 Sign Shop 10...
  18. faisalsham

    How to open a vbmodal form in a MDI

    Why are u trying to display a MDIChild as modal? There might be an easier solution, if you provide more details. And yes, there is code you can add to your program to make MDIChild act as Modally.

Part and Inventory Search

Back
Top