10,987 Topics

Member Avatar for
Member Avatar for Bashir ahmad

[B]sir I design a small application in vb (Windows-xp system) which displays the records from the sql database tables. Entering a table name in the text box and clicking the Button, its records are displayed in the data grid. The code for the button is[CODE]adodc1.recordsource="select * from " & txttable.text …

Member Avatar for Bashir ahmad
0
92
Member Avatar for leverin4

I am working on updating a database where some measurements are stored as text. The updates I'm making are to let the engineers that use it convert their measurements into different units. Long story short, the numbers must be kept as text for a couple reasons that I won't go …

Member Avatar for jhai_salvador
0
187
Member Avatar for gingerc

I need to find out how to connect crystal reports 10 to vb 6.0 application. Did the previous posts get answers? If so, why aren't they visible?

Member Avatar for vb5prgrmr
0
40
Member Avatar for cabsjonel

ello folks its been along time since i did not post a thread but by the way folks i have some problem of my flexgrid iwant to save a data that came from my database and display it from flexgrid can u help me folks? i really need this code …

Member Avatar for brodchoy74
0
105
Member Avatar for krille

I will order Visual basic 6.0 soon and I wonder what the differences are between the Professional and the Enterprise package? It is crucial that the OLE tools and the "Package & Deploy Wizard" are included. Are these tools included in both the packages?

Member Avatar for vb5prgrmr
0
1K
Member Avatar for winrawr

I've been writing in visual basic for a number of years and have suffered so much criticism just for using the language. It's so easy to pick up and it can be compiled to an executable, that's why I learned it... From what I've gathered, the things that are "wrong" …

Member Avatar for winrawr
0
243
Member Avatar for umers56

i am trying to create a videogame but im having trouble moving a picture. what im trying to do is move a picture called mario left, right, down, up... im trying to use the arrow keys... i dont have much experience either. everytime i press the up key the picture …

Member Avatar for umers56
0
243
Member Avatar for Bashir ahmad

Dear sir i use the code [CODE]Printer.print "Bashir ahmad" printer.endDoc[/CODE]on the click event of a command Button. If the printer is turned on, printing starts, but if the printer is turned off, is there a method of informing the user to turn on the printer before printing. In programs like …

Member Avatar for vb5prgrmr
0
66
Member Avatar for Muhidin

I Hv problem, How methode syntax datagrid manipulation with mouse / drag on the datagrid when touch table then show information about data tabel. thx.

0
24
Member Avatar for abyan

hi.. I'm new in VB, and I have a project to activate LED from VB, but the data from VB should be send first to microcontroller (I am using ATmega8535). so in simple way I suppose to activate the LED, yhe input is from VB, but it must be through …

Member Avatar for abyan
0
147
Member Avatar for juniorj

i want to display a selected record from my database to the data report in VB6. i used the foll. code, where cuno is the value of a textbox. i m passing the value of cuno through a module. SELECT * FROM Bill WHERE ID=cuno but when i run it, …

Member Avatar for vb5prgrmr
0
2K
Member Avatar for Bashir ahmad

i enter 3 identical records in an sql database table. Normally this should not have happened and the dbms is to check for identical records. Now when i try to delete or update any record, an error message is displayed and the record is neither deleted nor updated. any help …

Member Avatar for vb5prgrmr
0
106
Member Avatar for Bashir ahmad

[B]in my vb project i have a number of data reports each using a different papersize. each time, b4 opening the report, the paper size has to be set in the printer dialogue box and then the report shows correctly. otherwise the messages like "report width larger than paper width" …

Member Avatar for Bashir ahmad
0
3K
Member Avatar for neosonic

Hi All, I have a microsoft word document, and I have got class to handle the manipulation within those documents (I call it "Word"). My code goes this way: ------------------------------- sub form load set W = New Word ' W is the Word object if usingW = true then 'open …

Member Avatar for vb5prgrmr
0
237
Member Avatar for Bashir ahmad

[B]I enter 3 identical records in an sql database table. Normally this should not have happened as the DBMS must check for identical records. Now when I try to delete or update these records, an error message is shown. What to do?[/B]

Member Avatar for Bashir ahmad
0
203
Member Avatar for neosonic

Hi, I load many of the picturebox (I named them pic) with the index 0 to 10 (pic(0) to pic(10)) on top of my main (biggest) picturebox. My problem is, pic(1) will always be on top of pic(2). pic(6) will always be at the bottom of pic(5) and so on.... …

Member Avatar for neosonic
0
107
Member Avatar for arunvb

Hi.. Am using vb6.0 and crystal report 2008 in my project. Am getting lots of temp files on the root path.. Application will taking more than 2 hrs to load. After loading, the application is terminating automatically.. And when i try to open .dsr files it ll showing an error.. …

Member Avatar for vb5prgrmr
0
98
Member Avatar for death.cometh

I'm trying to display some data from a MS Access database to a data report. It was successful, unfortunately, I need to display it in the format below: [B]emp_name[/B] [B]date[/B] [B]remarks[/B] [INDENT][INDENT][B]date[/B] [B]remarks[/B][/INDENT] [/INDENT] [INDENT][INDENT][B]date[/B] [B]remarks[/B][/INDENT] [/INDENT] [INDENT][INDENT][B]date[/B] [B]remarks[/B][/INDENT] [/INDENT] [B]emp_name[/B] [B]date[/B] [B]remarks[/B] [INDENT][INDENT][B]date[/B] [B]remarks[/B][/INDENT] [/INDENT] [INDENT][INDENT][B]date[/B] [B]remarks[/B][/INDENT] [/INDENT] [INDENT][INDENT][B]date[/B] …

Member Avatar for Bashir ahmad
0
124
Member Avatar for Teseng

The normal VB forums werent much help unfortunately, so i've joined the great looking community here :) So, sorry if anything about this post is wrong, i'm new! But anyways, can anyone give me any insight on how i can accomplish this? I will need to pass the vb6 udt …

0
38
Member Avatar for pankaj.garg

Hello, I am using MScharts and want to mark individual datapoints in the chart. I am using following code for adding marker - with mschart1.plot.seriescollection.item(3) .SeriesMarker.Auto = False .DataPoints.Item(-1).Marker.Visible = True .DataPoints.Item(-1).Marker.Size = 60 .DataPoints.Item(-1).Marker.Style = VtMarkerStyleX By using above, I am able to mark the entire series, but the …

0
56
Member Avatar for duncangjacks

[CODE]Sub From_sheet_make_array_col() Dim myarray As Variant myarray = Range("A1:A10").Value 'Looping structure to look at array. For i = 1 To UBound(myarray) MsgBox myarray(i, 1) Next End Sub[/CODE] [CODE]Sub From_sheet_make_array_row() Dim myarray As Variant myarray = Range("A1:J1").Value 'Looping structure to look at array. For i = 1 To UBound(myarray) MsgBox myarray(i, …

Member Avatar for duncangjacks
0
96
Member Avatar for igreenb

Can anyone offer help for the following Macro I am needing in Excel 2007. The function would be as follows. Need help with turning this into code. Thanks so much in advance!! 1) Open file name: Y:/P21.xls 2) Open file name: Y:/PriceSheet.xlt (Note: Pricesheet.xlt pulls data from P21.xls) 3) Save …

Member Avatar for Ionelul
0
103
Member Avatar for Daocsm

yes im kinda new to vb and hoping someone can help me, i'v tried google with no luck. so i am creating a database program using access SQL statements to load the data, everything works perfictly except i cant figur out how to upon first install of the program the …

Member Avatar for Ionelul
0
96
Member Avatar for bhavin12300

hi, i am facing strange behaving of my application. i have developed one simple application, which will fill up some fields in webbrowser control webpage. this webpage has iframes in it. domain of both iframe are same and fields which i am filling with my code is in iframe. but …

Member Avatar for bhavin12300
0
727
Member Avatar for anjal_pawar

I want to load a form of project2 on click event of form of project1. how to do this?need answer urgently......

Member Avatar for AndreRet
0
95
Member Avatar for stuhawk

Private Sub Average_Click() Dim Test1 As Integer Dim Test2 As Integer Dim Test3 As Integer Dim Test4 As Integer Dim Test5 As Integer Dim Test6 As Integer Dim Average As String Test1 = txtTest1.Text Test2 = txtTest2.Text Test3 = txtTest3.Text Test4 = txtTest4.Text Test5 = txtTest5.Text Test6 = txtTest6.Text Average …

Member Avatar for vb5prgrmr
0
85
Member Avatar for jokers6

Hey guys i have this program and i want you to tell me what is wrong cuz i can't figure it out !! This is what i have to do: (the code follows) When the form is loaded, read the records in P3S3 Data File For Import.txt to a listbox …

0
61
Member Avatar for jemz

hello can you help me please.. i have this trapping that will trap the characters..but my problem my code is too long..are there other ways to shorten my code..please help me ...hoping for your positive responds... [CODE]Public Function mchnotrap(KeyAscii As Integer) If KeyAscii >= 33 And KeyAscii <= 44 Or …

Member Avatar for jemz
0
81
Member Avatar for romaguera

helo i have assignment on vb6 can anyone help me how to make a codes of search button, random and sequential tnx...

Member Avatar for AndreRet
0
33
Member Avatar for Pradnya.117

I am using MS Access 2003 to connect with VB. I have added all the referencess. Still there is an error in the line [code]If conn = "" Then conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\Automobiles.mdb;" conn.Open [/code] Will you please help me to solve this problem?

Member Avatar for AndreRet
0
84

The End.