Pytanie : Przelotny wartość od External stół w kursor

Cześć,

I mieć wartość w external stół (col1, col2) che I chcieć w kursor.  The kursor być część procedure.

CURSOR cTocc IS
SELECT ODRĘBNY TOCCID, TTORDIRNO OD TOCCOBJD
WHERE OBJDID =
and OBJDBATCHREF=

Is ono lepiej funkcja tamte wartość wewnątrz? I próbować WYBIÓRKA W oświadczenie przed the kursor, ale the procedura wydawać się ten WYBIÓRKA przed the cursor.

Thanks

Odpowiedź : Przelotny wartość od External stół w kursor

Zmartwiony, I znać jeden, ale jeżeli ty używać BigStringEditor i UITypeEditor dla the "? "s, i definiować klasowy BigStringEditor w the klasowy kod (zmartwiony, I mieć VB.Net na mój maszyna, ale the kod musieć prawie the być) wtedy gdy ty klikać w the własność"… "pojawiać się (I myśleć ty potrzeba Browsable (prawdziwy) także) i jeżeli ty klikać dalej że 100x100 dialog pojawiać się che pozwalać ty.
(1):
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
14:
15:
16:
17:
18:
19:
20:
21:
22:
23:
24:
25:
26:
27:
28:
29:
30:
31:
32:
33:
34:
35:
36:
37:
społeczeństwo klasowy BigStringEditor: UITypeEditor
    {
        jawny override UITypeEditorEditStyle GetEditStyle (System.ComponentModel.ITypeDescriptorContext kontekst)
        {
            powrotny UITypeEditorEditStyle.Modal;
        }

        IWindowsFormsEditorService editorService = null;

        jawny override przedmiot EditValue (ITypeDescriptorContext kontekst, IServiceProvider dostawca, przedmiot wartość)
        {
            jeżeli (dostawca! = null)
            {
                editorService =
                    provider.GetService (typeof (IWindowsFormsEditorService)) jako IWindowsFormsEditorService;
            }

            jeżeli (editorService! = null)
            {
                Formularzowy foo = nowy Forma ();
                TextBox tb = nowy TextBox ();
                tb. True = true;
                tb. Wzrost = 100;
                tb. Szerokość = 100;
                foo. Wzrost = 100;
                foo. Szerokość = 100;
                tb. Tekst = value.ToString ();
                foo. Controls.Add (tb);
                editorService.ShowDialog (foo);
                powrotny tb. Tekst;
            }

            powrotny wartość;
        }


    }
Inne rozwiązania  
 
programming4us programming4us