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
D

DJ Matthews

@DJ Matthews
About
Posts
39
Topics
2
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Reading from Comboboxes on a datagrid view (C++/CLI - Windows Forms App in VS2008) [modified]
    D DJ Matthews

    When you have code like this, please wrap the block of code in a <pre> </pre> tags. It makes it easier to read.

    Windows Forms c++ css database winforms graphics

  • VB.Net - Crystal report direct to printer. Missing parameter values [modified]
    D DJ Matthews

    try this:

    crReportDocument.SetParameterValue(ParameterName, Value)

    Visual Basic csharp help

  • VB code partially runs,,Can't see the problem [modified]
    D DJ Matthews

    Do this when you edit your message: <pre> **Your code here** </pre>

    Visual Basic help

  • VB code partially runs,,Can't see the problem [modified]
    D DJ Matthews

    It would be nice if you would put your code in some <pre></pre> tags so it easy to read.

    Visual Basic help

  • dropdown
    D DJ Matthews

    Try this:

    ddlgvSources.SelectedValue = strValue;

    ASP.NET database help tutorial question

  • I don't know why I have this error
    D DJ Matthews

    What is the error you are getting? Just telling us you have an error won't help.

    Visual Basic help question announcement

  • Invalid index. (Exception from HRESULT: 0x8002000B (DISP_E_BADINDEX))
    D DJ Matthews

    Can you show us in code where you are getting this error? I've had this error show up when I use parameters in reports...

    Visual Basic csharp database help

  • Webstats for developers
    D DJ Matthews

    It might help to know what you are already logging.

    Web Development windows-admin question learning

  • I need an ebay program
    D DJ Matthews

    So your basically asking for someone to be able to hack into the ebay database and get this information for you so you can win auctions? Wow. :wtf:

    Web Development php com help

  • Refreshing a part of webSite
    D DJ Matthews

    Link fixed above and try not to use <pre></pre> unless your submitting code of somekind

    ASP.NET tutorial

  • Refreshing a part of webSite
    D DJ Matthews

    Try looking at this Linky[^]

    modified on Tuesday, January 12, 2010 11:28 AM

    ASP.NET tutorial

  • Implementing web service issue
    D DJ Matthews

    Try this:

    private void LoadData\_Click(object sender, EventArgs e)
    {
        DataSet ds = new DataSet();
        UserWebService1.Service1 WebSrvc = new UserWebService1.Service1();
        ds = WebSrvc.YouFunctionHere;
    }
    
    Web Development csharp wcf help question

  • Implementing web service issue
    D DJ Matthews

    Can I see the code you are using to call this web service?

    Web Development csharp wcf help question

  • Implementing web service issue
    D DJ Matthews

    Well, some code snippets would be nice. It would help us help you :) One possibility without seeing your code is that your web service methods are missing the "WebMethod" attribute: VB.NET

    <WebMethod()> \_
    Public Function HelloWorld() As String
        Return "Hello World"
    End Function
    

    C#

    \[WebMethod()\]
    public string HelloWorld()
    {  
        return "Hello World";
    }
    
    Web Development csharp wcf help question

  • Text Cahnging Whith BarCode Reader in TextBox C#
    D DJ Matthews

    Some barcode scanners have the ability to add a delimiter character to the start or end of the string the read will return. You can then check for this delimiter character to see if it came from your reader.

    C# csharp question

  • Project on College management systems [modified]
    D DJ Matthews

    Well, you have 2 choices: a.) Buy a book on JavaFX, get the specs form your teacher, then do the work (if you problems with something, go here[]) OR b.) drop the class and NEVER write another piece of code again.

    Visual Basic

  • Session
    D DJ Matthews

    You may want to try looking at the cache class. It's like a session, but it's application level(from what I've been reading about it) MSDN Link[]

    ASP.NET question

  • Mozilla site blocked by firefox
    D DJ Matthews

    Clicky[^] I just found this in the CP Daily News.... thought this might help. :thumbsup:

    The Lounge com security question

  • Anonymous browser
    D DJ Matthews

    VB6 and VB.net are 2 very different things. Your better off learning VB.net... Watching a VB6 video and trying to code in VB.net will only confuse you.

    Visual Basic tools help question

  • Lost on how you would upload a file in VB.net
    D DJ Matthews

    Ok, I finally figured it out. There is a property called Request.Files, It holds all of the data on the files that are being uploaded to that page. You can then loop through it and save the files to the web server. Code for anyone interested:

    Partial Class _Default
    Inherits System.Web.UI.Page

    Protected Sub Page\_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
        If Me.Request.Files.Count <> 0 then
            Dim I As Integer
            For I = 0 To Me.Request.Files.Count - 1
                Me.Request.Files.Item(I).SaveAs("C:\\some\\path\\Uploads\\" & Me.Request.Files.Item(I).FileName)
            Next
        End If
    
    
    End Sub
    

    End Class

    I'm not sure that's the best way to go about it, but it works! I think I may write up an article about this as I couldn't find this information easily ANYWHERE.

    Visual Basic help tutorial csharp asp-net
  • Login

  • Don't have an account? Register

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