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 SkipVought 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
  • Order by date
  1. tuzojazz

    bulkcopy

    I'm using sql server 2000 database.
  2. tuzojazz

    bulkcopy

    Thanks Yes, MyBase is the name of my database. I also tried MyBase.dbo.MyTable but it does not work, I get the same error. when I want to try with my own computer using trusted connection (typing -T) it asks me for a password
  3. 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...
  4. 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...
  5. tuzojazz

    replace function with diacritics

    Thanks guys! It works!!
  6. 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!
  7. tuzojazz

    remove items

    Hi: how can I remove drop-down box items? Thanks!
  8. 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...
  9. tuzojazz

    get the most repeated data

    yeah!! It works!! Thanks my friend!
  10. 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...
  11. 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...
  12. 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...
  13. 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...
  14. tuzojazz

    DataGridView Font Color

    Hi: How can I change the font color of just one row in a DataGridView at runtime? thanks!!
  15. 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...
  16. 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!!
  17. tuzojazz

    System.Net.WebException

    Thanks PsychoCoder but I get 2 errors 'KeepAlive' is not a member of 'System.Net.WebClient' 'ProtocolVersion' is not a member of 'System.Net.WebClient' What could be wrong?
  18. 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 &...
  19. tuzojazz

    change Net Framework version

    Thanks!! I have upgraded to visual studio 2005 and now I can use net framework 2.0
  20. 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!!

Part and Inventory Search

Back
Top