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

  • Users: Lynus
  • Order by date
  1. Lynus

    Need Instant Message Engine

    Hi folks. I have been using pidgin and been a developer for years I would like to build my own instant messenger in VB 2008. I have been coding against the Fluent TOC ibrary but frankly it sucks. I cant get away messages, And if have users aliased, It doenst show them online. I have been...
  2. Lynus

    Stuck on Getting File Informaiton

    I am using the response.trasmitfile method and in firefox it works wonderfully. However in IE V6 and V7 it gets stuck on "Getting File Information" then eventually errors with unable to download the aspx thats supposed to be processing the tranfer. Here is my code: Dim mypath As String =...
  3. Lynus

    Sort Listview in Code

    That worked like a charm. I tried setting the sortkey in the object properties this morning but it kept complaining about it being the wrong format. Anyway, You get a star dude, thanks for the help. ~Paul
  4. Lynus

    Sort Listview in Code

    No. The entire database is being displayed. Here is the code: CHRDB.RecordSource = "Skills" CHRDB.Refresh CHRDB.Recordset.Sort = "Availability" Dim skilllistload As ListItem Do CHRData1.DataField = "SkillName" Set skilllistload = SkillList.ListItems.Add(, ...
  5. Lynus

    Sort Listview in Code

    I see hundreds of posts on how to sort a listview when the user clicks on a column but what if I have a listview and I want it sorted before the user sees it. What I want to do is after the listview is populated, I want to sort it and then display the form to the user. Anyone know how?
  6. Lynus

    Changing Crystal Report DBase Connection

    You are the best!!! Thanks for the help Dave, That worked like a charm. I gave you another star :) Thanks for all the help.
  7. Lynus

    Whats wrong with MY Connection???

    Have you made any codeing changes to the application or is it compiled and running outside of the environment?
  8. Lynus

    Changing Crystal Report DBase Connection

    Thanks Dave. One last question. The report in question has 8 subreports in it as well. I notice the Datafiles(0). Is the 0 the index for the report? Should I do something like this??? Dim r as integer for r = 0 to 7 CR1.Datafiles(r) = "c:\mypath\mydb" next Thanks for the help.
  9. Lynus

    Building my First Crystal Report

    How do I found out what the provider name is within the report?
  10. Lynus

    Building my First Crystal Report

    I have built my first crystal report in CR8. When I built the report I chose a pre-existing access database. I connected to the database and pulled all the fields that I needed to in order to build my report. Works Great!. But now I have a problem. The Database that I need to connect to isnt the...
  11. Lynus

    Changing Crystal Report DBase Connection

    Ok so I am a little confused. How does changing the application control alter the connection for the report? I am only calling the report and running it with the object arent I? My apologies for the remedial questions but I am a CR newbie. Thanks.
  12. Lynus

    Changing Crystal Report DBase Connection

    Well you see.... Heres the problem. Yes I am using an Access database. I am only using the Crystl32.ocx object on the application. I can manipulate the OCX properties but how does changing the OCX properties manipulate the database connections of the actual RPT file?????
  13. Lynus

    Changing Crystal Report DBase Connection

    I created a report in CR8. I connected it to a temporary database during design to pull the fields I needed. It is complete and saved. Now I go into VB and I add the CR object and display the report thusly: CR1.ReportFileName = App.Path & "\ChaPrint.rpt" CR1.Action = 1 So my problem is that...
  14. Lynus

    Newbie Missing Fields Question

    Great Answer. Worked like a charm. Thanks TurkBear. I gave you a well deserved star. Thanks again.
  15. Lynus

    Newbie Missing Fields Question

    Alright, I found the right place to put the formula but it gives me the same errors. I changed it and put this in: if isnull({CharacterInformation.AbilSTR}) then " " else {CharacterInformation.AbilSTR} This gave me no errors but doesnt help my original problem which is when I preview it its...
  16. Lynus

    Newbie Missing Fields Question

    Just text in the database.
  17. Lynus

    Newbie Missing Fields Question

    I get the following: "The result of the selection formula must be a boolean"
  18. Lynus

    Newbie Missing Fields Question

    Ok, I put the following formula in: if isnull({CharacterInformation.AbilSTR}) then " " else totext({CharacterInformation.AbilSTR},0,"") When I go to check it I get an error: "Too many arguments have been given to this function" and it sticks the cursor right after the "else" part of the...
  19. Lynus

    Newbie Missing Fields Question

    Where do I put that formula. I am really new to Crystal Reports. Thanks.
  20. Lynus

    Newbie Missing Fields Question

    I am designing a report in Crystal Reports 8. So far so good except for one snag. When I preview the report any feilds in the database that dont have anything in them dont show up on the preview. But I want them to. All of my fields have borders around them. If the field in the database is empty...

Part and Inventory Search

Back
Top