543 Posted Topics

Member Avatar for xWiredx
Member Avatar for networkmancer
Member Avatar for Shenilcar

I made a unit converter. there I input all value by code and then it works. as like vb5prgrmr said.

Member Avatar for omoridi
0
87
Member Avatar for StuartMillner
Member Avatar for abu taher
0
105
Member Avatar for nice_true
Member Avatar for chaoticabyss99

I didn't read all post. some reason do it: 1. disconnect hard disk with motherboard 2. 1st Boot device problem 3. operating system damage or hard disk damage

Member Avatar for Rik_
0
362
Member Avatar for dearjee

vb.net is not similar vb. lot of change made in vb.net. this is right that you get idea form vb and it help to understand vb.net. but not so.

Member Avatar for vb5prgrmr
0
107
Member Avatar for coud_ren_26

some time after scan many thing are not fix up. then have to need change some thing or install a fresh windows.

Member Avatar for johnswhite
0
195
Member Avatar for coud_ren_26
Member Avatar for abu taher

I type 2009 in mask edit box and select August from a combo box. then I press report button for report. then show this msg: "run time error 713 Application - defined or object defined error" another thing when I run the exe of this project in another pc then …

Member Avatar for vb5prgrmr
0
83
Member Avatar for abu taher

I saw many project resize with change screen resulation. I mean I work with my project in 800 by 600 pixel resulation. when I run It 1024 by 768 pixels then its many control change. but I want it match with changing resulation. example: I have a image control with …

Member Avatar for vb5prgrmr
0
150
Member Avatar for abu taher

In my access file I write code in query [CODE]SELECT AccountInfo.incategory, Sum(AccountInfo.InAmount) AS TotalAmount FROM AccountInfo WHERE (((AccountInfo.Date)>=#1/1/2009# And (AccountInfo.Date)<=#12/31/2009#)) GROUP BY AccountInfo.incategory; [/CODE] It show the total amount between 01-01-09 to 31-12-09 and it show in report. but in vb6 I want I select this two date and the …

Member Avatar for vb5prgrmr
0
215
Member Avatar for abu taher
0
65
Member Avatar for abu taher

I made data report with condition. I want to input a student id number in a text box and press a button to show all data of this student, but a problem when i input a number in the text box (and press the button) for show the report a …

Member Avatar for jhai_salvador
0
127
Member Avatar for abu taher

in msflexgrid I have one fixed row. and 5 or more data show in 5 row. If I write code like:`txt1.Text = MSFlexGrid1.TextMatrix(MSFlexGrid1.Row, 1)` then when I click on a row then only one text box show that data. but I want I click a button then all data of …

Member Avatar for abu taher
0
100
Member Avatar for Clueless86
Member Avatar for Clueless86

not like that. like :[CODE]Private Sub Form_Load() Dim x As Integer x = 100 Label4.Caption = x End Sub [/CODE]

Member Avatar for samir_ibrahim
0
201
Member Avatar for lakshay

you start this thread before. 1stly stop that thread. and then start it with more details.

Member Avatar for PoisonedHeart
0
92
Member Avatar for Agent-of-Chaos
Member Avatar for Agent-of-Chaos
0
171
Member Avatar for abu taher

a msflexgrid show my data. I write code in msflexgrid_click():[QUOTE]txt1.Text = MSFlexGrid1.TextMatrix(MSFlexGrid1.RowSel, 0) txt2.Text = MSFlexGrid1.TextMatrix(MSFlexGrid1.RowSel, 1)[/QUOTE] for show data in textbox. but one error msg show: "run time error 381 subscript out of range" what I do now?

0
55
Member Avatar for abu taher

When I open a project in vb6 then show a msg: and tell me to see a log file. and the description of log file is below: Line 29: Class b8Controls4.b8Line of control b8LLogoB was not a loaded control class. Line 116: Class b8Controls4.b8ClientWin of control b8CW was not a …

Member Avatar for vb5prgrmr
0
109
Member Avatar for abu taher

in my database I enter three item in 'Item' field. paper, pen, pencil. in my vb project i have three text box. here I want these three item show in this three text box. how it possible.

Member Avatar for abu taher
0
84
Member Avatar for ttqtrang146

[CODE]Private Sub Form_Load() Call con 'Fill The Combo box While rs.EOF <> True Combo1.AddItem rs!field rs.MoveNext DoEvents 'Add this code so that the system will not freeze... Wend Combo1.Enabled = False End Sub[/CODE] [CODE]Public Sub con() 'Open The Connection cn.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" & App.Path & "\db1.mdb;Jet OLEDB:Database Password=;") 'Open The …

Member Avatar for gdkons
0
147
Member Avatar for CMSHelper
Member Avatar for chozhan
Member Avatar for terdie

I don't know no more. But I use it many time it in my pc. few day ago it act like you. so I took a fresh new copy of it and install windows again and then install this sql server. nw its ok.

Member Avatar for cguan_77
0
506
Member Avatar for lakshay
Member Avatar for LoNe_KiD08

what kind of code you want to know? to connect with report and connect with various control of report with backend database. please details.

Member Avatar for LoNe_KiD08
0
120
Member Avatar for lakshay

from file menu click 'make project exe'. type the name what you choose. you see the option button for more.

Member Avatar for vb5prgrmr
0
53
Member Avatar for abu taher

I made a cross tab query. please see the attach file. the sum of category show in textbox in my project. like: Stationary = 2000.00 Machinery = 5000.00 Salary = 2200.00 here I can write sql command like:[CODE]select sum(stationery) from table1 [/CODE] but here I know the category"stationery" so I …

Member Avatar for ljwolf67
0
99
Member Avatar for kheoyleon

type mismatch. its not match with your type. example: you work with some numeric number. you declare a variable Like[CODE]Dim a as string[/CODE] so it show this msg. type mismatch. cause string value is not match with your work. you need to declare like:[CODE]Dim a as Integer[/CODE] cause integer is …

Member Avatar for kheoyleon
0
342
Member Avatar for abu taher

my form window sate (property) is maximized. this is run maximized before. but today it run normally. but when I manually maximized it then it would maximized. what problem with it.

Member Avatar for abu taher
0
100
Member Avatar for pjainmp

you mean you input a record and it print directly. please use this code:[ICODE] printer.print Text1.text[/ICODE]

Member Avatar for dspnhn
0
98
Member Avatar for abu taher

I made a Data report. I write code like: select *from table1 where date1 and date2 between dtpicker1.value and dtpicker2.value but the data not show in report. but when I write like: select *from table1 where date1 and date1 between dtpicker1.value and dtpicker2.value then data show. what problem? another thing …

Member Avatar for dspnhn
0
98
Member Avatar for abu taher

I made a datareport. I select a date from dtpicker and the datareport show that date data. here I want the selected date (by dtpicker) will show in the report. like: 05-06-09 or from 01-06-09 to 05-06-09 any body help me please.

Member Avatar for dspnhn
0
84
Member Avatar for abu taher

In a data environment I write code like: select ([exam fee]*[other fee]) as total from table1 then it work, but when I write like below it not work: select sum[exam fee] as total from table1 what problem with it?

Member Avatar for dspnhn
0
114
Member Avatar for gingank

see this thread, you can get profit to see it.[URL="http://www.daniweb.com/forums/thread158029.html"]http://www.daniweb.com/forums/thread158029.html[/URL]

Member Avatar for vb5prgrmr
0
103
Member Avatar for abu taher

which procedure I write this code: option1.value = true then text1.enable = true else text1.enable = false

Member Avatar for abu taher
0
142
Member Avatar for santhanalakshmi

If you do it by vb with a textbox[ICODE]Function GetId(TableName As String, FieldName As String, Optional Criteria As String) Dim rs As New ADODB.Recordset If Criteria = "" Then rs.Open "Select max(" & FieldName & ") from " & TableName, conn, adOpenDynamic, adLockReadOnly GetId = IIf(IsNull(rs.Fields(0)), 0, rs.Fields(0)) Else rs.Open …

Member Avatar for abu taher
0
91
Member Avatar for abu taher
Member Avatar for jhai_salvador
0
121
Member Avatar for dalemahan
Member Avatar for abu taher

at 1st: class name entry in a text box (by add new button). access file is store it. then in a another form (when a student admitt) enter all data of this student (in few text box) without class name. when I want to entry the class name then I …

Member Avatar for abu taher
0
154
Member Avatar for jetti
Member Avatar for abu taher
0
47
Member Avatar for abu taher

I made a queiry. but every data show in this queiry double. I mean every data show two time in this queiry. why this problem occured. any body help me please.

Member Avatar for johnly
0
99
Member Avatar for sbala_810

u can use it so easily. double click on combo box from toolbox. then it automatically set in your project.

Member Avatar for jinnie_gia
0
91
Member Avatar for thwias1b3008
Member Avatar for gingank
Member Avatar for teked
Member Avatar for rola

did you use any backend file? like access or other. or you want to do it one time? just input customer type, number of books purchased and cost of each book and then get the result?

Member Avatar for Jupiter 2
0
140
Member Avatar for abu taher

I made a database project. when I run it another pc it was run. but when I see the report (in my project) it show a error msg. it is : error number: 713 application defined or object defined errro. another thing it is exe when i run it another …

Member Avatar for Jupiter 2
0
89

The End.