Team Updates

Add rocket interface
Add rocket interface
M
Mariam Hesham Abdelkareem Abdellatief
rocket information interface
rocket information interface
M
Mariam Hesham Abdelkareem Abdellatief
Search interface
Search interface
M
Mariam Hesham Abdelkareem Abdellatief
Live video example for interface
Live video example for interface
M
Mariam Hesham Abdelkareem Abdellatief
Login interface
Login interface
M
Mariam Hesham Abdelkareem Abdellatief
sign up interface
sign up interface
M
Mariam Hesham Abdelkareem Abdellatief
USE [NASA]
GO
/****** Object: StoredProcedure [dbo].[addnewaccount] Script Date: 10/20/2018 11:05:55 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER proc [dbo].[addnewaccount]
@cname nvarchar(50),
@pwd nvarchar(50),
@uname nvarchar(50),
@country nvarchar(50),
@email nvarchar(50),
@img image
as
INSERT INTO [dbo].[reg]
([cname]
,[pwd]
,[uname]
,[country]
,[email]
,[img])
VALUES
(
@cname,
@pwd,
@uname,
@country,
@email,
@img
)
view raw Database code hosted with ❤ by GitHub
M
Mariam Hesham Abdelkareem Abdellatief
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace launchOmatic
{
public partial class Form1 : Form
{
BL.BLL log = new BL.BLL();
PL.main z = new PL.main();
public Form1()
{
InitializeComponent();
}
private void pictureBox1_Click(object sender, EventArgs e)
{
Application.Exit();
}
private void tu_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
tp.Focus();
}
}
private void tp_KeyDown(object sender, KeyEventArgs e)
{
if (e.KeyCode == Keys.Enter)
{
btnlogin.Focus();
view raw gistfile1.txt hosted with ❤ by GitHub
M
Mariam Hesham Abdelkareem Abdellatief
NASA Logo

SpaceApps is a NASA incubator innovation program.