Forum: VB.NET Aug 5th, 2008 |
| Replies: 1 Views: 2,675 Dim strSql As String
strSql = " set quoted_identifier off "
strSql &= " declare @strSql varchar(150) "
strSql &= " set @strSql = ""BackUp database SWAMC to disk = 'D:\SWAMC"" + Convert(varchar,... |
Forum: VB.NET Jul 19th, 2008 |
| Replies: 1 Views: 790 I am currently using a database within my program and I have no problem backing it up or restoring it when i am simply debugging. However if it is published and downloaded it cannot find the path... |
Forum: VB.NET Jul 7th, 2008 |
| Replies: 0 Views: 694 If ColorDialog1.ShowDialog = DialogResult.OK Then
Dim Text18 As TextObject
'Me.Color = ColorDialog1.Color |
Forum: VB.NET Jul 7th, 2008 |
| Replies: 2 Views: 4,319 If ColorDialog1.ShowDialog = If ColorDialog1.ShowDialog = Windows.Forms.DialogResult.OK Then
Me.BackColor = ColorDialog1.color
End If
i want fill colour in text... |
Forum: VB.NET Jul 7th, 2008 |
| Replies: 1 Views: 379 i want to use color dialog box and i also want to pick up color from that dialogbox and use it as backcolor in the crystal report textboxobjet |
Forum: VB.NET Jun 27th, 2008 |
| Replies: 2 Views: 608 how to remove selected item from combobox
we tried this code but some error in this statement
cbocode.Items.RemoveAt(cbocode.SelectedText) |
Forum: VB.NET Jun 21st, 2008 |
| Replies: 0 Views: 423 How to add multiple records from multiple table in Crystal Report |
Forum: VB.NET Jun 19th, 2008 |
| Replies: 0 Views: 358 Hi,
I want help in displaying record of same challan no. into one textbox.
I have feilds like challan no,sendqty,availableqty,balqty.
if i fill one record of challan no 1,... |
Forum: VB.NET Jun 12th, 2008 |
| Replies: 1 Views: 1,029 Dim strSql As String
strSql = " Select * from quazatoknitting where yarn_recchno= '" & txtchno.Text & "'"
Dim strSql1 As String
'strSql1 = " Select rec_qty from... |
Forum: VB.NET Jun 11th, 2008 |
| Replies: 3 Views: 557 I want to display multiple records from multiple table in datagrid
Please help me, How I will use the datagrid in vb.net |