Find USB Flash drive
marcar
Mensajes 111 - 120 de 330 - Ocultar todos
/groups/adfetch?adid=hoep6xEAAABEPnE5clBWpvf1J6ussc4gFSRgCP-avRN4YT0eROC0jw
Find USB Flash drive - Enviarme las actualizaciones por correo electrónico  
El grupo al cual envías entradas es un grupo Usenet. Si envías mensajes a este grupo, cualquier usuario de Internet podrá ver tu dirección de correo electrónico
Tu respuesta no se ha enviado.
Tu entrada se ha publicado correctamente.
 
De:
Para:
Cc:
Seguimiento:
Añadir Cc | Añadir seguimiento | Editar asunto
Asunto:
Validación:
Con fines de verificación, escribe los caracteres que veas en la imagen siguiente o los números que escuches haciendo clic en el icono de accesibilidad. Escucha y escribe los números que oyes.
 
4.  Paul  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 8 sep 2005, 13:12
De: Paul <solde...@gmail.com>
Fecha: Thu, 8 Sep 2005 14:12:58 -0400
Local: Jue 8 sep 2005 13:12
Asunto: Re: Find USB Flash drive

Thx. I am a VB guy and will need a bit to digest the C# code. Sure
appreciate it.

On 9/8/05, Alexandre Brisebois
(www.pointnetsolutions.com<http://www.pointnetsolutions.com>

--

Take care,
Paul

Greater love hath no man than this.
That a man lay down his life for his friends.
John 15:13


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
Creating image with text and reading that text - Enviarme las actualizaciones por correo electrónico  
1.  Richard.Sadler  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 8 sep 2005, 13:13
De: "Richard.Sadler" <r.e.sad...@gmail.com>
Fecha: Thu, 08 Sep 2005 11:13:32 -0700
Local: Jue 8 sep 2005 13:13
Asunto: Re: Creating image with text and reading that text
hey

here is an example:
<code>

<%@ Page language="c#" debug="true" %>
<%@ Import Namespace="System.Drawing" %>
<%@ Import Namespace="System.Drawing.Imaging" %>

<script language="c#" runat="server">

  void Page_Load(Object sender, EventArgs e)
  {
    // create Bitmap image
    Bitmap objBitmap = new Bitmap(600, 60);

    // create the graphics "toolbox" and link to the above Bitmap
    Graphics objGraphics = Graphics.FromImage(objBitmap);

   // create 2 different sized font objects
    Font objfontLarge = new Font("Arial", 24);
    Font objfontSmall = new Font("Arial", 9);

    // color fill the image
    objGraphics.FillRectangle(new SolidBrush(Color.AliceBlue), 0, 0,
600, 60);

    // draw 2 lines of text on canvas
    objGraphics.DrawString("WaaaaaaaaaaaaHoooooooooooooo",
objfontLarge, new SolidBrush(Color.Black), 5, 8);
    objGraphics.DrawString("Cool eh ??", objfontSmall, new
SolidBrush(Color.Red), 10, 40);

    // change Response Type to an image and stream to the browser
    Response.ContentType = "image/jpeg";
    objBitmap.Save(Response.OutputStream, ImageFormat.Jpeg);

    // clean up and go home
    objGraphics.Dispose();
    objBitmap.Dispose();
  }

</script>

</code>

Rich


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
Problem getting UNC Path in ASP.NET - Enviarme las actualizaciones por correo electrónico  
1.  purespam@gmail.com  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 04:28
De: "pures...@gmail.com" <pures...@gmail.com>
Fecha: Fri, 09 Sep 2005 02:28:47 -0700
Local: Vie 9 sep 2005 04:28
Asunto: Problem getting UNC Path in ASP.NET
I am having problems converting a network path to a UNC Path (From G:\
to \\Server\MyGDrive for instance)

I have tried different ways of doing it, with codes from the net that
supposedly should work.

Here is code 1:
*******************************************************
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Text" %>
<%@ Import Namespace="System.Runtime.InteropServices" %>
<%@ Page Language="VB" Trace=true Debug="true" %>

<html>
<body>
<%
        Dim ret As Integer
        Dim out As String = New String(" ", 260)
        Dim len As Integer = 260

        ret = WNetGetConnection("G:", out, len)
        response.write("path: " & out)
%>
<script runat="Server" Language="VB">
    Public Declare Function WNetGetConnection Lib "mpr.dll" Alias _
             "WNetGetConnectionA" (ByVal lpszLocalName As String, _
             ByVal lpszRemoteName As String, ByRef cbRemoteName As
Integer) As Integer
</script>
*******************************************************

And Code 2:

*******************************************************
<%@ Import Namespace="System.IO" %>
<%@ Import Namespace="System.Text" %>
<%@ Import Namespace="System.Runtime.InteropServices" %>
<%@ Page Language="VB" Trace=true Debug="true" %>

<html>
<body>
<%
        Dim sb As New StringBuilder(300)
        Dim size As Int32 = sb.Capacity
        WNetGetConnection("G:", sb, size)
        response.Write("Path: " & sb.ToString)
%>

<script runat="Server" Language="VB">
        <DllImport("mpr.dll", SetLastError:=False, CharSet:=CharSet.Auto)> _
                public shared Function WNetGetConnection( _
                ByVal localName As String, _
                ByVal remoteName As StringBuilder, _
                ByRef remoteSize As Int32) As Int32
        End Function
</script>
*******************************************************

None of these 2 codes return anything at all, just  an empty string.

Am I missing something simple here?

Thanks


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
2.  anbu  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 10 sep 2005, 06:09
De: "anbu" <mania...@gmail.com>
Fecha: Sat, 10 Sep 2005 04:09:42 -0700
Local: Sáb 10 sep 2005 06:09
Asunto: Re: Problem getting UNC Path in ASP.NET


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
3.  anbu  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 10 sep 2005, 06:15
De: "anbu" <mania...@gmail.com>
Fecha: Sat, 10 Sep 2005 04:15:43 -0700
Local: Sáb 10 sep 2005 06:15
Asunto: Re: Problem getting UNC Path in ASP.NET
Hi ALL,

Greetings to you.

This is Anbu from yoganishta Technologi_s

Introduction
Yoganishta serves select IT organizations in select technology areas
It's choice - not chance - that decides where we go

Yoganishta endevours to create choices for your career growth

Yoganishta is a professional team with over 40 man-years of corporate
experience most of which has been in the IT industry. During the
corporate experience, the HR professionals have carved careers for
hundreds of professionals like you. We appreciate technology, business
and human behaviour.

We have it in us to be able to create right choices for you.

Currently for a prestigious client who is a TOP MNC for Bangalore and
Hyderabad Location. We offer a choice for those of you who have the
following profile:

Work Location : Bangalore / Hyderabad

Skills
Job Specification

Should have 3.5 to 7 years of  experience
Should have hands on experience in .NET technologies - VB.NET,ADO.NET,
ASP.NET, C#
Should have worked in COM, SQL, UML, OOAD
Should have good communicaton skill

Please send us your updated CV immediately along with details like Your
Current CTC, You Expected CTC and Time you required to join the
compnay. We have some other requirements with our other clients in
Pune, Chennai, Hyderabad,  Please forward this mail to your friends
interested in change or relocation to Hyderabad or mail us some of your
freinds' no. or mail IDs if possible.

Even if you are not dealt with DOT NET Technology please send your
updated resume. We have opennings for all sorts of technologies.

Write to us, make the right choice.

Yoganishta Technlogi-s

speed, quality, results
 Yoganishta serves best of the IT talented resources

Thankyou
Regards

Anbu
Yoganishta Technologi-s Pvt Ltd.

Chennai - 78
Mobile : 98408 56161
Alternate E-Mail : a...@yoganishta.com


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
Comment on rainbowebs.net - Enviarme las actualizaciones por correo electrónico  
1.  Romi  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 09:15
De: "Romi" <saggar.sa...@gmail.com>
Fecha: Fri, 09 Sep 2005 14:15:48 -0000
Local: Vie 9 sep 2005 09:15
Asunto: Comment on rainbowebs.net
Hello group

i have developed a website of a company i work for, using html,
javascript, PHP, MySQL.
i have developed and designed all most everything of the website
(accept graphical images it has)
The address is  www.rainbowebs.net

Your comments and suggestions are most welcome. But don't be cruel with

me as i am a new to website design and it is my first project.

Thanx
Romi


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
About High Level string parsing in C# - Enviarme las actualizaciones por correo electrónico  
1.  kiplring  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 10:52
De: "kiplring" <kiplr...@hanmail.net>
Fecha: Fri, 09 Sep 2005 08:52:58 -0700
Local: Vie 9 sep 2005 10:52
Asunto: About High Level string parsing in C#
1. I have a data like this.

16;,1,2;;3,4,;5,6;,,

The result what I want is
16 1 2 3 4 5 6( remove all ;,: and each word is seperated exactly one
empty space)

How can I do it?

2. I have a LONG data like this

1,2,3,4, ... , 10000

The function what I want is >> which works like this. It should be much
faster ReadLine() as a string and Split() it.
int a;
longData >> a; // a is 1
longData >> a; // a is 2
longData >> a; // a is 3

I searched it. But I couldn't find any result.
I beg your advice.


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
2.  kiplring  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 10:56
De: "kiplring" <kiplr...@hanmail.net>
Fecha: Fri, 09 Sep 2005 08:56:21 -0700
Local: Vie 9 sep 2005 10:56
Asunto: Re: About High Level string parsing in C#
p.s.
The Long data is saved file containing string data

    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
3.  Narendiran D  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 11:01
De: Narendiran D <narendi...@gmail.com>
Fecha: Fri, 9 Sep 2005 21:31:07 +0530
Local: Vie 9 sep 2005 11:01
Asunto: Re: About High Level string parsing in C#

For the first case u can use the REPLACE() function of the String class.....
but the second question i cannot understand.
 Naren
 On 9/9/05, kiplring <kiplr...@hanmail.net> wrote:


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.
4.  kiplring  
Ver perfil   Traducir al Traducido (ver original)
 Más opciones 9 sep 2005, 16:12
De: "kiplring" <kiplr...@hanmail.net>
Fecha: Fri, 09 Sep 2005 14:12:40 -0700
Local: Vie 9 sep 2005 16:12
Asunto: Re: About High Level string parsing in C#
1. solution
        public void FastTrim()
        {

            string data = "1,2,3,4;,5,;,5";

            data = data.Replace(",", " ");
            data = data.Replace(";", " ");

            string empty = " ";
            while( data.IndexOf( empty) >= 0)
            {
                empty += " ";
            }
            empty = empty.Substring(0, empty.Length - 1);

            while (empty.Length > 0)
            {
                data = data.Replace(empty, " ");
                empty = empty.Substring(0, empty.Length - 1);
            }

            MessageBox.Show(data);
        }

2. usage & solution( it is compiled with vs 2005, int? is a int that
can have the value "null", it is called nullable int)
       StreamReader sr = new StreamReader("test.txt");
       int? temp;
       while ((temp = ReadInt(sr)) != null)
       {
           MessageBox.Show(temp.ToString());
       }
       sr.Close();

       public int? ReadInt( StreamReader sr)
        {
            int intCh;
            char ch;

            string temp = "";
            while ((intCh = sr.Read()) != -1)
            {
                ch = (char)intCh;
                if (ch == ',' || ch == ';')
                {
                    if (temp.Length > 0)
                    {
                        break;
                    }
                }
                else
                {
                    temp += ch.ToString();
                }
            }

            if (temp.Length > 0)
                return int.Parse(temp);
            else
                return null;
        }


    Reenviar  
Debes registrarte antes de enviar mensajes.
Para enviar una entrada, antes deberás formar parte del grupo.
Antes de enviar entradas, actualiza tu alias en la configuración de la suscripción.
No dispones del permiso necesario para enviar entradas.

Crear un grupo - Grupos de Google - Página principal de Google - Condiciones del servicio - Política de privacidad
©2010 Google