No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
38 Posted Topics
Re: set textbox Font property in whatever language u want. But u must know the font family of that language. for example i want to set textbox to marathi language then i set font property of that textbox to "Shusha". | |
hi all, I am using crystal report for displaying reports. I want to display group by customers in report that i am displaying using group by funtion but i also want subtotal of that group by customers. I want to display received amt date, received amt and balance amout between … | |
hi all, I am developing the map tool application in vb.net where user can create maps. I gave the check boxes for show/hide the layers of map like village boundary(polygon), plot boundary(Polygon), roads(Lines), bore wells(points), dug wells(points), schools(points). I am using the function RedrawMap for displaying various layers of maps … | |
hi all, I want to read MS-Access database tables through VB. I try for reading excel file and i got success in reading excel file by adding reference microsoft execel library . But i am facing problem in reading access file. I had added the reference microsoft access library but … | |
Re: for editing only particular column write this code urGridName.Columns(1).ReadOnly = True 1 is the index of the column of which you don't want to edit through this code column 1 is turn into readable only user cann't edit that column. You can make any column read only. | |
Hi all, Can anybody tell me how to retrieve hard drive information in vb.net . I try my best search in google but not getting the appropriate information. Its urgent. Thanks in advance. Regards G_8306 | |
hi all, I have one problem with resizing forms. I am developing our application in vb and i gave code for resizing forms in resize event of form. First i save the sizes of all controls in forms in form load event and then in resize event i resizes all … | |
hi all, N good morning! I am developing an application in vb. I had developed my application on my PC in 1024*768 screen resolution. When i rum my application in the same screen resolution then it runs properly but when i run my application on 800 * 600 sreen resolution … | |
hi all, I want to use combo box in my application and i want to give user only selection option for combo box when they are entry data so i make combo boxs style property to drop down list. But when he edit the data then i access that record … | |
hi all, I am making an insurance policy application in which i want give the facility of attaching file to user. Actually i want to give facility that suppose customer give the required papers like license copy or marksheet then user make scan of that files and attach that files … | |
I am creating vb appliction in which there are 20 forms i want to create two command buttons named current and previous forms. Can anybody tell me how i can do this ? I want guide line. Thanks in advance regards | |
Hi all, I am facing problem regarding screen resolution. I mean i make one project and its run and look nice in my PC screen but if i run the same app. in others PC then its create problem i am not able to see the controls on my app … | |
Hi all, I am making one project in which i want to give the facility of importing database data from text file to MS-Access database. I know about importing data from excel to access but i am facing problem while importing data from txt file. I try with using space … | |
hi all, Can anybody give me code for connecting vb 6.0 to ms-access 2007 with connectionstring Regards Guest11 | |
hi all, I have developed one application in vb and database MS-Access2003 it works properly if i use ms access 2003 or earlier version but if i run this application with latest version of database than i am able to view the data from database but not able to insert … | |
Re: give date value as doj.text=09/01/2008 doj1.text=09/22/2008 i hope it will work try it | |
Re: if rno and Rollno are same then try this query INSERT INTO Section(FirstName, LastName) SELECT FirstName, LastName FROM Student where student.rno=section.rollno i hope it will work | |
hi all, I am using data report tool for showing my reports. Everything is working well i am accessing records from table but when i set datasource to datareport it shows all records excluding last record. I don't understand why this happens. Can anybody tell me about this problem. If … | |
Re: You have to change report show property to landscape mode which u can do from here : click start goto control panel menu then click Printers and faxes if you had installed the printer in your computer than there is a symbol of printer, right click on that symbol click … | |
hi all, I am facing small problem in access database . I am using MS-Access database in our application and i secure it by setting password to my database. But now i want to acces that database through coding in my vb application but it is generating error. So can … | |
Re: passing variable values is also possible in crystal report. But type of value you want to pass explain using example means what you want to pass report title or what ? | |
Re: Try this : set form's BorderStyle=none or 0 and when you click the button set forms WindowState property =2 | |
hi all, I am making an application which i want to make in multilingual means i want to make that application in many languagues. Suppose user select any language than font of my application will get converted into that language. suppose user select marathi than it will get converted to … | |
hi all, I want to run vb program through vb.net program is this possible in vb.net and i want to show output in some container. In VB it is possible through Shell command but it runs the program seperately but i want to run program through vb.net and want output … | |
Re: Try our this code: [code]dim i as integer dim j as integer dim cnt as integer dim rs as adodb.recordset set rs=new adodb.recordset rs.open urQuery,urDatabaseConnectionPath msflexgrid.cols=3 msflexgrid.rows=rs.recordcount for i=0 to 3 k=0 for j=1 to rs.recordcount MSFlexGrid1.textmatrix(i,j)=rs.fields(k).value k=k+1 next j next i[/code] | |
hi all, I am using combo box control in our application but facing one problem and which is like thisI am able to add items in combo box but i also want to add index in combo box in VB we do this as follows cmbSymbolFamily.AddItem Name cmbSymbolFamily.ItemData(cmbSymbolFamily.NewIndex) = IndesValue … | |
hi all, There is a tool in VB called Help Workshop. I want to create Help file for my project. Can anybody tell me the step by step process for creating help files through help shop. Thank in advance Regards Guest11 | |
Re: Function GetRecord() Dim ConnectionStr As String Dim Uconnection As ADODB.Connection Dim rs As ADODB.Recordset ConnectionStr = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & DatabasePath & "\databasefilename.mdb;Persist Security Info=False" Set Uconnection = New Connection Uconnection.ConnectionString = ConnectionStr Uconnection.CommandTimeout = 120000 Uconnection.Open Set rs = New Recordset rs.CursorLocation = adUseClient strQry="Select Name,Id from tablename" rs.Open strQry, … | |
hi all, Please can anybody help me. I want to make installable of my project. I already make an exe of that project and try to make installabel through Package and Deployment tool from VB menu. When I click on Package and Deployment option it ask for selecting exe i … | |
hi all, Is it possible to run visual basic's .exe file or application from vb.net application If yes then can anybody tell me how n can tell me code for that. Actually i want to run vb application from vb.net if possible then please tell me as soon as possible … | |
hi all, I am creating one function named "ToUInt16" in this function i am converting the int value into Uint16 as Public Function ToUInt16(ByVal provider As IFormatProvider) As UInt16 Return Convert.ToUInt16(m_iPercent) End Function m_iPercent is of type integer. I am getting an warning on this function as "Ruturn type of … | |
hi all, I want to know how we display image on button control instead of text? I want to show image on button Plz can anybody help me thanks in advance Regards Guest11 | |
hi all, I m new in vb.net but i know vb very well. Can anybody tell me what is the main difference between vb and vb.net except the difference that vb.net is object oriented language i know this difference. But i want to know what is the main difference between … | |
HI all, I want to know the result of common dialog control. My code is : CommonDialog1.Flags = cdlCCFullOpen CommonDialog1.ShowColor Label1(0).BackColor = CommonDialog1.color But i want to assing CommonDialog1.color value to label1(0).backcolor only if user click ok button of commondialog control if user click cancel button then default color is … | |
hi all, which datatype we use for storing UInt64 type of value? I want to cast integer value into UInt64 type. How we can do that in vb.net ? Plz can anybody tell me . thanks in advance Regards Guest11 | |
hi all, My project is build successfully but when i run my program i get an error as "A Project with an ouput type of Class Library cannot be started directly. In order to debug this project, go to the Debugging tab under Configuration Settings in Project Properties, and set … | |
hi all, I am new in .net. description of my project is as follows. I am making an GIS based application. I am not getting any error except 1 error that is "Post Build Events Failed.". I set Run the post build event property as "On successful build" in Properties->Build … | |
hi all, I am making an winform project. After successful build when i run my project i get error as : "An unhandled exception of type 'System.ComponentModel.Win32Exception' occurred in system.windows.forms.dll Additional information: Error creating window handle." Can anybody tell what this error? Is this related to .net or window? Can … |
The End.