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 strongm 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. jennyek2000

    render method - report caching issue

    In case anyone has a similar problem, I found the solution. I had two additional parameters on this report, that I wanted to pass in NULL for. To do this, I was creating the parameter values to pass in ot the render method but ignoring the parameters whose values should by NULL. When I did...
  2. jennyek2000

    Report Manager not visually what I was expecting

    Have you got IIS installed? Is the .NET framework installed etc? You may need to register ASP.NET with IIS using the following: aspnet_regiis -i (use the command line from C:\Windows\Microsoft.NET\Framework\v2.0.50727 (or whatever version you have))
  3. jennyek2000

    Report Manager not visually what I was expecting

    Sounds like you are viewing the reportserver interface rather than the report manager. Try using the URL: http://localhost/reports, instead of http://localhost/reportserver.
  4. jennyek2000

    render method - report caching issue

    I am developing an ASP.NET web interface for the reporting services so that our reports can be used on our website for our clients. I have a data-driven subscription set up to preload the cache for all of my reports. This works fine, and when I run any report via Report Manager or Report...
  5. jennyek2000

    Terminal emulator for Pocket PC???

    Hi all, Does anybody know where I can find a FREE terminal emulator for my Pocket PC - iPaq ( like Hyperterminal for Windows ). It must have zmodem protocol capabilities. Thanks in advance... Jennyek2000
  6. jennyek2000

    Inserting symbols( arrows etc) into a text box

    I am writing an application in which the user should be able to insert symbols into text boxes - which will be then be transmitted to a digital display. The symbols should at least include arrows. So for example they might right click on the text box and select a symbol which will then be...
  7. jennyek2000

    Security exception when creating a database

    In my application I have used ADOX to create a database. The assembly I have created to run on all the computers has been given FULL TRUST by using the .NET framework wizards. Howerver, when I try to run the application and attempt to run the code that creates the database, I get the following...
  8. jennyek2000

    Crystal Report Viewer printing

    I am using a crystal report viewer to view and then print a report. I want the report to be printed in portrait rather than landscape. I set the report print options to this and when I print it directly (using printtoprinter) it works, but when I try to print through the crystal report viewer...
  9. jennyek2000

    Deleting a whole database

    I need to delete a database that I previously created using ADOX. It is an Access Database (.mdb). Does anybody know any ways of deleting databases ?? Not just objects from the database? Thanks, Jenny
  10. jennyek2000

    error: Could not find installable ISAM (create database)

    I am trying to create a new database programmatically using ADO ext 2.7 (in vb.NET) using the following code: Dim mycatalog As New Catalog() Try mycatalog.Create("Provider=Microsoft.Jet.oledb.4.0;DataSource=Q:\Job" & CmboxJobnos.Text & ".mdb") Catch ex As...
  11. jennyek2000

    .NET framework installation

    I have a .NET program but dont want to install .NET framework on all computers - I want to just install it once onto the server or do it all at once somehow. The application is to be run from the server. Can anyone help? Jenny
  12. jennyek2000

    Pausing the application

    Probably a simple problem but I just need to know how I can get the application to pause for 3 seconds before moving onto the next bit of code. Jenny
  13. jennyek2000

    Opening a file

    Hi I have never used the Windows API before and am a mere beginner at VB.NET. What I need to know is how to open a file of any type using a windows API call (or is there a better way?). I know how to use the VB.NET openfiledialog and plan to use this in my application. I also found this...
  14. jennyek2000

    Adding items to combo box

    Hi I have a combo box whose items are the document sizes A0, A1, A1, A3, A4 and A5. These items were added to the box at design time (i.e. items collection) The combo box is bound to a column in the database (Access) whose fields are also a drop down menu of A0, A1, A2, A3, A4 and A5, using...
  15. jennyek2000

    Reading in a certain number of characters

    How can I read in a certain number of characters (i.e. not all) from a string in a control (e.g.. a list box item) into a variable?? E.g. "Jenny Keenan" Just read "Jenny" into the variable. Thanks, Jenny
  16. jennyek2000

    Selecting from a Date Time picker

    Does anybody know what event is handled the second somebody selects a date from a date/time picker? Its not Value_changed. Jenny
  17. jennyek2000

    Selecting tabs on a tabcontrol

    OK. Ignore this. Ive figured it out! should have noticed before. It's TabControl1.SelectedTab = TabControl1.TabPages.Item(0) Yey. Thanks anyway, Jen
  18. jennyek2000

    Selecting tabs on a tabcontrol

    I have a tab control and wish to control programmaticly the selecting of a particular tab (i.e. the displaying of a particular tab page) Does anybody know how to do this. I tried: Tabcontrol1.tabindex = 0 but this dosnt work Thanks, Jenny
  19. jennyek2000

    How could you use a DataRow rowfilt

    How could you use a DataRow rowfilter to filter out all of the records that have got a NULL value.
  20. jennyek2000

    Finding a row in the dataset then binding it!!

    If I have already bound the text boxes and I use the rows.find method of the dataset, is the bindingmanager position supposed to automatiically go to the found row? Jenny

Part and Inventory Search

Back
Top