CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: GremlinSA

Page 1 of 5 1 2 3 4

Search: Search took 0.16 seconds.

  1. View Post

    Well it's difficult to say exactly why, especially without seeing the code...

    There are plenty of reasons for "Invalid use of Null" including..::

    String manipulation functions, require a String...
  2. Re: [RESOLVED] Pass data from BackgroundWorker to main thread?

    If you need more than just the final result, or regular updates from the worker thread you could also use Delegate and Invoke..


    Delegate Sub InvokeDelegText(ByVal value As String)


    ...
  3. Thread: Random Sort

    by GremlinSA
    Replies
    4
    Views
    154

    Re: Random Sort

    loop through the list and find your item, and place it in the first position, then pass the list to a sort routine that has been set to sort from the second item...

    IE: Classic sort

    For Loop1...
  4. Re: website prompts user and password continously

    IIS 7 has some complicated authentication rules and settings. so some of the deeper questions are:..

    1) "prompts user and password continously" !!

    A: You enter the User & pass and get access,...
  5. Replies
    5
    Views
    346

    Re: profile picture option

    New members have several of the Forum Options disabled, Only once they reach a certain status are these options enabled..
  6. Replies
    2
    Views
    477

    Re: How do you debug a single ASPX file?

    VS has a built in IIS Server that can run the ASP projects.. Thing is however i think you have not setup your project correctly..

    What is your project type???

    Also what Ver of VS are you using...
  7. Re: Active Server Pages error 'ASP 0115' - A trappable error (E06D7363) has occured

    With out knowing what your doing on the specified page, what 'External Object' your using, and the code that's on the page, it's almost impossible to resolve your problem...

    Please provide more...
  8. Re: Changing the query form reference on aspx pages in C#

    In the IDE press Ctrl + H, and enter the text you want to replace and the text to replace it with and click Replace All..
  9. Re: reading from two input tables and writing to a third in asp.net using C#

    If the two tables are both in the same DB then no.. you dont need two connection strings...

    you just have to check each table for the login..

    PSUDO CODE:

    SQLQuery= "select * from table1...
  10. Replies
    1
    Views
    236

    Re: TextBox Return

    There are a number of things you could do.. however we first need to know what sort of final effect you are looking for..

    For starters, pressing enter on a multiline textbox does insert a carriage...
  11. Re: Timer in master page is affecting dropdown elements in master and content pages

    Any action on the ASP is considered user action (the timer tick triggers events just like a user click would), so the browser will collapse the menu because it thinks the user has now clicked the...
  12. Re: How a file can edit itself after the run?

    other problem is that you cannot edit the EXE while it is running... (windows Locks file access to Special access read only)..
  13. Replies
    1
    Views
    494

    Re: VB app to send SMS

    #1: It's the Free to use Edition of VS 2008 ...
    #2: The Demo Source code is written in Vb.Net 2008...

    So as a start YES this is fine for you to start with... There's no reason I can think of that...
  14. Replies
    1
    Views
    207

    Re: How to check numeric data

    You will need to use Javascript to check the numeric input on the client side, however if you want to do it in ASP, it will be checked server side...

    Add the onchange event to the textbox and add...
  15. Re: how to move focus from one text box control to another text box control

    Web forms do not have a settable Focus like Windows forms... however the Tab key will move the focus to the next Focus settable object in the webform (link, button, textbox, etc)..

    Enter will...
  16. Replies
    6
    Views
    1,133

    Re: savesettings...

    Thanks...

    Taken care of the links...
  17. Re: How do you get the selected cell of a gridview?

    Personally i prefer to use the Repeater, as it includes a few extra options by default and also can be easily formatted to show data anyway you please.. It does take a little extra to setup, but...
  18. Re: Possibility of this application? (basic level coding skill and information)

    Hi grapeseed87..

    Please do not repost the same thing over and over, even if it does not appear on the forum immediately.. Because your a new member, certain trigger words in your post put's it...
  19. Replies
    2
    Views
    339

    Re: Problem with parameterized update query

    you've missed matched the parameter names...

    field1 = @value1, field2 = @value2, field3 = @value3

    and then..

    dbCommand.Parameters.AddWithValue("@value1", txtOne.Text) ...
  20. Re: how to make my new vb6 project run in network

    MS SQL Express is ideal for your situation, AND it's free... also it does not need office or MDAC loaded on target machine.. Its the Multi user Server database app version of Access..

    SQL Express...
  21. Re: how to make my new vb6 project run in network

    a few issues here:

    #1) Access does not like multiple connections to a single database.. Multiple write's WILL corrupt the DB...

    #2) Most applications will run from a networked drive as long as...
  22. Re: Permission Denied When Trying To Delete A File

    Then somewhere in the code the file is still held open (or the file is open in another proggy)
  23. Re: [MySQL - PHP] Deleting many rows in a large table

    There is lots of talk on some sites that Updates and inserts are faster than deletes in many SQL database systems..

    try this code (as is for now, because it can be destructive to Data) and see how...
  24. Re: Permission Denied When Trying To Delete A File

    Is the computer on a Domain ??? if the domain admin decided to change some of the access policy's this could cause the sudden failure..

    Is the user using the same account as before ??
  25. Re: Trouble automating scanning using WIA and VB.NET

    Okay ... Lets take this further...

    Instead of passing objects back and forth and making new ones for every loop, lets go the more direct route.. Declare all variables up front, and use the...
Results 1 to 25 of 113
Page 1 of 5 1 2 3 4



HTML5 Development Center

Click Here to Expand Forum to Full Width