User Profile

Collapse

Profile Sidebar

Collapse
LitaOsiris
LitaOsiris
Last Activity: May 7 '10, 03:11 PM
Joined: Jan 25 '08
Location: Ireland
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • LitaOsiris
    started a topic JSP: JNDI to SQL Server 2008
    in Java

    JSP: JNDI to SQL Server 2008

    Hi everyone,

    I'm doing a website in JSP. I'm using Tomcat 6 and have gotten the site talking to the backend file. However, when I go to add in a database connection, I have problems. This is my first time trying to connect to a SQL Server 2008 database. In the past I have used Oracle.

    So I have the Context.xml file in the META-INF folder. This is an example of the file I had before with the Oracle information:
    ...
    See more | Go to post

  • LitaOsiris
    started a topic ReportViewer

    ReportViewer

    Hi all,

    I have three tables and I want to join them to display different fields from each one on a report.

    Is there a way I can programatically put all these into a dataset to be linked to the ReportViewer? I found that the wizard will only let me select one table and then will set this selection in its properties.
    See more | Go to post

  • LitaOsiris
    started a topic Report Builder 2.0

    Report Builder 2.0

    So far I have found it very difficult to use. I have had extreme difficulty when trying to set up a report server so subreports can run within the report. I have the report server running but then it won't connect to the webpages it specifies. I have tried changing the service account from the default local to the administrator but this does not work - I end up receiving permission errors. The guides I've read said this should be a piece of cake...
    See more | Go to post

  • I would guess from the first line that you're trying to divide by zero somewhere. The best thing to do is have a check on your dividing number that if it's equal to zero, don't do the division, just insert a zero.
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    replied to System.Data.SqlServerCe
    I got this working in the end but just by using an untouched copy of VS 2005 and SQL Server 2005 on another machine. We tried upgrading the program to 2008 but that caused the following error on the handheld (Windows CE):

    You are trying to access an older version of SQL Server Mobile database. If this is a SQL Server CE 1.0 or 2.0 database, run upgrade.exe. If this is a SQL Server Mobile 3.0 or later database, run Compact/Repair....
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    started a topic System.Data.SqlServerCe

    System.Data.SqlServerCe

    Hi all,

    I'm getting the following error:

    The type 'System.Data.Co mmon.DbConnecti on' is defined in an assembly that is not referenced. You must add a reference to assembly 'System.Data, Version=2.0.0.0 , Culture=neutral , PublicKeyToken= b77a5c561934e08 9'.

    and it's the same for

    System.Data.Com mon.DbCommand
    System.Data.Com mon.DbDataAdapt er



    The code is using...
    See more | Go to post

  • LitaOsiris
    started a topic Remote Procedure Call failed

    Remote Procedure Call failed

    Hello everyone.

    I am having a problem with a customer's website which is running from IIS (version 6, I think). It's a web ordering form written in ASP.Net and when the order is submitted it calls a com dll. The call seems to be fine, but when it tries to do anything with it, it immediately throws up an error.

    The RPC services are running.

    Any help would be absolutely fantastic as we are at the end of...
    See more | Go to post

  • LitaOsiris
    replied to Get and Set Method
    On the click event to go into the main form have a string to get the name out of the textbox on the login form. When you call the main form, pass in the string with the name.

    string username = txtUsername.Tex t;
    FormMain frmMain = new FormMain(userna me);


    public FormMain(string nameIn)
    {
    lblShowName.Tex t = nameIn;
    }
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    replied to WinCE C# Exception 0x80000002
    in .NET
    Even without the code on exit I would still get the error.

    I found a solution though. It involved getting rid of all the components that were added to the program and replacing it with code of my own that would do the job instead. It appears to have worked....
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    replied to WinCE C# Exception 0x80000002
    in .NET
    Version 2.0
    I've been trying that but it's hard to simulate since the error is random.



    The objects I have listed are used. I don't see how they would lose their values while the program is still in operation....
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    started a topic WinCE C# Exception 0x80000002
    in .NET

    WinCE C# Exception 0x80000002

    Hey,

    I'm getting a random error message in my program on a handheld that seems to happen when the program loads up. It comes up saying Fatal Application Error Exception 0x80000002. Looking that code up showed it as being a memory leak problem.

    The table adapters simply fill combo boxes with necessary customer and stock group info.

    Code:
    private void FormTran_Load(object sender, EventArgs e)
    {
    ...
    See more | Go to post

  • LitaOsiris
    replied to C# - Bluetooth
    in .NET
    The InTheHand library is actually found here.

    The InTheHand.Net.P ersonal.dll is needed.
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    replied to C# - Bluetooth
    in .NET
    Hey everyone,

    The good news is that I found a solution to this problem.

    It requires using the Microsoft Embedded Source Tools found here and the InTheHand.Net library found here.

    This prompts the header: 'using Microsoft.Windo wsMobile.Shared Source.Bluetoot h;' which unfortunately disallows 'using InTheHand.Net.B luetooth;' but it allows the use of BluetoothRadio without the need for that bthutil.dll if...
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    started a topic C# - Bluetooth
    in .NET

    C# - Bluetooth

    Hey everyone,

    Have a tough problem here I'm trying to solve but to no avail. Basically a program I'm doing on a handheld requires a connection to a printer via bluetooth. When everything is set up, it's all fine, everything works. However, when the handheld is switched off and switched back on, it loses the connection to the printer and so the only way to resolve this as I've found is to disable and then re-enable bluetooth. Obviously,...
    See more | Go to post

  • LitaOsiris
    replied to C# program on handheld
    in .NET
    Thanks for taking the time to read this post but I have solved it. As usual it was something small. The menu property of the form was filled in when it shouldn't have been. That was creating the grey area at the top of screen under the title bar.
    See more | Go to post

    Leave a comment:


  • LitaOsiris
    started a topic C# program on handheld
    in .NET

    C# program on handheld

    The program I'm doing includes forms and everything is fine except for the fact that a grey space appears right under the title menu. I have no idea why it is appearing.

    The form is designed to be non-resizable and is the exact size of the handheld screen (243 x 293px).

    Any help would be appreciated.
    See more | Go to post
No activity results to display
Show More
Working...