yep...
anywho I'm trying to create a database that displays text entered into a a different form (well it's more then that but that's the basic goal as of now)
Funtions (current problem)
Spoiler
Code:
CREATE FUNCTION dbo.Function4
(
parameter1 int = 5,
parameter2 datatype
)
RETURNS Table1 TABLE (UserName, Password, Password_Confirmation, Assets)
AS
BEGIN
INSERT INTO Table1
(UserName, Password, Password_Confirmation, Assets)
VALUES
(a,b,c,d);
/*SELECT ... FROM ...*/
RETURN
END
Form who's information is to be inserted into the table/database
Spoiler
Code:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace Login_Basic
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
I'm semi-proficient in C#, but I'm not entirely sure what you're asking. If you wouldn't mind clarifying a bit, I'd be more than happy to take a stab at it.
What I was trying to to do was make what's in the Login Form( "Form who's information is to be inserted into the table/database" tab) Display by the use of what's under the "current problem" tab.
I'm actually trying a different method as of now but if you want to fiddle with this be my guest.