Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
R

Ravi S V

@Ravi S V
About
Posts
19
Topics
9
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Scroll action for a RTB object.
    R Ravi S V

    Yes it is try this Public Sub DisText(ByVal text As String) txtmsgsrv.SelectionColor = ColorRes ' txtmsgsrv.Focus() txtmsgsrv.AppendText(text) txtmsgsrv.Refresh() txtmsgsrv.Focus() txtmsgsnd.Focus() ' txtmsgsrv.SelectionColor = Color.Black End Sub Hope this helps u, Ravi.

    Visual Basic help json question

  • Adding a text file in my project.
    R Ravi S V

    Hi gurus, I want to add a text file into my project to use it at my development time. How do i do this? Thanx in Advance, Ravi.

    Visual Basic question

  • Diff between COM and COM+
    R Ravi S V

    hi gurus, I would like to know the difference between COM and COM+. I would appreciate if could get a detail description of each one of these. And I want to know whether all the features of COM are there in COM+. Thanx in Advance, Ravi.

    COM com

  • Checkbox in DTPicker control (Visual Basic 6)
    R Ravi S V

    Hi, I have a DTPicker control in my Program and I want to embed a Check box in it. So I wrote the below line: DTPicker1.CheckBox = True But the inital value of that check box is checked I want a Check Box in DTPicker in which it is not initially checked. In the Property Page of DTPicker ,I tried to uncheck it and Apply, But it is not reflecting in the Application. Will anybody please go thru the problem and Solve it For me? Thanx, Vimal.

    Visual Basic help question

  • Multiple Inheritance
    R Ravi S V

    Does VB.Net support Multiple Inheritance?

    Visual Basic csharp oop question

  • How to display image from the path in the server and client architecture...
    R Ravi S V

    your problem is having the following the solution. You should get the network path of the image file, no matter from which machine you are accessing the image. If you are using the FileSystemObject it returns you the network path of a file. This path should be stored into the database server. So, while accessing images from your database it returns u the network path of the image.

    Visual Basic csharp database sysadmin architecture help

  • Run Time Error 429
    R Ravi S V

    Hi, I have a VB Program In Which I am Using Some User Created Dlls,I made it in to a Setup Package and It was working properly, Later I made some Changes in the Functionality of a Function in DLL(I did'nt made any Changes in Function Name) and Created a New DLL with Same Name. I have unregistered the Old Dll,Deleted it,Copied my New DLL to the Same Location and Registered it, At my PC(developer's PC) The program is Working Properly,But on User's PC in which I had installed my Program its Showing a Error "Run Time Error 429 : Active X cannot Create The Object" error. Please look in to the Problem.

    Visual Basic help workspace

  • Creating ActiveX controls dynamically
    R Ravi S V

    Loading ActiveX controls on form dynamically at runtime is not that easy. One way is to declare an object variable. but you cannot handle events for the controls. Other way is to declare a variable as VBControlExtender. u can declare this variables with events. The procedure to use this VBControlExtender: 'place the code in form_load or form_initialize event Dim WithEvents MyCtrl As VBControlExtender 'declaration Licenses.Add "MyCombo.MCombo" 'Add the licence of the control class to the project 'Add the control to the form which is the parent to the control Set MyCtrl = Me.Controls.Add("MyCombo.MCombo", "MyCtrl", Me) 'Set the position of the control and make it visible With MyCtrl .Top = 100 .Width = 100 .Height = 315 .Left = 100 .Visible = True End With Click event of the control can implemented in this way: Private Sub MyCtrl_ObjectEvent(Info as EventInfo) 'This Info parameter consists of event name and the parameters of the event. If Info.Name = "Click" then 'do your code End If End Sub that's all Regards, Ravi.

    Visual Basic question com tutorial

  • Visual Basic 6 Help in DLL
    R Ravi S V

    For using dll in the another project you have two ways: One way is to add ur dll project in the client vb project and make references Project -> References. In the references window it will show you the dll project's name select that name and say ok. Now you can use your dll in your client project. --Or-- Make the dll of your dll project. By making the dll vb6 automatically registers it on your system. If you want to use or deploy it on another computer you need to explicitly register it using regsvr32.exe. Then open your client project Goto Project -> References in the references window look for your dll name and select it and click on ok. Now you can use your dll in the client project. The former is best way to debug your dll project from the client project.

    Visual Basic help

  • Recognizing the MSHFlexGrid's Row on MouseMove Event
    R Ravi S V

    Dear VB Gurus, I want to get the row of the MSHFlexGrid's row on mouse move. How do i go about it? Plz Help, Ravi.

    Visual Basic question help

  • Data Filling and Handelling in VB.NET using DataGrid
    R Ravi S V

    Go thru this link http://msdn.microsoft.com/library/default.asp?url=/library/en-us/cpref/html/frlrfsystemwindowsformsdatagridcolumnstyleclasstopic.asp

    Visual Basic csharp css database com

  • vb6 (data grid)
    R Ravi S V

    Either u change the select statement with the required fields to be displayed in the grid -or- after assigning the recordset to datagrid's datasource property, make the unrequired columns width to zero.

    Visual Basic css question

  • Mail program in VB6
    R Ravi S V

    I wrote a small program in VB6 where my mails should be sent to the recepient. But my program puts my mails in the outbox only. I have to go to outlook express then click on Send/Receive button then my mails go to sent items folder. But this is not the right way, I wanted my program to send the mails directly to the recepient. I used mapi controls for this program. Is there any other i can do by making reference to COM component or by using any APIs. plz, help me out. Thanx, Ravi.

    Visual Basic com help

  • DataGrid - Please Help
    R Ravi S V

    you can resize the grid columns: after filling the datagrid this line is to be added datagrid1.columns(0).width = 0

    Visual Basic question help

  • Errors Occured
    R Ravi S V

    Hi gurus, I have a problem in programming thru VB and Oracle. I have created a class Module thru which I am retriving Database fields While retriving a particular Date Field, I am getting an Error 'Errors Occured' (Not for all Date Fields). When try to look Quick Watch in the value box it shows empty, if I try isnull(rs.fields(1)) it returns false, if I try isempty(rs.fields(1)) it returns false, if I try isobject(rs.fields(1)) it returns true Please go thru it and help me

    Visual Basic help database oracle

  • How to fill the list of one combo box to another combo box?
    R Ravi S V

    There is no other method in VB6

    Visual Basic database help tutorial question

  • Combo Box Filter
    R Ravi S V

    Actually, I am new VB.Net instead of putting all the items in a collection, put the items in an array, so that, when ever u need an item from that array u can use filter function which finds the selected item and returns an zero-based array. Thanx, Ravi.

    Visual Basic question

  • How to fill the list of one combo box to another combo box?
    R Ravi S V

    I have a form which is having two combo boxes. This two combo boxes contains the same list. This list is retrieved from the database. First, I am filling the first combo box and then i am filling the second combo box. This is taking more time. Is there any method which I can fill the second combo box with the first one? Please Help me... Thanx, Ravi.

    Visual Basic database help tutorial question

  • How to Select Root in TreeView?
    R Ravi S V

    to select the root node in the TreeView control Dim rnode As Node Set rnode = TreeView1.Nodes(0).Root now the rnode is set with the root node of your treeview control. thanx, ravi

    Visual Basic tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups