- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
19 Posted Topics
hi all, I need a code which export access table data into excel sheet.I am working in vb.net2003 | |
Re: try this,it will definatly work [code] Private Function TrapKey(ByVal KCode As String) As Boolean If (KCode >= 48 And KCode <= 57) Or KCode = 8 Then TrapKey = False Else TrapKey = True End If End Function //textbox keypress event e.Handled = TrapKey(Asc(e.KeyChar)) [/code] | |
hi all I can anyone tel me how to save image in access database.& also hw to access image from database.I don't know how to start.plz reply | |
hi friends Iam developing my appliction in vs.net2003 & ms access.I am creating reports using crystal report.I want to filter the output of report.User has to select the option which data has to be display in reports.I used the parmeter wizard to sort data.But if I add new data in … | |
hi frnds, as i mention in title,this concept is totaly new to me.I have to make my new application based on this. can anyone tell me wt this exactly means.Or a site which will provide conceptual details abt the topic. plz help me | |
hi friends, Can i display the data in datagrid in pagewise manner.In my application i have large amount of data to show in a grid.is it possible that i can dispaly the data in page wise manner like we search in google & it display the result. Plz help me … | |
hi all thanks for previous reply. I have another qurey.I serched lot for this ,but did't get proper solution. Actully in my application m using vb.net2003 and access.On one form I have used tabcontrol with 2 tabpages.On 1st tabpage there is list view.I wt i want is ,when i click … | |
Re: hi u can try this also .make a function which validate the textbox should not empty and check the condition either radio btn checked. [code] 'Declaring Function Public Sub empty(ByVal txt As String, ByVal y As String) If txt = "" Then Throw New Exception(y & "fields could not be … | |
hi all thnaks for previous reply One more thing I want to ask u guys.it must be silly que.Actually I am working in vb.net2003 in my one application breakpoits works properly.but in another application ,when i debug application one quemark appear on break pt.& it does not work at all.I … | |
hi In my application i want to import table from Access to Excel.I have include Microsoft Web Browser to display the excel sheet .When i am running the application.It display the sheet.But One error is pop up"The file can not access,it being used by another process" Can anyone give the … ![]() | |
Hi friends Can anyone tell me how i transfer a data of Access table into Excel Sheet.I am using vb.net2003.I have to do this by coding.Plz help me | |
Re: hi try this [code] dim a as string a=msgbox("do u want to save",MsgBoxStyle.YesNo) if a= vbyes then do this else do this end if [/code] | |
Re: hi U Can write the code on keypress event of button.First u have to get the Ascii value of keys of keyboard.then write the code if asc(e.keypress)=13 then //ur code endif here 13 is value for Enter. Hope it wil help u All the best | |
I Have one application in vs.net 2003.I used crystal report 9.0.When I am trying to deploy the S/w on client machine it gives error in crystal repot that KeycodeV32 /missing.I searched Lot on Web About the error.Some Said CR need a Licence.Is It true.How Can I get the licence. | |
| |
hi all, I am to pass two values from form f1 to form f2.i wrote a code on keypress event .It works good.But on loading of f2 i want to close f1.I wrote this on f1 Dim f As New frmattendance f.Owner = Me f.Show() f.txttdays.Text = days f.l2.Text = … | |
Hi friends, Thanks For ur reply for earlier thred.I have one more query.If I want to use Data reports(Used in vb 6.0) in vb.net.Then hw to do this. Thnks in advance | |
hi all I am new in vb.net.I have generated menus at runtime.now i have to show reports on click event of menu.But i am not able to get the index.hw i can do this???? plz help me |