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 Wanet Telecoms Ltd 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: rw409168
  • Content: Threads
  • Order by date
  1. rw409168

    Subreport links - parameter prompted twice

    Greetings, I've migrated a series of pre-written reports over to another server (exact same version CR XII, R2). Whereas 99% of them run fine by uploading them and making sure I export the business view I have one with a subreport issue. The reports contains several subreports which link onto...
  2. rw409168

    BO XI R2 SP2 Windows NT Authorisation - BusinessObjects NT Users"

    Greetings, If users and/or user groups are added to the Windows NT Group "BusinessObjects NT Users" created by the Crystal reports install, should they automatically be selectable when adding users via the Central Management Console? After finally sorting my IIS issue out I'm looking to enable...
  3. rw409168

    BO XI R2 - Installation setting up IIS 5 as the web component adapter

    Greetings, IIS 5 is running on a windows 2003 server, I've installed BO XI R2 SP2 and select IIS with default website ONLY during the web component adapter part of the install. Testing the installation I am unable to access central Console Management and Objects Business Intelligence platform...
  4. rw409168

    BO XI R2 - Creating Users with WiN NT authorisation.

    Greetings, After successfully installing Crystal reports as part of a migration and ensuring reports can be run and scheduled on a WIndows 2003 Server,I'm experiencing when adding new users with Windows NT authorisation. I've checked the server to ensure the NT domain and groups exist on the...
  5. rw409168

    Crystal Reports XI R2 - Dynamic Parameter from Cascading LOV problems

    Greetings, Within a crystal report I have created a dynamic parameter utilising the existing datasource as a List of view. When previewing the report it fails with 'List of Values failure:fail to get values. [Cause of error: Failed to open the Connection.] So I thought this would be a...
  6. rw409168

    Crystal reports XI R2 11.5 - Scheduled reports stuck in pending

    I'm assisting in migrating a Crystal reports server XI R2 11.5 installation and reports to a new server, currently the existing installation is running along side the new install on a different server. The problem I'm experiencing with the new install is when scheduling reports, the report...
  7. rw409168

    IT Interview - Software developer - What to research for the test.

    Greetings, I have an interview next Tuesday for a company that in their own words "Operate from two secure sites and run managed database services solutions for many blue chip clients. We have billions of rows of data under active management in our secure data centres which are regularly...
  8. rw409168

    How can I format laptop harddrive when dos format commands fails?

    Greetings, My friend has a Dell laptop running Vista which has a dodgy hard drive. I had planned to reinstall vista on the laptop, formatting the drive (2 partitions) via the included Dell vista recovery cd. However it fails when choosing the option to format the partitions, hard drive error...
  9. rw409168

    Common Redirect at search engine malware present

    Greetings, I googled the internet for this problem where google searches are redirected. With one user recommended downloading the TDSSkiller progam. I ran in which it reported the following:- Scanning Kernel memory ... Driver "atapi" infected by TDSS rootkit! File...
  10. rw409168

    Sql server 2005 - Help with concatenating date and times

    Greetings, I have an existing database for a time management system with fields as follows:- bookDate, StartTime, EndTime ALL of type datetime. Frustratingly there is no datatype 'time' in sql server 2005. I would like to say in T-SQL Select * from bookings b where (b.bookdate, ddmmyyyy) +...
  11. rw409168

    Vb.net 2008 .AsEnumerable output struggles

    Greetings, I have a datatable which contains xml data. The LINQ code within the thread selects the datarow based on a criteria. The problem lies no matter what I try I can never get the values as xml/string data, I often see the literal words "System.data.datarow" or simalar rather than the...
  12. rw409168

    Vb.net 2008: Datagridview resetting unbound column values on remove

    Greetings, I've programmatically created a datagridview which contains DataGridViewCheckBoxColumns. I later assign the datagridview a datasource from a dataset -> datatable and for bound columns set the datapropery to the appropriate datatable columns. When I remove datarows from the...
  13. rw409168

    vb.net 2008: Hosting datetimepicker control in datagridview help

    Greetings, I have created a datatimepicker control in a datagridview (via http://msdn.microsoft.com/en-gb/library/7tas5c80(VS.80).aspx), which functions fine and has a mindate and maxdate set. I want to adapt this for a datetimepicker with format HH:mm. I have done this and it functions to a...
  14. rw409168

    Vb.net 2008 Datagridview - DataGridView1.UserAddedRow trigger issue

    Greetings, Im fighting with my sanity over datgridviews again. My datagridviews control last column is of a numericupdown celltype (found source on MSDN) and if the value entered is >1 I wish to add the number of rows specified to the datasource of the datagridview i.e a datatable in the...
  15. rw409168

    Vb.net 2008 Datagridview update Database questions

    Greetings, This is quite a broad question so I will do my best to descibe the scenerio clearly and accurately. A datagridview has a datasource of type dataset, the dataset is created in a seperate class where all the database functionality takes place, returning the dataset. The dataset...
  16. rw409168

    LINQ XML - Output problems.

    Greetings, Im very confused right now. So far I can run LINQ Xml queries on a given xml file and output the results to datagridview/listboxes. I now want to output the results of a query into a form control that displays html e.g. Webbrowser I can do this via a standard xml file and...
  17. rw409168

    Vb.net [2008] LINQ xml query - anonymous type problems

    Greetings, I'm out of my depth populating a windows form from an XML linq query (see form code below). The listbox is populated as intended, when a value is selected (row) I would like to populate the remaining form controls. The linq query I believe has created a new datatype "Anonymous...
  18. rw409168

    MMAVb.net [2008] - ADO.Net SQLCommand can you use subquery in INSERT?

    Greetings, Hmm I wasn't sure if to post this here or the SQL server programming board, here goes:- Using a sqlcommand is it possible to use subqueries in an INSERT statement? I attempted the following (and numerous variations playing around with syntax):- Using insertuser As New...
  19. rw409168

    SQL Server 2005 - fieldname alias issue (datatypes)

    Greetings, I have the following vb.net code Using populateRoomsAdaptor = New SqlDataAdapter("Select r.RoomID, r.RoomID & ' - ' & r.Location & ' - ' & r.Facilities as roomLookup from Rooms r", conn) This errors with This I believe is because roomID is an int whereas the other fields are...
  20. rw409168

    Vb.net [2008] DataSelect using COLLATE (case sensitve query).

    Greetings, I am designing a login screen and require to count the rows where the login and password are the same. The password is case sensitive, the login isn't as selected from a pre-populated combo box and can never be changed. I know I can set collation at table creation time but how do I...

Part and Inventory Search

Back
Top