Posts by user2945342 • 26 points
3 posts
-
0
votes3
answers17303
viewsA: What is the best way to read an XLS file?
Using Microsoft.Office.Interop.Excel using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using…
-
1
votes2
answers1354
viewsA: Select from cursor
DELIMITER $$ CREATE OR REPLACE PROCEDURE email_list_temp_table (in w_uf varchar(2)) BEGIN DECLARE v_finished INTEGER DEFAULT 0; DECLARE v_email varchar(100) DEFAULT "";…
-
-3
votes2
answers916
viewsA: How to minimize an application in C#?
private void button4_Click(object sender, EventArgs e) { Process[] pros = Process.GetProcessesByName("excel"); IntPtr hnd = pros[0].MainWindowHandle; …