Hi all, Is there any way to load a form without seeing the Desktop behind? Somthing Like this: Form2.Show Form1.Hide
dandi18
Posts
-
Form Load -
Increase width of datagridyou can use TableStyles: For Example: Dim ts As New DataGridTableStyle() ts.MappingName = "TblEmployees" GrdEmployees.TableStyles.Clear() 'GrdEmployees=Name of your datagrid 'Define all your columns Dim ColID As New DataGridTextBoxColumn With ColID .MappingName = "EmployeeID" .HeaderText = "ID" .Width = 100 End With With ts.GridColumnStyles .Add(ColID) End With GrdMoves.TableStyles.Add(ts) Hope it helped :laugh:
-
Check if activesync is connected ?Hi, Is there a way i can see if activesync is connected? (I need to know wether to use External Or Internal IP Address)
-
GPRS ConnectionHi Guys, Im New to writing mobile apps so.. Can anyone show me how to open GPRS Connection on a smartphone (Windows Mobile 5) and close it. the application is a simple receive and send data over the internet. Thanks in advance.
-
Transfer data fasterhi guys Im transfering data from sql server 2005 to comapact framework database (*.sdf) My way to do so is : Export the table into an XML file (using DataTable) dt.WriteXml(FName, System.Data.XmlWriteMode.IgnoreSchema) And on the mobile device I load the XML and save the Dataset dt.ReadXml(FileName) da.Update(DataSet11) Everything is working only my table contains about 1500 records (20 fields) and it takes about 6 minutes to load and save. Is there any way or Method to do this any faster ? Thanks in Advance Dan.