11,868 Topics
![]() | |
Given the following two code snippets, how come I get different output? [code]Sub test() Dim str As String Dim b() As Byte str = "hello" b() = str str = "" For i = LBound(b) To UBound(b) str = str & b(i) & " " Next i Debug.Print str End … | |
I've been looking for information on threading, and I found information on POSIX pthreads. Apparently, Visual Studio 2005 does not have [INLINECODE]pthreads.h[/INLINECODE] in their library. I did a search on the computer, and I found pthreadlocale.obj in the LIB directory. Does this object file have anything to do with pthread.h? … | |
Hi Friends I Want to start the Menu's of my application from Right to left in Visual Basic 6. Is there any way for doing that. Please replay me Regards Arun:cool: | |
Hi Everyone, In DAO there is an tabledef object where you have the ability to find out all the names of all tables inside an MDB file. Can anybody show me a code on how to do that in ADO. Thanks in advance. Newvbguy | |
How Do I make Visual basic click on other icons in other programs. Like The next and finish and Install cmd buttons. Is it possible to copy text out of a text out of text boxes and Enter them into a program. Kinda Like COPY AND PASTE | |
Frens, I want to check in my hard disk whether a file is exist or not by using the VB. I have to check mainly the text files created by sequential access method. I used the dir() method with if condition but it unable check that so plz help me … | |
Hi Friends I Developed one application in visual basic 6.0 Now i want to convert it to another language.For this how can i change the windows message boxes and menu bars fonts programatically so that it will affect only the application. Please give me guidance Thanks Arun:) | |
Hi there...im the new member here and the beginner in vb application im from Malaysia...can u all show me the [B]format of the vb scripts or the one example of vb scripts[/B]..Im really need it... Thanks and Regards Maroll | |
hi there, my task is to do the automation of consolidated database (MySQL). i have to upgrade the previous Consolidated Database (CD)programming. so far, i have already designed a timer. but my problem now is on how to plug in this timer to the previous CD source code. the previous … | |
Hello I have an exam on Tuesday about client server, my tutor has given us a revision list, I don’t understand the some of the list, could someone please help me understand what he wants, or better if you give me examples The question is: Compulsory 1 Diagrams + description … | |
Please Help!! I am designing a program in vb6 that is to be linked up to databases in both access and excel. The problem is when I try to link up the database's using the data control I get the following message: "Couldn't find the installable ISAM". I am kinda … | |
Hi, I have developed an application in Excel 2002/XP to handle a spreadsheet.In order to make the execution faster I want to compile the VBA-code into mashinecode. The | |
Good Morning All, I am trying to write a code that will allow me open up a powerpoint file and an adobe file in VB. I have checked the Microsoft Powerpoint library under "references". Please could anybody give me code that can do that? Thanks. Ini :-| | |
Hi friend, Is anybody interested to do the following work in VB6 1) Print large form or picturebox like A1, A0 size. This form includes some usercontrols. 2) Convert large picturebox or form into jpg, gif or bmp file. 3) Create drawing tools like line, circle. user can draw shapes … | |
I want to allocate a large array of data "three mega bytes" and I don't know how to do this in VB after allocating this array I want to pass a pointer to it to C++ DLL what is the appropriate pointer knowing that it is not an array of … | |
Hi, Is it possible to open a M$ Word doc in a RTF box? I thought of opening the doc in word and saving it as temp.rtf then opening that file in my rtf box, this would be a poor way of doing this. Any other ideas? pG | |
How do I display then hide a progress box. I don't want any input or check boxes, just show the user that the computer is alive and working. A counter will be nice. When the task is done, the codewill remove the box. Thank you, Bkelly Oops, I forgot to … | |
I need to know who to call up other forms from one form or another and also see and unistall programs from a computer using vb programing | |
Hi there, Can anybody show me how to export a recordset into a txt delimited and exporting recordset into a dbf format. thanks in advance. Newvbguy | |
HI [CODE]class Astro { var $jd; var $dec; var $ra; var $sid; var $dra; var $rsum; function Astro() { $this->jd = 0.0; $this->dec = array(0.0, 0.0, 0.0); $this->ra = array(0.0, 0.0, 0.0); $this->sid = array(0.0, 0.0, 0.0); $this->dra = array(0.0, 0.0, 0.0); $this->rsum = array(0.0, 0.0, 0.0); } function copyFrom(&$source) … | |
Hi I am trying to fill a combobox with the files from a FileListBox the code i am using is [CODE]Private Sub Form_Load() File1.Path "C:\Images" File1.Refresh If File1.ListCount > 0 Then For i = File1.ListCount To -1 Combo1.AddItem File1.List(i) Next End If End Sub [/CODE] The FileListBox fills with the … | |
Hi there, How can I extract a ps file (eg. sample.ps) and put it into recordset. Thanks. Newvbguy | |
Ok, before I get started I have a few things I need to clear up. 1) I am relatively new to VB, I come from a webdesign background and picked up the basics pretty quick. 2) I dont have an understanding ADO 3) I am not using VB.net, dont judge … | |
I have a VB6-dll that is referenced in both a VB.Net aplication and another VB6-dll. Now, I get Information (strings containing filenames) from the VB.NET application and store them in global variables in a module. Then I want to use these variables in the other VB6-dll, however they are empty. … | |
frankly speaking i dont know how to start my code. my problem is i need to put the contents of a database in a graphical format (i plan to use msflexgrid for this). whenever the user click a certain row of record, a form will appear and from there the … | |
i have DTPicket and TextBox. how to change DTPicker with this value "2006,05,17"? DTPicker format : "5/17/06" 'shortdate for example : DTPicker value = "5/10/06" Text1.Text value should be "2006,05,10 Thanks in advance... | |
Hello Everyone, Am studying client server, if any of you programmed using client server please send me a private message, I have a assignment to do, I have done over 90 percent of the code, I really need some help in the other 10 %. | |
hi there, im new in Visual Basic. currently my task is to create a program that will automatically consolidate database based on the time. for example, the program will executes at 10 pm everyday in which the database will be consolidated in that particular time. the database that im using … | |
Hello - I'm trying to work with Microsoft's VB editor to create a series of macros. Information will be inputted into word using mail merge, and I [I]think[/I] we'll be seeing it in comma-separated values. It'll be dumped from a Peoplesoft application into Word. The code I'm writing needs to … |
The End.