Posts

Indian passport renewal India-USA

Image
๐Ÿ“Œ 1. Process Overview (Snapshot) The general passport renewal process involves: Filling and submitting the passport application on the Indian government passport portal . Registering and creating an account on the VFS Global website . Paying required fees and arranging courier/shipping for your documents. Mailing your documents to VFS. VFS forwards documents to the Indian Embassy/Consulate. Embassy triggers police verification in India (usually). Embassy prints the passport and returns it via courier. ⏱️ 2. Processing Time Normal processing: 3–6 weeks (if last passport was issued in India). Faster service (if last passport issued by Indian Embassy in USA): ~10 days (approximate). You can apply up to 1 year before expiry —applying ~6 weeks before expiry is recommended. ๐Ÿ“„ 3. Documents Required ๐Ÿงพ Mandatory Documents Current/expiring passport (original). 2×2 inch photos (2 sets). Passport application form (printed from Indian govern...

look up values

using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Data.Linq; using Ipreo.Orion.Own.DataAccessLayer; using System.Configuration; namespace Ipreo.Orion.Own.LinqQuery {     public class lookUpVal : IDisposable     {         private LookUpValuesDataContext m_dbEdd;         private iprFundEntryDataContext m_dbStg;         private noisysEdgarDataContext m_dbNoisys;          // Track whether Dispose has been called.         private bool disposed = false;         public lookUpVal ()         {             m_dbEdd = new LookUpValuesDataContext(ConfigurationSettings.AppSettings["ConnectionString"]);             m_dbStg = new iprFundEntryDataContext(ConfigurationSettings.AppSettings["DevStageConnectionStr...

Solving problem of Line seperation from sqlqury result message in c# MessageBox

Image
Solving problem of Line seperation from sqlqury result message in c# MessageBox hi , to day i am posting  how c# Message box will display messagetext   when message text coming from Database and when messagetext coming from UI 1) C# Message Box showing message of Line separation from UI; 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 WindowsFormsApplication1 {     public partial class Form1 : Form     {         public Form1()         {             InitializeComponent();         }         private void btn_Save_Click(object sender, EventArgs e)         {             string messs...

creating dynamic table

private void CreateDynamicTable()     {         PlaceHolder1.Controls.Clear();         // Fetch the number of Rows and Columns for the table         // using the properties         int tblRows = Rows;         int tblCols = Columns;         // Create a Table and set its properties         Table tbl = new Table();         // Add the table to the placeholder control         PlaceHolder1.Controls.Add(tbl);         // Now iterate through the table and add your controls         for (int i = 0; i < tblRows; i++)         {       ...