Show All Related Tags
Did you mean
TechRepublic Inc. (1,966 results), TechRepublic Pro (23 results), synchronization (16 results), data synchronization (11 results), Challenger Gray & Christmas Inc. (4 results)more...
Show Fewer Related Tags
Did you mean
TechRepublic Inc. (1,966 results), TechRepublic Pro (23 results), synchronization (16 results), data synchronization (11 results), Challenger Gray & Christmas Inc. (4 results), Christian (3 results), chronicle (2 results), Texas Christian University (1 results), chromosome (1 results), asynchronous (1 results)fewer...
Sponsored White Papers, Webcasts, and Downloads
TechRepublic Resources
- sort by:
- Relevance
- Date
- Popularity
- how to execute insert query inVB Script
- i have written a the follwing code in vb scriptand it shows the Error "too few parameter expected 1 80040E10how ever this code when written in VB run smoothly' open database dim idim filenamedim RNOdim restnodim fi=1Set con = CreateObject("ADODB.Connection") Set cmd = CreateObject("ADODB.Command") set rs = CreateObject("ADODB.Connection") set rst=CreateObject("ADODB.Connection")...
- Discussion threads 2007-10-18
- Query?
- hi,How to Split the Microsoft Word Document pages?pls sent the Sample codings.Thanks to Abbas Zawawi and googleA pagebreak is nothing more then a special ASCII character. Use the CHR Character Function to insert.Some of the more commonly used ASCII codes:Chr(9) = tabChr(11) = manual line break (shift-enter)Chr(12) = manual page...
- Discussion threads 2007-05-08
- Windows script escape character.
- Hi,Does any one know if there is such a thing.I want to create a script with this inobjshell.run "net localgroup mygroup "mydomaindomain users" /add"But it does not like the " around the domain users, I always get an expected end of statement error. Is it possible to escape it.I...
- Discussion threads 2007-04-24
- Quickly List Locked Out Domain Accounts
- My company has approximately 300 domain user accounts. Rather than wait for everyone with a locked-out account to submit a HelpDesk request, we would prefer to just go through the all the accounts first thing in the morning and re-enable those that need it. However, this can be very tedious...
- Q&A 2005-11-01
- Error 3075 due to apostrophe
- I am using Access VBA to create a recordset. The code works fine until I try to read in a field containing the name O' Donnell. I get the above error due to the apostrophe. My code to open the recordset is: strStaff = "SELECT * FROM...
- Q&A 2005-05-26
- VBScript to invoke URL?
- Hello,I searched the forums for a possible solution but didn't find one. I am trying to figure out if there is a way to use a vbscript to open a URL link on a server. The purpose of this would be to register the server with another server...
- Q&A 2004-12-07
- Step-By-Step: Create inline bar charts
- Combine visual elements in your Access reports with this bar chart trick.Here's a way to combine the visual elements of a bar chart with the text elements of your reports: Generate a horizontal bar chart based on a value that appears in your report. For instance, if you're reporting on...
- Technical articles 2003-11-24
Additional Resources
- VBS swap ftp servers on connection timeout
- HiI have a vb script to upload files to an ftp server - works very well, but the next stage of development is to be able to automatically switch to a second mirror server if the connection times out (eg server dead, WAN down etc). The part of the...
- Discussion threads 2007-01-15
- How to generate random letters in vb6.0
- Hi Just wondering how I would generate random letters in VB 6.0?CheersMarkUse Rnd to get a number from 0 to 1. Multiply by 25, add 1, round to nearest integer. Convert 1 to A, 2 to B, etc.Mark, try this out.....Private Sub MakeRandomDim theNum As DoubleDim theUpper As StringDim theLower...
- Q&A 2006-05-25
- File Handling - Perl
- Hi, I have written a code to count the no. of lines, words and characters in a file. When I execute the xcript, I always get 0 lines, 0 words and charcters equal to the no. of lines.The script is below:#!/usr/bin/perl$l=0;$w=0;$chr=0;open (FILE,"C:/nrk/programming/perl/sample.txt");@arr=;for($i=0;$i
- Discussion threads 2007-04-18
- sending command to slip printer through vb code
- hello i want to send some specific command to printer,such as Release Paper from printer after printing completes....i am using following commands...Open "LPT1:" For Output As #1 Print #1, "LINE Number1" ...
- Discussion threads 2007-01-09
- Kaiser CHR Uses SAS to Give CDC Real-Time Data Access for Vaccine Studies
- Kaiser Permanente's Center for Health Research CHR, founded in 1964, is a non-profit research institute whose mission is to advance knowledge to improve health. The company wanted to ensure renewed funding for research from the Centers for Disease Control. SAS provides real-time access to remote data needed to perform studies...
- Case studies
- Beginner - Crystal Report and VB - Help needed
- Hai,I am using vb6 and crystal report 8.5. I want to pass a parameter to the crystal report from VB. I used the following code from a book I referred. But it shows syntax error. Pl.guide me.crystalreport1.selectionformula="{servmst.mrtcd}='"&wmrtcd&"'"wmrtcd is the variable at run time for the parameter.SYNTAX ERRORIF WMRTCD IS A...
- Discussion threads 2005-06-17
- Our Login script wont run on XP
- Any idea's why this could be happening???Here is the start of the login script:------------------------------------------------@echo offrem use /d after the .scr reference below to get into debug modeRem Detect OS NT or other:NT_XPkix32.exe login.scr:end Exit---------------------------------------------(This is login.scr)---------------------------------------------;cls;TO CHECK FOR RASif @ras>1"RAS, script will not be run" exitendif;WINDOWS 9X SECTIONif @inwin = 2"Windows...
- Q&A 2005-11-24
- Special Character Remover
- Hello!I'm working on a migration from Cobol (85) to Oracle. I convert the Cobol data to ascii but Im having problem with special characters on the original data. I was thinking about developing a spec.char.remover routine on Cobol but, i know is gonna be a pain... Does...
- Discussion threads 2006-04-19
- Invalid procedure call or argument: left
- I am using an ASP page running on IIS6 using VBScript as the programming language. I am trying to display the first part of body text from a freetext field as part of a news headline section on the home page. The code I have is: if not isnull(objRSNews("tblNewsTitle")) or objRSNews("tblNewsTitle")""...
- Q&A 2005-02-02
- I changed my mind
- ~Youare such a tease.What did you do with the old one?Well Max,If you changed your mind, congratulations on your new found surgical skills.Where did you find your new mind?How do you properly dispose of an old mind?Merry Chr
- Discussion threads 2006-12-20
- VB6 ToolTipText
- How do I produce a "wrap round" in the text inputfor the ToolTipText property. Would like to produce a "box" of text not one complete line of text.You may want to try the carriage return vbCr preceeded and followed by ampersand. I've never tried using in this context, but it...
- Q&A 2005-05-13
- Generating random letters in vb 6.0
- Hi allSorry should have explained this in more detail, here's what I want to do.I have one form with 5 text boxes on it and need to generate random letters between A-F and random Numbers between 0-9 For Example: Text box 1 A0, Text 2 B7 Text 3 F9 Text...
- Q&A 2006-05-26
- Locate the executable path using VB.NET
- And for the rest of us, here's the code for VB6For those of us still doing work with VB6 and there are a lot of us, here's how to do this in VB6.In the general declarations section of your code, declare the following Windows API call...Private Declare Function GetModuleFileName _Lib...
- Discussion threads 2006-10-13
- << Previous
- page 1 of 1
- Next >>
