Home All Groups Group Topic Archive Search About

Visual Basic General Discussion

microsoft.public.vb.general.discussion
Score Keep getting an Subscript Out of Range....
vonClausowitz - 12 Aug 2006 11:36 PM - 12 messages
Hi All, I'm trying to fill an array with data from a recordset but I keep getting an Subscript Out of Range Error message. What am I doing wrong? Private Type LINKDATA     pIcon As String     sLabel As String ...
Score Faster divides
Dan Ritchie - 12 Aug 2006 7:08 PM - 2 messages
I'm often trying to find faster ways of doing things in VB, since it can be a very fast language when it wants to be.  I find that divides are very slow though, so I use a number of tricks: ...
Score I'm very confused about the different databases!
pcnerd - 12 Aug 2006 3:21 PM - 14 messages
I have VB6 Learning Edition(hereafter, referred to as VB6 LE). I don't know what databse came with it. I'm confused about the different databases. There's DAO, ADO, ADO.NET, Jet (in its various versions), SQL, SQL Server ...
Score What's the difference between a MAK file & a VBP file?
pcnerd - 12 Aug 2006 2:39 PM - 4 messages
I have VB demos from version 3 thru version 6. I want to update all of them to the VB6 format. What's the difference between a MAK file & a VBP file? I thought a MAK file was for older versions of VB, but I have some VB6 demos ...
Score Centralize a form
Tran Hong Quang - 12 Aug 2006 10:34 AM - 5 messages
Hi, I want to put my form on the central of the screen. How to do that? Regards Tran Hong Quang ...
Score Moving picture box with right button
John S - 12 Aug 2006 2:01 AM - 4 messages
Hi All, Could you tell me how to change the commands below so that moving the mouse with right button  down will move the picture box ? Thanks in advance John S --------- Private Declare Function SendMessage Lib "User32" _         Alias "SendMessageA" (ByVal hWnd As Long, _ ...
Score Large String Array Overflow Error
jcrouse1 - 12 Aug 2006 12:29 AM - 5 messages
Here is my code:     Dim FileNum As Integer     Dim TotalFile As String     Dim i As Integer     Dim intlength As Integer     Dim reply As Integer     FileNum = FreeFile ...
Score Calculating Rate of Return
Marv Wade - 11 Aug 2006 9:19 PM - 4 messages
Can anyone point me to finding a formula for calculating an annual rate of return given a starting and ending amount and a variable number of  unequal deposits and withdrawals and variable times. I have found numerous examples dealing with fixed periodic fixed deposit ...
Score vb and msxml - encoding conversion is not working
b. - 11 Aug 2006 8:26 PM - 13 messages
Hello, I am probably experiencing an ancient problem and need your help. I am using the following: - windows 2000 server - vb6 - msxml (4) - xml files, encoding="utf-8", not saved as unicode (iso?) Please note that I cannot change any of the above. ...
Score How many Days
Mitch5713 - 11 Aug 2006 6:30 PM - 4 messages
What function do I use to determine the amount of days since the first of Jan of the current year?? That is the user enters todays date how do i find out how many days have elapsed so far this year?????? ...
Score Error Messages displayed in German.
Prasanna - 11 Aug 2006 5:27 PM - 7 messages
Hi, I am using the VB application when I am running my application some error messages were displayed in German. 1) Not all error messages were displayed in german.only few. 2) one error message is : "Multistep operation please check the status ...
Score VB6 Print Screen - image to a file
jcrouse1 - 11 Aug 2006 3:05 PM - 5 messages
I have a VB6 app that runs fullscreen without any borders on the form, sort of like an old dos game. I want to take a screenshot and save it to a file, preferably as a jpg image, on the local filesystem. From my ...
Score Receive
Stas - 11 Aug 2006 1:07 PM - 2 messages
Hello all I need receive some files from some device by standart Ymodem protocol. Which function or control I must use  in VB for this operation and where I can read about programming Ymodem and Zmodem protocol. Thanks. ...
Score Creating a function in a COM DLL.
Satya - 11 Aug 2006 11:51 AM - 2 messages
Hi. I am new to creation of COM DLL. I have created a COM DLL but i really confused about creating a function and using it in a VB application. Can someone please guide me and give an example code for a sample function. ...
Score Ymodem
Stas - 11 Aug 2006 10:49 AM - 2 messages
Hello all! I have traffic device Marksmann 400. I connect traffic device to PC by com1 port (rs232) I use MsComm in VB and send command to device: receive all files from device. I need use standart Ymodem protocol to reveive files from device. ...
Score Produce Statistical Information
Paul Black - 11 Aug 2006 8:02 AM - 5 messages
Hi Everyone, This is for a Keno Lotto that has a Total Pool of 80 Numbers ( Numbers 1 to 80 ) of which you can Choose Anything from a Minimum of 1 Number to a Maximum of 20 Numbers from the 80 Numbers. ...
Score remove 3 lines of text document
degmsb - 11 Aug 2006 5:26 AM - 2 messages
I am hoping someone may have some code to do this.  Can anyone supply me with some VB code that will cycle through a directory of text files and remove the first three lines of each file without whitespace being ...
Score Blanket of colour on a frame to take the background colour
John Roy - 11 Aug 2006 4:40 AM - 2 messages
Running XP PRO VB6 sp5 Does anybody know what causes a framebox (ssframe) to take the background colour of the form at run time Thanks John Roy ...
Score Computer Name and AD Username
Dave - 11 Aug 2006 3:11 AM - 6 messages
Hello, Are there any native VB6 utilities that can expose the Computer Name and the local user's MS domain controller Username?  The environment is XP PC's authenticated via MS domain controllers.  If not native, are the Windows ...
Score Where do we find Constant or Enumerated values?
DanMH - 11 Aug 2006 12:10 AM - 2 messages
When looking at some of the newer type structures for XP, Microsoft lists some constants that I do not have values for. Is there a resource with values for newer constants? Some of the pages at MSDN have hex values listed for some ...
Score Making a form non-moveable
Sandy - 10 Aug 2006 11:33 PM - 31 messages
Hello - I have a simple form (frmA) displayed in front of another form (frmBackground) which is the background form.  I don't want the users to be able to move frmA.  I tried setting the moveable property of frmA to false ...
Score User Defined Types
bg - 10 Aug 2006 8:50 PM - 8 messages
Hi, I want to be able do something like this in VB6 :- Type xx     Name as string * 10     Title as string * 30 end Type Public T1 as xx xx.Name = "FRED" xx.Title = "MR." ...
Score splash screen
Mitch5713 - 10 Aug 2006 8:47 PM - 4 messages
my splash screen always is behind my main form when it loads!! how can i get it to the top tried ZOrder does not work???? ...
Score numeric value from textbox, val( ) or .value ?
RB Smissaert - 10 Aug 2006 8:05 PM - 5 messages
When I need a numeric value from a textbox should I do: Val(textbox.Text)  or textbox.Value ? Actually, I think that for a textbox .Text and .Value are the same. or if the variable is for example an integer doesn't it matter and could I ...
Score VBscript to change excel cell values
mcalcote - 10 Aug 2006 8:04 PM - 2 messages
I need to open an excel spreadsheet and with a vbscript take the value in column 1 and parse it into column 2 and 3. Right now the spreadsheet only has this column 10.1.1.2/24 10.2.2.2/24 ...
Score VB6 - check to see if a task is still running and, if it is, abandon it
CNEWS - 10 Aug 2006 7:47 PM - 7 messages
Problem - a user (actually, it's the boss so telling him he's an idiot is not a wise idea) uses Opera and then calls a batch script that deletes the Program Files/Opera directory and then unzips a previously ...
Score How to make the program copy itself to the local drive and open that file, then close itself?
Jay - 10 Aug 2006 7:26 PM - 13 messages
Hey, My problem is people using my program are running it off a network drive. There are no problems on their end w/ mutliple users running the same file, but if I need to update the program and someone left that ...
Score Question on odd logarithm
Darryl - 10 Aug 2006 7:11 PM - 9 messages
I have VBA code in Access 97 written long ago, with a calculas formula (Daugirdas KTV for hemodialysis). The formula on paper reads as: -Ln(R - 0.008 * T) + (4 - 3.5 * R) * UF / W And I have it in VB as: ...
Score Manifests and VB6
Frank Rizzo - 10 Aug 2006 6:55 PM - 17 messages
I'd like my VB6-created app to use a commercial third-party OCX. However, I don't want to install the OCX in the Windows System32 folder.   Instead, I'd like it to be in the application directory and for the ...
Score Query the type of EXE
Frank Rizzo - 10 Aug 2006 5:55 PM - 2 messages
I want to query the type of EXE from VB6 code (e.g. standard exe or build with .NET exe).  What is the easiest way to do to this? Thanks. ...
Score How to detect the presense of the .NET framework...
Frank Rizzo - 10 Aug 2006 5:53 PM - 2 messages
....from VB6 code? Thanks. ...
Score Problems using Data Control
surena - 10 Aug 2006 4:25 PM - 4 messages
Hi, To access a database I put data control on a form. Then in connect property I select Access. Next in database name I select one access file (*.mdb). But when I want to set the Recordsource property to a ...
Score Calculation VB script
mcalcote - 10 Aug 2006 3:51 PM - 4 messages
I am trying to take an IP address and calculate it into a number.  I am using the following script that works. ' input1.vbs Option Explicit Dim ipaddress, ip1, ip2, ip3, ip4 dim ip1n, ip2n, ip3n, ip4n dim iptotal, iptotalfinal ...
Score TextBox multiline: howto add new line "light"
Giacomo - 10 Aug 2006 2:31 PM - 7 messages
Hi, I must show a log in a form... how is it possible to append a new line to a multiline TextBox? With a low number of lines I've used: Text1.Text =3D Text1.Text & "CodiceBadge modificato:" & Codice ...
Score how can i print 22 barcode charachters?
Elhanan - 10 Aug 2006 1:35 PM - 8 messages
hi is there a way to print a barcode that will contain 22 numeric and alpha numeric charcahters on a sticker 2.95 inches wide? i've been to play around it a barcode generator narrowing dpi's and line with, but i could only reach 20 charachters numeric. ...
Score Help - Sending handle of a List Box from VB App to a C dll
veenuuu - 10 Aug 2006 1:08 PM - 3 messages
hi people, I need to send a list of values to a Vb Application to populate a list box with these values. Can anyone of you tell me how to pass a handle of a List Box from Vb to ...
Score Scroll Bar Focus Question
jcrouse1 - 10 Aug 2006 12:58 PM - 10 messages
I have a form with vertical and horizontal scroll bars. It has no other controls, but will have labels. When I launch the app one of the scroll bar sliders is flashing, like it has focus. Even if I move the slider ...
Score How to pass the handle of a list box to a C DLL function.
Satya - 10 Aug 2006 12:01 PM - 2 messages
Hi. I am working on VC++ 6.0 and VB 6.0. How to pass the handle of a list box to a C DLL function. Can anyone guide me on this? Its urgent. Thanks in advance ...
Score Calculate time passed
Kostas kousinovalis - 10 Aug 2006 11:58 AM - 9 messages
Hello Lets say that we have an employee that his working day salary depends on the hours he is working and say that from 00:00 to 08:00 he takes for an hour 10 euros from 09:00 to 15:00 he takes for an hour 9 euros ...
Score How to capture array of strings in C DLL and pass it to a VB funct
Satya - 10 Aug 2006 11:08 AM - 2 messages
Hi. I am working on an C DLL in which i need to get values(strings) from the database and store it in an array and pass them to a VB function as a parameter. How do i return the array of strings in the C DLL function so that i can ...
Score Reporting options in vb.net 2005
joeB545 - 10 Aug 2006 11:05 AM - 2 messages
I am an Access developer considering using vb.net 2005 to develop a database application with reports.  What options are available for creating reports in vb.net 2005 in the various versions?  Also, are there third party controls ...
Score help needed in sending an array of strings to VB App from C dll
veenuuu - 10 Aug 2006 10:29 AM - 5 messages
hi all, I am working on VC++ 6.0 and VB 6.0. I have a function in my C dll that has to pass an Array of strings to the VB Application as input .These strings then have to be populated ...
Score Delete Files
Eric - 10 Aug 2006 4:05 AM - 5 messages
Is it possible after i run my process i delete text files from server. I run a process to read from text files after that i want to delete these text files so that no one again run the process. I am using ASP. ...
Score How to kill a connection left behind?
Kay - 10 Aug 2006 1:45 AM - 11 messages
Hi All, I have a VB6 app to do some data import from a SQL server to an Access database, somehow, the app crashed and after that I can't open the access db anymore, when I open it always say the db "is already opened exclusively by ...
Score Search colon
Eric - 10 Aug 2006 12:57 AM - 5 messages
Hi: How to i search ":" in a sentence. For eg: abc efg hij : kkk ddd lll fda fdasf jfdas fdas fsad When i read a line i want to skip those lines where ":" is present data = ts.ReadLine ...
Score Very Odd Behavior
Uriah Piddle - 10 Aug 2006 12:30 AM - 16 messages
Hi Gang, VB6 SP5 seems to be broken or something. When I step through this code, boolEnabled is True but VB falls into the 'Do this' line. If Not boolIsEnabled Then     Do this Else     Do that ...
Score Center Child Form
Darrell - 10 Aug 2006 12:15 AM - 2 messages
I'm a bit baffled as to how to center an MDI Child form. "0-Manual" is the only Startup Position allowed in a Child form and I can't ascertain the size of the MDI form since it maximizes on display, but seems to be ...
Score .captions displays during step-thru only
Dave - 10 Aug 2006 12:04 AM - 4 messages
Hello, I set the value of a caption in a label and call another module to perform some processing using code such as the following:    mycode.Label26.Caption = "Please wait ..."    Call goprocessothercode When I step thru the code (F8,F8,F8......) the caption displays in the label ...
Score how to read a japanese characters from a file
Read a japanese characters - 9 Aug 2006 11:32 PM - 2 messages
how to read a japanese characters from a file using Visual basic 6. I am using the following code, but it is failed to read the kanji characters. <Dim oStream As New ADODB.Stream     Dim iNo As Integer ...
Score Detecting a service that is running
JeanH - 9 Aug 2006 11:29 PM - 4 messages
I wasnt sure where to post this so I'm posting it here and also in the WinApi area. What is the command to detect whether or not a particular service is running? I am working with a client that requires a program to be running as ...
Score Timed loop - loop for 10 seconds for objNet.MapNetworkDrive
Chris Moller - 9 Aug 2006 9:16 PM - 2 messages
I am attempting to shorten the default timeout period when mapping a network drive via a logon script (useful when the server is down) from the default of 45-50 seconds to 10 seconds. Users with a dozen or more mappings affected ...
Score Passing multi dimensional array as argument
Mike - 9 Aug 2006 7:15 PM - 5 messages
Hi, My question is: lets say I have a 3D array Array(x,y,z) withbondaries for x=7,y=2 and z=1000 I would like to pass part of this array to another procedure. Lets say I would like to pass Array(1,2 and all the 1000 elements in this section of the ...
Score [OT] mvps.org
Harvey Triana - 9 Aug 2006 7:09 PM - 4 messages
Hello I did not update my web site in mvps.org from 2003, i wish update it now. I forgot my logon, and i tried to contact someone in mvps.org  without success (webmaster send an one-time, automated response and does not happen ...
Score Problems with Microsoft
Dan Ritchie - 9 Aug 2006 5:52 PM - 7 messages
Who can I contact at Microsoft to tell them about compatibility problems with VB and their new antivirus software? ...
Score Re: ¡É ±M¦¬¤â¾÷,«Oµý³Ì°ª»ù!
Stefan Berglund - 9 Aug 2006 4:54 PM - 2 messages
in <#WnYlp8uGHA.4***@TK2MSFTNGP06.phx.gbl> I don't think so.  In fact, I sure it won't. --- Stefan Berglund ...
Score Retrieving registry value
David Heer - 9 Aug 2006 3:51 PM - 5 messages
At runtime, I need to retrieve a registry value that is not located under HKEY_CURRENT_USER\Software\VB and VBA Program Settings, so GetSetting isn't going to do the trick.  I've found the CRegKey Class and its methods ...
Score How do I change the name of an executable?
John Morley - 9 Aug 2006 3:18 PM - 12 messages
Hi All, I want to change the name of the executable that is created using File>Make XYZ.exe. I've looked everywhere in the IDE for where this is set, but can't find it. I can edit the .vbp file with a text editor and ...
Score replace function
gonzosez - 9 Aug 2006 2:16 PM - 7 messages
I have to replace every " in a string with "" replace(string,""","""") generates an error Thanks Gonzo ...
Score Command Timeout
jfnjfn@gmail.com - 9 Aug 2006 2:14 PM - 3 messages
Hi everyone, Here's my problem.  I have a big vb.net application with a lot of calls to stored procs.  I don't want to add the line "Command.commandTimeout = 600" in front of each of these calls.  So, the default timeout is set ...
Score VB6, ADO and SQL Server
fniles - 9 Aug 2006 1:41 PM - 4 messages
I am using SQL 2000, VB6 and ADO. I need to change the isolation level so dirty reads are allowed. In SQL Server, it is done like the following: SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED How can I do that from VB6 and ADO ? ...
Score M.S.O.VB
belto - 9 Aug 2006 8:43 AM - 4 messages
Hi First of all am I in the right NG if not please redirect me. I have inadvertently set up a Macro in Microsoft Office word 2003 each time I open it I am presented with a window stating--- Macros in this ...
Score Service written in VB2005 does not function
Theo Dor - 9 Aug 2006 8:13 AM - 4 messages
Hi, (Please, excuse my English.) I am a newbie in VB2005 (VB6 in the past) and try to create an service project in VB2005. I have kept in addition to the on-line help (" Exemplary approach: Construction of a Windows-official application in the component designer "). ...
Score Recognizing Computer Name
Basharat A. Javaid - 9 Aug 2006 6:19 AM - 3 messages
I am using Excel 2000 (Office 2000) and in my Excel application, I have reports printing module which: 1) Sets the printer to a pdf printer, and 2) Prints certain custom views to the pdf printer. I initially recorded the printer setting by recording the macro on a network ...
Score Creating an Instance of a C DLL and using it in VB6.0
Satya - 9 Aug 2006 5:33 AM - 3 messages
Hi. I want to know about creating an instance of a C DLL and how to use that instance in a VB function on VB6.0. Thanks in Advance. ...
Score Initializing Structure in VB and how to create an instance of it.
Satya - 9 Aug 2006 5:30 AM - 2 messages
Hi. I have 2 programs which are: a DLL in C and a VB application that uses DLL functions. Flow: The VB application calls the functions in the C DLL and also VB aplication passes some arguments to the functions of the C DLL. ...
Score Interaction between VB user interface and C
Satya - 9 Aug 2006 5:28 AM - 2 messages
I have written some C code which needs to get some values inputted in the VB UI . Then i need to perform some operations on those values and again i have to send back the resultant values to the GUI. ...
Score setup has encounted a problem and needs to close
Mark Alsop - 9 Aug 2006 3:23 AM - 11 messages
Moving to a new computer, old and new both running XP Pro SP2 w/all Live Updates Need to install VB6 on the new machine (I'll be removing it from the old machine) The above error (subject line) occurs whether autorun initiates setup or I ...
Score Sample code to connect to Access mdb and subsequent data access&up
Wellie - 8 Aug 2006 9:57 PM - 2 messages
Hi, I'm a new comer to the VS 2005 with VB but with programing experience with VBA from Excel and Access.   I'm planning to develop a small custom appl using mdb as backend (because it already exists) and use VB in VS 2005 as ...
Score Reg Expression
Eric - 8 Aug 2006 9:49 PM - 6 messages
I try to search pattern using RegExp method but it wont work. Data contain emails which i save it into a textfile and want to read the contents of email (Date, Customer Name, Street, Subject etc etc). Date, Customer Name etc they all are in large braket and on the next line ...
Score End Program ends VB
Marv Wade - 8 Aug 2006 7:59 PM - 9 messages
Suddenly  when I run a program in IDE, then press the End button on the task bar it not only "End" the program execution, but ends VB itself, returning me to Windows.  This just started yesterday.  Is there some setting from ...
Score Please help!
echenwick - 8 Aug 2006 7:37 PM - 5 messages
Hello, I need help.  I generate charts, using macros, for my company. The macros are a fast tool when you have to do 40-50 charts a project. Well, my company had changed colors to the charts.  As a result, I'm ...
Score ADO recordset field properties
David Heer - 8 Aug 2006 6:39 PM - 4 messages
I need to write a re-usable block of code that I can run to ensure that non-null fields are filled before posting record inserts/updates; I can get to the field in my recordset easily enough, but I can't figure out how to ...
Score parse string
stoppal - 8 Aug 2006 6:16 PM - 7 messages
I have a string that I need to parse based on the number of elements. Using the string.... string="a,abc,car,bread,number,the,word,world,never,before" I would want to parse the string into three items per parsed string, ...
Score can not find server
gonzosez - 8 Aug 2006 4:03 PM - 2 messages
I have created and published an application. The internet explorer appears with a message that the page can not be displayed. The address bar shows "http://location of file/appname.application" Any ideas? Thanks Gonzo ...
Score Basic Question: Function/Sub Scope
wxforecaster - 8 Aug 2006 3:08 PM - 5 messages
Say I have a form with 2 command buttons. Command1's code is newval = fDoStuff(valuex) Command2's code is newval2 = fDoStuff(valuey) In a separate module I have the function fDoStuff(ByVal someval as Integer) as Integer with a bunch of code that acts on someval ...
Score User profile
Matteo Basei - 8 Aug 2006 3:03 PM - 4 messages
Hello, what can I do to write a program in vb .net to copy a user profile? Do you know syscall to do this? ...
Score DLL from ASP Issue
johnvetter - 8 Aug 2006 2:36 PM - 8 messages
I am having an issue with a DLL on a webserver. I have a local test environment setup to develop asp pages and dll's. I have tested the dll on my local workstation and it works fine. When I transfer it to our ...
Score Help needed to paas parameters to a dll from VB Application
veenuuu - 8 Aug 2006 12:46 PM - 4 messages
hi all, I am working with a VB Application that uses some functions exported from  a C Dll. The functions in the dll are API functions that return a return code specified in the API which is of type ULONG. ...
Score Associating filetype with my program
Irfan S. Fazli - 8 Aug 2006 11:00 AM - 2 messages
We have an option in our vb6 software to create text file (with specific unique file extension) containing encrypted lines of text. A utility in vb6 exists to view (or save) as plain text the contents of this ..CRV file. ...
Score File not found "dll"
Bibo - 8 Aug 2006 9:51 AM - 4 messages
I have done my c++ dll but when I try to call functions from it in VB I get file not found, I have putted the file in the directory c:\windows\system32. The program works fine, I want to make the dll file in the same directory my ...
Score trigger from serial port
alexxx.magni@gmail.com - 8 Aug 2006 7:47 AM - 4 messages
hello everybody, I have a simple question (I think), for a problem I'm unable to solve since I'm a complete newbie to VBA. I'm writing a program that should wait for a trigger coming from an instrument (the environment is MS VB 6.3). Since I didnt know how to ...
Score comboBox - Set ListIndex Problem
AK - 8 Aug 2006 5:16 AM - 6 messages
I am trying to set the .ListIndex property of a combobox to the index corresponding to an item in the list by utilizing the string value of the indexed item. For example, I know that I can set the item displayed to the first  one by ...
Score OCX locate and register
Jim Y - 8 Aug 2006 1:38 AM - 17 messages
I have done this once before, but do not remember the steps to accomplish it. I downloaded 'metalcbproj.ocx' and have it saved in partition E:\downloads.  With XP SP2 on the PC, I do not have C:\windows\system.  The OCX came with a batch file to install it, but I don't trust ...
Score HELP!!! DOGS IN CHINA
Cookie - 8 Aug 2006 1:17 AM - 2 messages
This picture outs tears in your eye...:'(:'( [link] [link] [link] ...
Score Convery byte array from LookupAccountName to string
Jerry West - 8 Aug 2006 12:27 AM - 5 messages
I'm using LookupAccountName to return the SID of an account passed to the LookupAccountName function. What is returned is a byte array. I need this converted into a string that looks like a normal SID you would find within ...
Score tabctl32.ocx issues with Windows XP
jcrouse1 - 7 Aug 2006 10:34 PM - 2 messages
My VB6 app uses the tab control which relies upon tabctl32.ocx. I did not package the app with an install routine which would include the necessary files. I just want the user to extract the files to a folder ...
Score On the 15th Day of The Israeli Aggression : A total of 958 deaths since the beginning of the war....
LEBANON - 7 Aug 2006 7:29 PM - 2 messages
On the 15th Day of The Israeli Aggression : A total of 958 deaths since the beginning of the war, over 3,369 wounded, 915,762 Displaced, and the world is still silent! THIS IS THE LEAST WE COULD DO FOR : LEBANON! Look at those pictures [link][link][link][link][link][link][link][link][link][link][link][link][link][link][link] Tell your friends about what is going on! ...
Score MSComm output testing
this.is.becky - 7 Aug 2006 6:01 PM - 4 messages
what is the best way to test output from MSComm?  I tried communicating from Com1 on one computer to Com1 on another, linked by cable, using HyperTerminal and got results.  I can't seem to mimic this with MSComm ...
Score How to tell is program is started by click on execute or Windows startup
Norm - 7 Aug 2006 5:42 PM - 3 messages
I know this sounds like a strange request, but is there anyway to tell how your program was started? Specifically can you tell if it was started by windows startup routine? Thanks, Norm ...
Score Dynamic Data
Thomas - 7 Aug 2006 5:35 PM - 4 messages
Hi, I have a form that has user input that I need to pass to my business layer. The user input is dynamic and is not know at design time.  I have an interface between my layers (presentation and business).  I want one method ...
Score Array with sets
F.N.Z - 7 Aug 2006 2:40 PM - 2 messages
I need an array with two indexs.one index is in number kind that is not my problem but the second index has to be in set kind: a(1 to 10,subsets of V) that V is a set of some nodes.exp:V={v1,v2,v3} ...
Score learning VB
F.N.Z - 7 Aug 2006 2:38 PM - 2 messages
I'm very intersted in VB.6  but I don't have enough sources to learn it because I live in a country far from Europe so sources aren't in access very good.Is there any E_books to help me in learning VB or is there any website to learn ...
Score Error Converting VS2002 project with VisualStudio 2005
B N - 7 Aug 2006 2:30 PM - 3 messages
Hi, When I try to open a Visual Studio 2002 project with VS2005 it automatically tries to convert it to latest version.  How do I stop this automatic conversion of Asp project and continue without conversion using VS2005 ? thanks ...
Score learning VB
F.N.Z - 7 Aug 2006 2:12 PM - 2 messages
I'm very intersted in VB but I don't have enough sources to learn it because I live in a country far from Europe so sources aren't in access very good.Is there any E_books to help me in learning VB or is there any website to learn ...
Score Array with sets
F.N.Z - 7 Aug 2006 2:08 PM - 6 messages
I need an array with two indexs.one index is in number kind that is not my problem but the second index has to be in set kind: a(1 to 10,subsets of V) that V is a set of some nodes.exp:V={v1,v2,v3} ...
Score Regular expressions
Harold Druss - 7 Aug 2006 9:30 AM - 7 messages
Hi All I need to replace text in a large file. The text is in the form "(abcde***@aol.com)" I need to replace everything, including the parenthesis. Any help appreciated. Thanks Harold ...
Score Data input controls and methodology
Mitch5713 - 7 Aug 2006 12:39 AM - 5 messages
What is the best wasy to get input from a user that is what control would you use to get some data from a user??? I've got a simple form on it would be 2 dialog boxes? in which I would enter some currency numbers(i.e.14.24 etc) ...
Score Speed up the loading time of a GUI
dallasfreeman - 7 Aug 2006 12:14 AM - 10 messages
I have a dynamic page in my program that loads survey questions with a text field for the question and up to 10 answer fields inside a panel, each question/answer has a check box to display the answer in the ...
Score I have a problem with ActiveX Controls
Tasneem - 6 Aug 2006 8:37 PM - 2 messages
Hi every body I have missing files for activex controls in my visual c++ 6.0 program... I don't know if I can download it or from where can I download it ... can any one help me ?? ...
Score dialing phone no. w/mscomm, is it poss. to detect busy/dialing/connected
Mike Scirocco - 6 Aug 2006 6:49 PM - 6 messages
I'm using the MSCOMM control in VB6 to dial a phone number. I'd like to detect whether the control is dialing, whether the phone is ringing waiting to be picked up, whether the line was busy or if the call got ...
Next »