Search Result

Collapse
4 results in 0.0044 seconds.
Keywords
Members
Tags
nested
  •  

  • Andrew Hulting
    started a topic VBA and Visio

    VBA and Visio

    I have code in Visio that reads a access table, and creates a new tab for each item in the field. I want to have the code look for existing tabs and move to the next one if the tab exists. I guess it would be a nested loop but cannot seem to get it to work. Any help would be greatly appreciated.

    Andrew

    Code:
    Public Function fnImportText()
    Dim objAccess As AccessObject
    Dim Accapp As Access.Application
    ...
    See more | Go to post

  • How to make Nested class, which use default constructor parameters?

    Code:
    class Outer
    {
    public:
    	int outera;
    
    	class Inner{
    
    	public:
    		static int a,b;
    		int c;
    		void Displaystatvalue();
    		Inner(int parm = 0):c(parm)
    		{
    		}
    		
    	}in1;	     //}in1(15);//Not allowed why
            Inner in2;   //Inner in2(10);//not allowed,why?
    
    };
    See more | Go to post

  • Rusalex
    started a topic Troubles with 16 level nested stored procedure
    in DB2

    Troubles with 16 level nested stored procedure

    Hi everyone,

    I need to write a 16 level nested stored procedure. I wrote the code but when I run my program only 4 levels run. It doesn't matter what number of stored procedure is at the beginning: if it starts from 1 so the 1st, the 2nd, the 3rd and the 4th will be done, if from 9 so the 9th, the 10th, the 11th and the 12th will be done.

    Do you have any ideas why it happens?
    Thanks a lot.
    See more | Go to post

  • dlite922
    started a topic Nest a Stored Procedure in a Where Clause

    Nest a Stored Procedure in a Where Clause

    Hi DB People,

    I have a stored procedure that converts a specific id into another format (some conditions and bit-wise operations). Now I need to put this in a SELECT statement.

    I'm not sure how to do it other than make an INOUT parameter and then use that variable in the SELECT.

    The SP converts this: EP001234561234 to something like 1234567

    I searched google and wasn't able to do this:...
    See more | Go to post
Working...