10,989 Topics
| |
Hi I want to read a source code of a web page & then write it into a text file using vbscript. I have used this code but not working properly. Error : ActiveX component can't create the object [code=vb]Option Explicit Dim objHttp Dim strUrl Dim strData ' Create a … | |
Are most printers capable of printing all the way to the edge of the paper? is there a minimum margin? In my program, the paper size is 8.5x11, how much space should I leave around the edge so that it will print properly? | |
Hi, im trying to create a program so that when i hit certian keys on my keyboard it will input the special letters used in the German language. eg "Ä", "Ö" etc... I have managed to do this with the GetAsyncKeyState and the SendKeys statments, however when i press my … | |
Hi I need to insert a string in a database but the string might or might not contain a quotes('). There is no problem if there is no quotes. But in case of quotes it throws a syntax error in insert statement and that obvious also. What i am thinking … | |
Hello, I wish to create a document in a word processor with all the formating etc and save it, then I wish to drop this document on to my form in some control or object so it is hidden from the end user then I wish to load the hidden … | |
Does anyone know how to get the Rich Text Box to save margin information in a file? The RTB seems to ignore all margins. | |
hi, I have around 10 check box, i want a report which displays checked checkbox. If i select 5 out of 10 check box it should display 5 columns data in a single report. please provide logic for this. thanks | |
I've been searching the internet and this site and haven't been able to find an answer to what I believe should be easy to do. I'm using Visual Basic 2008 Express and I'm trying to retrieve a web page. I'm using the following code (that I found on the web): … | |
can anyone give me a reference to a great tutorial for programming Ti 89 graphic calculator using BASIC? | |
HI, i am new in VB. I would like to know whether VB have API like Java? Where i can search through API/documents to know the function of any built-in function or is there any website that provide information for all the build in VB functions? It is possible to … | |
Hi, Does anyone want to give me a hand? I gets a small problem in my code. I want to make the mouse pointer is disappeared while pressing 'Alt' key. Otherwise, the pointer should reappear. I use ShowCursor API to do it, but I meet the problem. If I run … | |
Private Sub Command1_Click() Dim namefile As String namefile = Text1.Text Open App.Path & "\Accounts\" + namefile + ".txt" For Output As #1 Print #1, Text1.Text Print #1, Text2.Text Print #1, Text3.Text Print #1, Text4.Text Close #1 MsgBox "Thank you for your registration, please login!" Form2.Show Form1.Hide End Sub -------------------------------------------------------------------------- That's … | |
[B]hello,,,, pls help me ,,, I need some simple VB Programming about Priority Scheduling,,, such as[/B] [B]Shortest Job First,[/B] [B]Shrortest Remaining Time First,[/B] [B]round robin,,,[/B] [B]multiqueue programming[/B] [B]non- preemptive,,,[/B] [B]preemptive priority scheduling[/B] [B]thank you,[/B] [B]vince,,[/B] | |
Hi Every one , on monday i have to submit my assignment i need ur help in this regard make a label box in vb one label box and only one and one text button okay so, when the user clicks on the next button a question should display in … | |
Hi, iam developing a small application using vb6, oracle 8i and crystal reports 9 my problem is i placed crystal report control on MDI form and named it as CRT but in CRT properties iam not getting CRT.Sqlquerry property and .windowsmaximised properties.. why it is happening is it requires any … | |
how can i generate a data report using vb 6 and mysql...? | |
my sql query is this [CODE] Set rs = conn.Execute("SELECT COUNT(Question) FROM QnE where fldChapter = 10")[/CODE] on my tble that fldChapter have a value of 1,2,3,4,5,6,7,8,10~~~~~,20 and im getting a random cell value form fldChapter HOW can i get a random cell value form 1~10 only??? pls help me … | |
[B][/B] Hi all sorry for the inconveniences, I just wanna get this syntax thing out of my back. I modified my vb module and now I'm getting[B] "Run-Time error 3075 syntax error(Missing operator) - query expression"[/B] Then it displayed this line of code as the problem line: [Code] 'TblPersonnel.[Name] = … | |
I would like to input a spreadsheet and convert it to a text file and then manipulate it. I don't want to have to open Excel to do this. I'm just slightly above the noob stage. I only have VB5 at this time. Thanx in advance for any help!! Stu | |
hi, plz help me solve this one, The application should create a window. The window should be divided into 4 parts. Each part should be painted with a color (choose a color of your choice). When I click on a particular color, there should be a message box saying the … | |
[B][/B] Hello members, I am trying to execute the module below (SQL statement) and I am getting the above error: "Syntax error in FROM clause" on this line [code]Call db.Execute(strSQL)[/code]. When I hovered the mouse over the SQL string variable, it shows this line of code: [code]strSQL = "Insert Into … | |
I have been struggling with this problem for a couple of days - and am now getting desperate. I am trying to extract data from a large binary file, about 64 mb. It is sequential binary records of two byte words. The values range from +32k to -32k, The variable … | |
Hi,I am new to VB6.I need to create a similar menu for many forms.My proj has around 8 forms.lets say I need file and edit menus,also have submenus. Do I need to repeat the code in al the forms or can I declare some coding in a module or something … | |
Hi Can Anyone Help Me How To Use Data Report..i Am Using Visual Basic 6 And My Back End As Database Is Mysql.. | |
Hi, I am making a Sheduling program, in which I designed my own graphical interface using fillrect, lines, textout, ect... I hold the picture in memory, then paint it when it changes like this: mDC = CreateCompatibleDC(me.hdc) hBitmap = CreateCompatibleBitmap(me.hdc, 100, 100) SelectObject(hDC, hBitmap) Form_Paint/Form_Click() update chart and work shifts … | |
How do i make a windows style menu in visual basic for my application i have a menustip but i shows only one straight column, but i want like it is in windows XP and Vista. so i have two columns for different kind fo things to add how do … | |
Hi! I'm trying to open a .xls file in vb, but not a specific file. What I need is something like this: if [COLOR="red"]filename.typefile=.xls [/COLOR]then msgbox ("it's an Excel file") end if What I wrote in red colour is the code I need, because I know this code doesn't exist. … |
The End.