User Name Password Register
DaniWeb IT Discussion Community
All
What is DaniWeb IT Discussion Community?
DaniWeb is a massive community of 332,572 software developers, web developers, Internet marketers, and tech gurus who are all enthusiastic about making contacts, networking, and learning from each other. In fact, there are 2,176 IT professionals currently interacting right now! Registration is free, only takes a minute and lets you enjoy all of the interactive features of the site.
Please support our advertiser:
Showing results 1 to 20 of 20
Search took 0.01 seconds.
Posts Made By: techtix
Forum: Visual Basic 4 / 5 / 6 Apr 7th, 2008
Replies: 5
Views: 246
Posted By techtix
Re: How to know the User Log off or Shutdown the system Using VB

If you need to write custom code during the shutdown of the application and need to check to see if the user is logging off or if the machine is shutting down, use the forms QueryUnload...
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008
Replies: 6
Views: 233
Posted By techtix
Re: Dialog Box

Still a problem here. The MsgBox options you are setting are vbOkCancel. This will never return a vbYes. Your only options for a return code are vbOk and vbCancel.

** See my previous post for the...
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008
Replies: 6
Views: 233
Posted By techtix
Re: Dialog Box

When calling a function, make sure you use parentheses. Also, you are not soliciting a vbYes from the user. Just a vbOK or vbCancel.

** It's a personal preference, but when I call a function that...
Forum: Visual Basic 4 / 5 / 6 Apr 5th, 2008
Replies: 6
Views: 233
Posted By techtix
Re: Dialog Box

MsgBox is a function with a return parameter available. The syntax is as follows:

ReturnVal = MsgBox(Prompt, Options, Title)

Options is a combination of your buttons, icons, and default...
Forum: ASP Apr 4th, 2008
Replies: 3
Views: 752
Posted By techtix
Re: Insert Request.Form result into SQL

Ok, first I am going to assume that you have the code for the connection "con" somewhere else and this is just a snippet of what you have.

Secondly, why the 'var' and semicolon syntax? Are you...
Forum: ASP Apr 4th, 2008
Replies: 1
Views: 299
Posted By techtix
Re: create dinamic dropdown box

You should probably post this in the ASP.Net forum instead.
Forum: Visual Basic 4 / 5 / 6 Apr 4th, 2008
Replies: 4
Views: 173
Posted By techtix
Re: Debug & Code Window

No. The debug window is technically called the Immediate Window. Open it by pressing CTRL-G or you can find it in the menus as well.
Forum: ASP Apr 4th, 2008
Replies: 4
Views: 487
Posted By techtix
Re: the title attribute of the SELECT tag is not supported????

Perhaps I may be confused with the question, but the SELECT element is a dropdown list by nature. The INPUT element is another form element and the inclusion of it within the SELECT element is why...
Forum: ASP Apr 3rd, 2008
Replies: 1
Views: 352
Posted By techtix
Re: asp mail object : need help

FALSE!!!

XP does not come with CDONTS, but it will support CDONTS. The only problem is that you have to copy the CDONTS.dll from a Windows 2000 machine.

** The library needs to be registered using...
Forum: ASP Apr 3rd, 2008
Replies: 1
Views: 277
Posted By techtix
Re: need help on Personal Web server

START --> Control Panel
Open "Add Remove Programs"
Select "Add/Remove Windows Components"
Install Microsoft IIS

** May not be available for XP Home Edition.
Forum: ASP Apr 3rd, 2008
Replies: 1
Views: 258
Posted By techtix
Re: ASP Newbee

If you ever need a connection string, the greatest resource is Carl Prothman's site. Formerly Able Consulting.
http://www.carlprothman.net/Default.aspx?tabid=81
Forum: ASP Apr 3rd, 2008
Replies: 4
Views: 487
Posted By techtix
Re: the title attribute of the SELECT tag is not supported????

2 things:

1. Title is not a w3c standardized attribute for the SELECT tag. Don't use it
http://www.w3.org/TR/REC-html40/interact/forms.html#h-17.6

2. You have an INPUT tag nested into your SELECT...
Forum: ASP Apr 3rd, 2008
Replies: 1
Views: 276
Posted By techtix
Re: Mismatch Error

Look at line 19 in your code.
Set results1 = results1_cmd.Execute

You have initialized results1 as an ADODB.Recordset object.

You problem lies in that you are trying to append a string to the...
Forum: ASP Apr 3rd, 2008
Replies: 2
Views: 506
Posted By techtix
Re: Dynamic ASP Rewrite URL

Unfortunately, this is translated by the webserver as a call to
http://www.abc.com/abc/1/index.html

To resolve this as http://www.abc.com/abc/abc.asp?id=1, you would need the ability to create...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 2
Views: 482
Posted By techtix
Re: help!how to write file into notepad in VB?

The FSO option works great if you are writing to a text file, but it would still need to be opened.

Simple:
Call Shell("NotePad.exe " & FileName, vbNormalFocus)

Better:

Private Const...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 3
Views: 283
Posted By techtix
Re: error! at times

Try using .AddNew rather than .Update
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 1
Views: 155
Posted By techtix
Re: help! how can i cnnect CR10 and vb6?

Crystal installs with a programmable object model. The following code is derived from Crystal 8.5, but should provide you with a general reference to work from.

!! Add references to the Crystal...
Forum: Visual Basic 4 / 5 / 6 Apr 3rd, 2008
Replies: 3
Views: 181
Posted By techtix
Re: First post: How to make dual-paned windows, or docked child windows apps.

You have several options:

1. Use a MDI & MDIChild forms
http://msdn2.microsoft.com/en-us/library/aa267226(VS.60).aspx

2. Use Frames and or picture boxes as panel containers

3. Use the Web control...
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008
Replies: 3
Views: 326
Posted By techtix
Re: help:how to select a record in MSH flexgrid

First, unless you plan on using the hierarchical aspects of the grid, I'd suggest using the standard MSFlexGrid rather than the MSHFlexGrid.

To address your question, you can use the TextMatrix...
Forum: Visual Basic 4 / 5 / 6 Apr 2nd, 2008
Replies: 5
Views: 244
Posted By techtix
Re: Error Handling: Blank Error Description

Just from looking at what you have, you are entering the error handler when no error actually exists (e.g. err.code=0). Try exiting your routine just before the handler.


On Error GoTo...
Showing results 1 to 20 of 20

 
All times are GMT -4. The time now is 12:29 am.
Forum system based on vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
©2003 - 2008 DaniWeb® LLC