543 Posted Topics
Re: adjust the alignment, if it has this property. | |
Re: I think there is no problem to use if else statement. | |
Re: I made a unit converter. there I input all value by code and then it works. as like vb5prgrmr said. | |
Re: if your window is ok then try to installed another fresh copy of ms program. | |
Re: 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 | |
Re: 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. | |
Re: some time after scan many thing are not fix up. then have to need change some thing or install a fresh windows. | |
Re: what you actually want to do? more details | |
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 … | |
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 … | |
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 … | |
my data report is portrait. how I change it in landscape. | |
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 … | |
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 … | |
Re: not like that. like :[CODE]Private Sub Form_Load() Dim x As Integer x = 100 Label4.Caption = x End Sub [/CODE] | |
Re: you start this thread before. 1stly stop that thread. and then start it with more details. | |
Re: did you write code[CODE]Beep[/CODE] If not then I think no problem in your code. | |
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? | |
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 … | |
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. | |
Re: [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 … | |
Re: what kind of tools you want to make? | |
Re: 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. | |
Re: not clear, please say clearly. | |
Re: what kind of code you want to know? to connect with report and connect with various control of report with backend database. please details. | |
Re: from file menu click 'make project exe'. type the name what you choose. you see the option button for more. | |
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 … | |
Re: 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 … | |
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. | |
Re: you mean you input a record and it print directly. please use this code:[ICODE] printer.print Text1.text[/ICODE] | |
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 … | |
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. | |
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? | |
Re: 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] | |
which procedure I write this code: option1.value = true then text1.enable = true else text1.enable = false | |
Re: 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 … | |
How can I show my data in a combo box. I need help . anybody help me. | |
Re: need more information to know what you want to do? | |
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 … | |
Re: what kind of project? is it made by language like vb or c++? details....... | |
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. | |
Re: u can use it so easily. double click on combo box from toolbox. then it automatically set in your project. | |
Re: please check and try the attach file. | |
Re: and if u hide the 1st form then write me.hide or form1.hide | |
Re: and if you it increase auto then check under check box. | |
Re: 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? | |
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 … |
The End.