Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: tuzojazz
  • Content: Threads
  • Order by date
  1. tuzojazz

    bulkcopy

    Hi guys: I'm using SQL Server 2000 I'm trying to execute bcp in a DOS window with different syntax bcp MyBase..dbo.MyTable out c:\Bulktest\test.txt -c -Uuser1 -Ppass1 -SMyServer bcp MyBase..MyTable out "c:\Bulktest\test.txt" -c -Uuser1 -Ppass1 -SMyServer bcp MyBase..MyTable out...
  2. tuzojazz

    trouble with varchar(max)

    Hi guys: I have this line declare @v varchar(max) and I get this error Msg 170, Level 15, State 1, Line 1 Line 1: Incorrect syntax near 'max'. I'm using sql server 2005 and I have read I must set compatibility level at 90 but when I type this code EXEC sp_dbcmptlevel 'MyBase', '90'; I get...
  3. tuzojazz

    replace function with diacritics

    Hi guys! I have this code PRINT REPLACE('EÉ', 'É' , 'X' ) and I get this XX and I want to consider diacritics to get EX how can I do it? Thanks!
  4. tuzojazz

    remove items

    Hi: how can I remove drop-down box items? Thanks!
  5. tuzojazz

    using a template that is in the server

    Hi: I have several computers that work with a Dreamweaver Site all of the computers edit local copies, then upload to the server when ready. I have created a template and I uploaded it to the server. I need all the programers on my network make aspx files in their local computers using this...
  6. tuzojazz

    get the most repeated data

    Hi: suposse I have this table named "Employees" Employees ----------------------- Emloyee Country ------------------------- John Italy Geroge Germany Steve Mexico Jim Germany Brian Germany Richard Italy I want to get the countries in order where are...
  7. tuzojazz

    API wininet InternetGetLastResponseInfo

    I'm programming a ftp application to download files from a remote server using wininet API. When a download fails I want to get the error usign this function Declare Auto Function InternetGetLastResponseInfo Lib "wininet.dll" _ (ByRef errorCode As Integer, ByVal buffer As StringBuilder...
  8. tuzojazz

    API wininet PInvokeStackImbalance

    Hi: I'm trying to call "InternetOpenA" function which is in "wininet.dll" This is my code 'Declaration of API Declare Auto Function InternetOpen Lib "wininet.dll" Alias "InternetOpenA" _ (ByVal sAgent As String, ByVal lAccessType As Long, _ ByVal sProxyName As String, _ ByVal...
  9. tuzojazz

    ftp WebClient Class System.Net.WebException

    Hi: I'm writing an application to downloads files from a remote server by ftp using WebClient Class My code is something like this --------------------------------------------------------- Try Dim remoteFile As String = "ftp://187.153.7.42/songs/TRACK_NO01.MP3" Dim...
  10. tuzojazz

    DataGridView Font Color

    Hi: How can I change the font color of just one row in a DataGridView at runtime? thanks!!
  11. tuzojazz

    http user and password

    Hi: I'm trying to access a web service thas is in a remote server. The remote server has user and password on http protocol and I get an error when I access the web service by code. when the remote server does not have http user and password the web service works well. My code is something...
  12. tuzojazz

    Hierical Flex Grid and MSH Flex Grid

    Hi: How can I get the controls Hierical Flex Grid and MSH Flex Grid In visual basic. net? Thanks!!
  13. tuzojazz

    System.Net.WebException

    Hi: I'm writing an application which downolads a file from a remote server by FTP this is my code ______________________________________________________________________________________ Dim ftpURI As String = "ftp://205.134.48.217/" Try Dim filename As String = ftpURI &...
  14. tuzojazz

    change Net Framework version

    Hi! I have installed Visual Studio 7.0.9500. It compiles with Net Framework 1.0.3705 I have installed Net Framework 2.0 How can I set Visual Studio in order it compiles with Net Framework 2.0? thanks!!
  15. tuzojazz

    FTP application

    Hi: I need to write a FTP application to download a file from a remote server. I found the "WebRequestMethods.Ftp Class" in microsoft.com but there are not examples. How can I use this class or how can I write my FTP application? Is there another class that can I use? Thanks!
  16. tuzojazz

    make a copy of database

    Hi: I have installed sql server 2005 express and SQL Server Management Studio Express How can I generate a database from another copying the structure and data? For example I have a database named Customers, I need to make a copy of Customers named Customers2. Customers2 also will be attached...
  17. tuzojazz

    run a new server registration

    Hi: My pc is windows 2003 server and I have installed SQL SERVER 2005 EXPRESS. From Management Studio I made a New Server Registration with Windows Authentication. I can't run the new server, its icon appears with a white dot (instead of green when a server is running or red when the server...
  18. tuzojazz

    retrieve the data included in DataTable

    Hi: I'm programing an asp.net (VB code) which calls a web service function which returns a DataSet. A DataTable is included in the DataSet. How Can I retrieve the data included in the DataTable? can I use something like an OleDbDataReader to read stream of data rows? Thanks!
  19. tuzojazz

    web service public variable, Compiler Error Message: BC30456

    Hi: I have programmed a Web Service called Customer.asmx. This is the code: <%@ WebService Language="VB" Class="Customer"%> Imports System.Web.Services <WebService(Namespace:="DigitalSnd1")> _ Public Class Customer Public Name As String <WebMethod()> Public Sub Custname()...
  20. tuzojazz

    wsdl problem

    Hi: I uninstalled net Framework v1.0.3705 from my computer and install net Framework 2.0 But now, when I try to run wsdl.exe on the cmd window I get this error "To run this application, you first must install one of the following versions of the .net Framework" v1.0.3705 I use wsdl.exe to...

Part and Inventory Search

Back
Top