Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
Y

Yuvi Panda

@Yuvi Panda
About
Posts
31
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Resolved???
    Y Yuvi Panda

    That was supposed to be funny, okay? Irony, if you will....

    Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://blog.yuvisense.net

    The Lounge css help tutorial question

  • Resolved???
    Y Yuvi Panda

    Become a grammer Nazi:)

    Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    The Lounge css help tutorial question

  • How to get information from .csproj file using xmlserialization
    Y Yuvi Panda

    Well, .csproj is an MSBuild file. MSBuild is an XML format for build files, used from VS 2005 onwards. I guess you'll be better off writing your own parser using System.XML to parse out the Stuff you need from the MSBuild file[.csproj]. More Information is available here. Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    C# csharp xml tutorial

  • class library
    Y Yuvi Panda

    Well, I sincerely hope that you are joking. If you are not, then the number of Namespaces/Classes/Assemblies available is pretty big. And, if you want to list them, the best approach would be opening Visual Studio and hitting F2 to open the Object Browser.... Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp question

  • DOS Commands
    Y Yuvi Panda

    Well, if you just want to execute the commands and exit the command line, you can shell cmd with the /c command line switch. For example, if you want to execute the help command,:

    Shell("cmd.exe /c help")

    That would work in both VB6 and VB 05, though it's not the best practice in VB 05... Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic tutorial linux help

  • Search Google
    Y Yuvi Panda

    And keep your eye on the Address bar while searching... Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic question

  • VB.NET EXE
    Y Yuvi Panda

    Well, It is not possible. Period. Yuvi Panda T 15 Year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp help tutorial

  • Get User Name
    Y Yuvi Panda

    Not sure, but I guess this should help:

    System.Security.Principal.WindowsIdentity.GetCurrent().Name

    Yuvi Panda T 15 Year Old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic

  • Get User Name
    Y Yuvi Panda

    Well, in VB 2005, this single line of code works :

    My.User.Name

    This returns the Name of the User under which the current process is running Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic

  • Searching for files using vb.net 2005
    Y Yuvi Panda

    Well, that's because you don't have enough permission to access that directory. You can just ignore that by moving the Try Block inside the loop, like this :

    Private Sub DirSearch(ByVal sDir As String)

    Dim arrLst As New ArrayList
    Dim _dir As String
    Dim _file As String

    For Each _dir In Directory.GetDirectories(sDir)
    Try
    For Each _file In Directory.GetFiles(_dir, txtFile.Text)
    Try
    arrLst.Add(_file)
    Catch ex as IOException
    Continue
    End Catch
    Next
    DirSearch(_dir)
    Catch ex as IOException
    Continue
    End Try
    Next

    End Sub

    That should fix it. The Continue statements continue the loop into the next iteration, so that exception should be ignored.. Yuvi Panda T 15 year old Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp algorithms debugging help

  • Resizing Images in VB.Net
    Y Yuvi Panda

    Well, first load the Image and then use the GetThumbNailImage Method to resize it. So, if your Image object is named img, then,

    resizedImage = img.GetThumbNailImage(width, height, Nothing, IntPtr.zero)

    Specify the Width and Height in Pixels, and you'll get your New Image in resizedImage with that height and width. Hope this helps. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp com graphics

  • Zip images for upload
    Y Yuvi Panda

    A simple Search on Google would've yielded Results, but off the top of my head, you can use #ZipLib. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp asp-net

  • Recoding voice
    Y Yuvi Panda

    Search the Forums, and use NBass Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    C# question

  • Can visual studio work with a newer .Net Framework version?
    Y Yuvi Panda

    No. It can't. You can't use VS 2005 to target .NET 1.x, and vice versa. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp dotnet visual-studio question announcement

  • Read mails from mail server
    Y Yuvi Panda

    Well, you're looking for a POP component for reading Mail. Here's one I found on Code Project. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    C# help sysadmin

  • Call Java Code From VB.net ?
    Y Yuvi Panda

    Well, You can either use J#. Or, use IKVM to call the Java Code. But, don't expect it to be fast, since you're running a VM on a VM.... Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp java question

  • How to play music files in vb.net applications?
    Y Yuvi Panda

    Well, what you need is NBass. There's a CodeProject Article about it here. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic csharp tutorial question

  • EndOfStream in BinaryReader
    Y Yuvi Panda

    Thanks, but I am reading from a Network Stream, which Does Not support Peeking. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com -- modified at 22:44 Friday 21st April, 2006

    Visual Basic question com help

  • EndOfStream in BinaryReader
    Y Yuvi Panda

    What is the way to check for EndOfStream while using a Binary Reader ? StreamReader has the EndOfStream Property, but there seems to be no equivalent Property in BinaryReader. I am using BinaryReader because I am dealing with Byte Arrays, and sadly, StreamReader seems to insit on reading Character Arrays. And, the Stream I am reading doesn't support Seeking, so we cannot check if the Position Property is equal to the Length... I googled for it, but can't seem to find anything. Any help people ? Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic question com help

  • Move Two WinForm at the same time
    Y Yuvi Panda

    Well, in the Move Event of the Background Form, add this code :

    ForegroundForm.Location = BackgroundForm.Location

    I haven't tested it though, but it should work. Yuvi Panda T Microsoft Student Partner Blogs at : http://yuvipanda.blogspot.com

    Visual Basic question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups