User Profile

Collapse

Profile Sidebar

Collapse
paulnamroud
paulnamroud
Last Activity: May 15 '12, 04:49 PM
Joined: Sep 5 '06
Location: Montreal, Canada
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • I cannot access class inside ASP.NET Web Application !

    I cannot access class inside ASP.NET Web Application
    a few seconds ago|LINK

    Hello,

    I start to created a new ASP.NET Web Application with VS 2005.

    I created a sperate folder called "Classes" where I created my first class "CContact".

    Then, I added a page "default.as px" in order to display First name & Last name.

    Unfortunately, I cannot...
    See more | Go to post

  • How to access Resource file from a Class Library ?

    Hello,

    I'm building a generic Class Library that I will use it in all my projects.

    As for now, I can do the following where I have only one Resource file Resources.resx: LibPublic.Prope rties.Resources .ResourceManage r.GetString("Re cordType_Missin g").ToString () where LibPublic is the name of my Class Library.

    I have already worked on a Website Project where we can create our classes under App_Code...
    See more | Go to post

  • 'System.DateTime' and 'System.DBNull'

    Hello,

    I'm trying to send a Null value in a DateTime field while calling my stored procedure.

    If I use this first method (short with one line), i got the following error message:

    Code:
    cmd.Parameters["@p_order_date"].Value = (this.OrderDate == DateTime.MaxValue) ? DBNull.Value : this.OrderDate;
    Error Message:
    Type of conditional expression cannot be determined...
    See more | Go to post

  • paulnamroud
    started a topic How to open a window form ?

    How to open a window form ?

    Hi all,

    I have a main application developped with VB.net. And the dashboard is developped with asp.net.

    From the dashboard i would like to click and get the detail information by opening the VB.net window form.

    Can anymone tell me how to open a window form from asp.net page and send some parameters ?

    I need to open it either by clicking on a button or by clicking an hyperlink.

    Thank...
    See more | Go to post
    Last edited by Frinavale; Mar 31 '09, 02:07 PM. Reason: Moved to ASP.NET Answers from Insights.

  • paulnamroud
    started a topic Recursive stored procedure

    Recursive stored procedure

    Hi all,

    I need your help.
    I'm creating a program to display the circuit of Bus by city and stop.

    This is my example and i don't know how to do it:

    I have 3 differents circuits of bus and each circuit can have one or multiple transfer to another circuit.

    So let's say i'm looking for a trajet from City1/Stop1 (source) To City3/Stop11(destinat ion)

    Here's the scenario:...
    See more | Go to post

  • paulnamroud
    started a topic Error while reading CSV file
    in .NET

    Error while reading CSV file

    Hi Guys,

    I have a weird problem.
    While reading my csv file some data a returned as null.

    When the routine reads values in the column "Size_Code" (like "S",, "M"...) it returns "NULL".
    When routine reads the other values in the same column "Size_Code" (like 2, 4, 6 ...) it returns the right value.

    Any clue ? Any help?
    Shall i have...
    See more | Go to post

  • I'd just found the solution. Follow the link:
    http://www.experts-exchange.com/Database/Oracle/3rd_Party_Tools/Q_21887808.html
    See more | Go to post

    Leave a comment:


  • Urgent - 2147467259: [Microsoft] [ODBC driver for Oracle] [Oracle]

    Hi guys,

    I need your help!!!!

    I have installed and configured a new server called "intranetne w" in order to replace the old server "intranet."

    With the new server, i'm able to connect to Oracle and do SQL queries using the SQL-Plus.

    However, when i try to connect to Oracle via a test page written in ASP, the following error message appears on the screen "2147467259 :...
    See more | Go to post

  • Urgent - 2147467259: [Microsoft] [ODBC driver for Oracle] [Oracle]

    Hi guys,

    I need your help!!!!

    I have installed and configured a new server called "intranetne w" in order to replace the old server "intranet."

    With the new server, i'm able to connect to Oracle and do SQL queries using the SQL-Plus.

    However, when i try to connect to Oracle via a test page written in ASP, the following error message appears on the screen "2147467259 :...
    See more | Go to post

  • Urgent - Data at the root level is invalid. Line 1, position 1

    Hi all,

    I wrote a stored procedure with ms sql 2005 which returns a string parameter. This parameter contains differents xml elements and it's well formated.

    First, its works fine when i call my stored procedure with asp 3.0. I can display all the contents of this xml parameter with xsl.

    But, when it comes to call this stored procedure with ASP.Net 2.0, it doesn't work. It returns the following error message:...
    See more | Go to post

  • Urgent - Data at the root level is invalid. Line 1, position 1

    Hi all,

    I wrote a stored procedure with ms sql 2005 which returns a string parameter. This parameter contains differents xml elements and it's well formated.

    First, its works fine when i call my stored procedure with asp 3.0. I can display all the contents of this xml parameter with xsl.

    But, when it comes to call this stored procedure with ASP.Net 2.0, it doesn't work. It returns the following error message:...
    See more | Go to post

  • paulnamroud
    started a topic Oracle Forms - Migration

    Oracle Forms - Migration

    Hi all,

    We have an application written with Oracle Forms 5.0 and report builder 3.05. We are using Oracle 8i as a database. We have around 50 forms and 10 reports.

    I'm in a process of analysing and evaluating to upgrade/migrate or rewrite this application with a new tool in order to convert it on a web application.

    I have made few search and i found these 2 choices:
    - Migrate this application to...
    See more | Go to post

  • paulnamroud
    started a topic Oracle Forms - Migration

    Oracle Forms - Migration

    Hi all,

    We have an application written with Oracle Forms 5.0 and report builder 3.05. We are using Oracle 8i as a database. We have around 50 forms and 10 reports.

    I'm in a process of analysing and evaluating to upgrade/migrate or rewrite this application with a new tool in order to convert it on a web application.

    I have made few search and i found these 2 choices:
    - Migrate this application to...
    See more | Go to post

  • Only functions and extended stored procedures can be executed from within a function

    Hi everybody,

    When i try to excute a function i got the following error message:
    " Only functions and extended stored procedures can be executed from within a function."

    I wrote the following stored procedure wich update the sequence id :
    --------------------------------------------------------------------
    CREATE PROCEDURE dbo.pr_get_id_s equence
    (@p_nom_sequenc e varchar(100),...
    See more | Go to post

  • paulnamroud
    started a topic XML Problem - Urgent
    in XML

    XML Problem - Urgent

    Dear Sir,

    I have a problem while parsing my XML file. I can read all nodes except the one called "Color".
    I have a node called "Color" with an attribute "l" to determine the language is frensh or english.

    Can anyone help me ?
    Thank you.

    Paul

    Here's my code in VB.Net

    Code:
                Dim doc As XmlDocument = New XmlDocument
    ...
    See more | Go to post
    Last edited by Dormilich; Mar 7 '09, 07:12 PM. Reason: added [code] tags
No activity results to display
Show More
Working...