thanks raj
isroavi
Posts
-
how to set client side registry key -
how to set client side registry keyAny other alternative like cookie? but dont know how to use cookie also...;P raj
-
how to set client side registry keyCan anybody help? Dim reg As RegistryKey = Registry.CurrentUser.CreateSubKey(\\software\\etc) reg.SetValue("owner", "Test") raj
-
how to get name of the day in SQL2000i found out myself. thanks:) the answer is below: SELECT datename(dw,getdate()) raj
-
how to get name of the day in SQL2000Ex: SELECT DAY(GETDATE()) its display 9 but i need to show tuesday. can anybody help? raj
-
Crystal Reportpl. check ur db server name, user id, and password. and make sure u must have access to the server. raj
-
Crystal Reportyour images are in the database or in specific path?. you can bind directly to the report if it is in db. or u need to insert picturebox to do manual raj
-
find textbox in window formyou can use like below: dim ob as object for each object in form1.controls if object.type = textbox object.clear endif next not sure correct syntax, but the method will work raj
-
Help Trying Connect to SQLyou did not mentioned uid and pwd. or ty OLDDBConneciton object. raj
-
Retriving,Converting and Embedding ImagesPost you question to "devX" forum. They will answer you including me... raj
-
Sortingdid you refreshed? raj
-
Can we Make Graphs in VB.net?yes. you can able to use through ole object. raj
-
listview event - item checkedIn the listview control need to trigger the code if the item is checked? code: 1. For Each lvItem In Me. listview.Items 2. lRow = lvItem.Tag 3. If lvItem.Checked Then 4. If sODeptId Is Nothing Then sODeptId = lRow("owner_dept_id") Else sODeptId = sODeptId & "," & lRow("owner_dept_id") End If End If Next I am calling the above code at listview.ItemCheck but the code is not triggering at line no. 4 if item checked also in 1st time raj
-
Embedding Images in SQL DatabaseDim Adapter As New OleDb.OleDbDataAdapter(lSql, ConnectionString) Dim CommandBuilder As New OleDb.OleDbCommandBuilder(Adapter) Dim memstImg As New MemoryStream picturebox.Image.Save(memstImg, picturebox.Image.RawFormat) Adapter.Fill(dataset, "image_bank") Datarow = dsImg.Tables("image_bank").NewRow() Datarow.Item("image_file") = memstImg.GetBuffer() dataset.Tables("image_bank").Rows.Add(lRow) Adapter.Update(dataset, "image_bank") raj
-
VB EE Read/Write to a text fileDim reader As New IO.StreamReader(Server.MapPath("MyTextfile.txt")) Textbox.text = reader.ReadToEnd() same like write also raj
-
error in file uploading.Please give file creation permission to the relevant client. raj
-
how to add the controls to the form dynamically?Dim Lbl(1 As Label Lbl1 = New Label() With Lbl1 .SendToBack() .AutoSize = True .Location = New System.Drawing.Point(iX, iY) .Text = finsSubjReg.dsStudCls.Tables(0).Rows(iCtr).Item("cls_type_code") End With Me.Controls.Add(Lbl1) raj
-
get distinct record from dataset (not duplicate)try this if you need to get value of second col. ds.table(0).row(cnt).item(2) raj
-
VB.Net and Crystal ReportsPl. check ur coding, sure it will display or its throws error. raj
-
Retrieve text file in VB.Netyou can use IO.StreamReader(Server.MapPath("sms.txt")) to read ur text file. or file open dialog box to open a file. raj