11,868 Topics
![]() | |
I want to question for all. I use Visual Studio 2008. Why everytime i show my form, i must declaration variable. Example [code] Dim form1 as new Form1 form1.show() [/code] Why i can't use form1.show() direction. My friend can use form1.show direction without declaration variable in Visual Studio 2008. What's … | |
I'm having this error: type mismatch.. i dont actually get/understand the error.. i think the error is in the WHERE clause [tblUserAccount].[UserID].. the field [UserID] is set to a data type Autonumber, and the roleUserID is set as integer.. [CODE] Global rolesDbs as new adodb.connection Global rolesRs as new adodb.recordset … | |
Ive searched and downloaded somethings..But Im not sure what I do need to download, can someone post me a link to where I can get VB6? Or how exactly is VB used..I am a python user, but wanted to try VB for a change.. I am very un certain of … | |
i know some about vb.net programming and i'm interested in developing some software which is able to Get Data From Serial Port /parallel Port to my working form. can somebody advice me ,how to start such kind of developing and what should i refere (web sites /e books) for this … | |
Helo all, Can anyone help me .I want to put dilimiter in the substring of a whole string. Here is the string Amitav 12/3/2009,234,201,210,222 I want to put dilimiter in the left most substring like this Amitav,12/3/2009,234,201,210,222 ______________ How can i do that. Thanks | |
I know how to change the master volume control level, but I also need to know how to get the current level so I can change it back to what is was when exiting the application. Does someone know the vb code for this? | |
Hi, I'm trying to do a paste special (values) of Excel data into an Excel sheet but coding it from word VBA. I can get a normal past to work however with the paste special the 'Paste' argument is not recognised. I have tried the following (only the paste special … | |
how i can create a dll file in visual studio 2008 using vb.net Thank's.... | |
Cashier 1.0 is a C++ program that displays on the screen item codes with corresponding item description and price (at least 10 items). It asks the user to enter the code of the item purchased by a customer. Then, its description and price are displayed on the screen too. Also, … | |
so basicly what i want to do is get a list of the open windows, like all of the tabs in the taskbar. thanks for your time! | |
help please... i'm into vb6 developing and it's my first time to incorporate a barcode reader into my system.. can someone give me a hint on how to do it.. the codes would be much greater... i'm going to use a handheld scanner... | |
Hello everyone, i want use EnterKey in my Project ,i write some code in from load,but still TAB key use in my project. Here is a code, [B]If KeyAscii = 13 Then SendKeys vbEnter End If[/B] | |
can anybody explain me.the use of redim statement and preserve keyword over here.kindly let me know the idea .any help would be Highly appreciated. [code=vb] Public Function LoadData() As Boolean Dim codeString As String On Error GoTo LoadData_Error Dim Obj As IProducts '// The classinterface Dim rs As ADODB.Recordset '// … | |
hello everyone, can u plz. specify steps how to convert s/w into exe thankyou | |
hi i am making point of sale system.. i want to make empty grid and i want to add list box in first cell of each row, that list box contain items name so that when user select item all other cell of that row is filled by the respective … | |
Hi! i'm a newbie in VB6, and I'm creating a program that reads arabic numerals and converts the specified Arabic numerals to Roman numerals. Is there a function in Visual Basic 6 that converts Arabic numerals to Roman numerals or vice-versa?:-/ ..,,If none,..would someone , post some code snippets about … | |
hi,all Just like the title,i want to programme a update software for my softeware,but i don't know how to start. Is there a function that can download in VB6?And how to check the version? Please help me.... | |
Hi, By clicking the button first time - it opens the form. if i try the same thing(in second time) .....In my form only [B]one textbox(using as a lostfocus[/B] and also using recordset[sql]) [B] Runtime Error '3367' : Object is already in collection.Cannot Append.[/B] Please ,help me out..........thanks in advance............ | |
i am usng key ascii 13(Enter key) to move between text fields... but the problem is that it produce some sound i dont want that it produce that sound, can any one know how to avoid the beep in vb6????? Private Sub Text1_KeyPress(KeyAscii As Integer) On Error Resume Next If … | |
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 … | |
Hello everyone, I am new to vb6 though i have done java and abap before. I gotta design an application which is a quiz with a countdown timer. I have created the countdown timer stuff but how do i create questions and answers? say if i have 20 odd questions … | |
Hi Friends, I need a help, I am making a project where I have to update the class database all at once, I made a function where some values are passing to update, It is updating the Database as well, But the problem is all the database is updated with … | |
i want to save a text file (eg:ABC.txt) in RES file and load it into a combo box or a list box using following code.. Open App.path & "\ABC.txt" For Input As #1 Do While Not EOF(1) Line Input #1, s Combo4.AddItem s Loop Close #1 how do i give … | |
Hi guys.. I need help with selecting an item in a listbox which gets its items from a database table using While-Wend Loop. The listbox lists the table's contents properly. My problem is how will I add the item I selected in the listbox (e.g. John, Erick) in another table … | |
Hi, i have a group box with 2 radio buttons; failure and success. I need to have the text (either failure or success) saved in the access 2007 database instead of values (1 or 2). The same is also happening with the combo boxes. Here's the code am using: (i … | |
At the moment I am currently working on a program (for school) that saves and reads CD album information from a file (pre-made). The information that can be saved (and read) is the album title, the artist, the recording group, the genre, the date purchased (in the DD/MM/YYYY format) and … | |
i want to ask some question ??? [code] Dim conConnection As New ADODB.Connection Dim cmdCommand As New ADODB.Command Dim rstRecordSet As New ADODB.Recordset conConnection.ConnectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source="D:\Documents\Visual Studio 2008\Projects\trial database\Microsoft Office Access 2007 Database.accdb"" conConnection.CursorLocation = ADODB.CursorLocationEnum.adUseClient conConnection.Open()[/code] im using visual studio 2008 ,i want to access to mirosoft access … | |
I am changing a VB6 program from DAO to ADO and bump into some problems. Before I go into the multi table problems I will start with a single table :-/ I have an Access 97 database with some tables. The tables have no relations among each other. I want … | |
Hi, please guide me how to use crystal reports in vb6.0.anyone can explain with small example.say for example select the db and tables and fiels and links between tables ,sorting fields..how to call that report using vb.. Thanks in advance, vanathi |
The End.