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

  1. cosmoh2o

    Read/Write Binary

    Thank you xwb.
  2. cosmoh2o

    Read/Write Binary

    Please help, I am new to Fortran so this is probably a VERY simple question but what is the easiest way to write data to a binary file using Fortran? Any help/hint/simple example code would be wonderful. Thank you.
  3. cosmoh2o

    ReportNet Java.exe

    Thanks martyc71. I will try your suggestions.
  4. cosmoh2o

    ReportNet Java.exe

    Please Help, Whenever I bring our Cognos server all the way down and back up the java.exe process starts eating up CPU cycles. The java process eventually takes 100% of the CPU and no one can use reportNet. Eventually the java.exe process settles back down to normal CPU cycle usage but this is...
  5. cosmoh2o

    Error using Cognos ReportNet Through Web

    Figured it out. There is a "system.xml" file that is stored in the Cognos/Templates/ps/ directory. When I changed all the localhost server names for "series 7" to the full path and restarted the reportNet services it ran perfectly.
  6. cosmoh2o

    Error using Cognos ReportNet Through Web

    Please help, I am getting a strange response from ReportNet and PowerPlay when accessing the system through the internet. I can log onto Cognos upfront but anytime I try and open ReportNet or powerPlay I get the HTML "Page Can Not be Displayed" (http://cognos-app/crn -where "cognos-app" is the...
  7. cosmoh2o

    Report Expression

    Thanks to both JGirl and GJParker!! I will try both.
  8. cosmoh2o

    Report Expression

    Please help, I have a value coming from a query in a report that is of the form "yearmonth" (the 4 character year is concantenated with the 2 character month - e.g. "200401" for January 2004) and I want to "parse" the value so that only the last two characters are displayed on the report (the...
  9. cosmoh2o

    Multiple .NET ODBC Commands

    Thank you ChipH.
  10. cosmoh2o

    Multiple .NET ODBC Commands

    Please help, I am building a program that connects to a separate server for a database through .NET ODBC. Is it possible to use a single OdbcConnection object with different OdbcCommand objects on the same database? For example: I connect to the database using OdbcConnection1 and execute a...
  11. cosmoh2o

    ODBC connection with C# and ProvideX

    I figured the "speed" problem out. It was my code. I was opening and closing connections unneccessarily to the database. After I refactored the class I built to access the database the program worked at a much improved pace. Thanks for the quick response though.
  12. cosmoh2o

    ODBC connection with C# and ProvideX

    I have found another problem with ODBC .NET and was wondering if anyone else has found this problem. I can connect with .NET to the database with ODBC and everything works just fine, the only issue is "speed". It seems very slow. Is this normal for an ODBC .NET connection? I am using System DSN...
  13. cosmoh2o

    Weird behavior Saving a Bitmap File

    I figured it out. It turns out that calling ".Save" directly on a file to be stored as a BMP won't work. I had to convert it before saving it using the following code as a method: Bitmap dest = new Bitmap(xSize, ySize) Graphics gfx = Graphics.FromImage(dest) gfx.DrawImage(img, 0, 0, xSize...
  14. cosmoh2o

    Weird behavior Saving a Bitmap File

    Please help, I am trying to save a .bmp file from a BitMap object in VB .NET and it saves, but the file is always "solid" black. If I save it as a PNG file it looks as it should, however I need it in a BMP. Has anyone out there had a similar problem, if so how did you solve it? I have been...
  15. cosmoh2o

    ODBC connection with C# and ProvideX

    Never mind, I figured it out. Turns out that in order to connect to an ODBC driver with .NET you need to download Microsoft.Data.ODBC.dll and install it into the .NET framework. Once I did this and called the "System DSN" (where the ProvideX 32-Bit ODBC driver was set up) using the...
  16. cosmoh2o

    ODBC connection with C# and ProvideX

    I am new to using C# and ODBC connections and was wondering what is the easiest way to connect to a FACTS database (uses ProvideX ODBC driver) that is not on the localhost but is inside our LAN? The .NET application is a Web Application running at 10.0.3.79 (on a Windows 2000 box) and the...
  17. cosmoh2o

    string limit

    Thanks to everybody for the quick responses. I am relatively new to .NET and C# but am learning. I will be sure to use StringBuilder if I have to concantenate strings. Thanks again to everybody.
  18. cosmoh2o

    string limit

    Quick question, Does anyone know the max length of a string in .net with C#? Thanks
  19. cosmoh2o

    Newbie SQL Server relational question

    Thanks for all the great help! You guys know your stuff.
  20. cosmoh2o

    Newbie SQL Server relational question

    Thanks to rac2 and mrdenny for your help! All I have ever programmed for an RDBMS is MySQL and foriegn key constraits were really not true. This is my first attempt at MS SQL Server. Is the "insert" method the most common way to populate records in related tables with MS SQL Server...

Part and Inventory Search

Back
Top