Search results for query: *

  • Users: Craig
  • Content: Threads
  • Order by date
  1. C

    Returning a multidimentional array

    Is it possible to return a multidimensional array from a function? If so, how? If not, what would you suggest as a workaround? Thanks EDIT: nvm, got it.. i feel stupid now
  2. C

    write an XSL document at runtime

    Hi, the problem is i want a Gridview to show just 1 (dynamic) record from an XML document. Is there a simpler way than creating a new xsl document during runtime and linking it to the xmldatasource? If so, how? If not how do i create an XSL document at runtime Thanks
  3. C

    filtering the records in a Detailsview

    Detailsview not gridview Is it possible to change what item is shown in a detailsview object from getting a value from post? eg if the url is detail.aspx?cat_no=0002 how can i set the detailsview to display all of 0002's details
  4. C

    Custom buttons on windows forms

    Hello there, i have seen an app that was made in vb.net and i was wondering how to emulate this effect. The images below are what I am trying to create, and what I suspect might be quite difficult is that the mouse over and mouse down effects differ in relation to their respective background...
  5. C

    Web Browser remove scrollbar and do autoscroll?

    Ok I have a web browser on a windows form and theres a couple of things that i need to do but i don't know how. I need to be able to remove the scrollbars from the page and more importantly.. Once the data on the page is loaded, scroll to the bottom of the page
  6. C

    Remove an element from an array

    Hi all. I have an array of a class and I need to be able to remove a certain element from the array Example. I created my class that includes details like: ID number FirstName Lastname etc etc then i declare the class in my main form as public cl_competitors(20) as competitors Now if i...
  7. C

    Structure trouble

    Hi, I am using a structure to create 'records' which is read/written to a text file, all this works fine. The problem i am having is that if the user removes a customer from the structure, I will need it to re-use that customers ID number (should be unique) for the new one added. I'm sorry if...
  8. C

    String validating

    Hi All. I need to be able to check if a text box is containing only the following characters: 0-9 . / \ : - + and space But im not sure how to do this :confused: Thanks in advance
  9. C

    Reading and Parsing a .txt file (Tab seperated variables)

    Hi, I have a text file that I need to read from here is a small section of it: Basically, I want to use a multi-dimensional array which will be populated on the form's load event. For example VarArray(0,0) will be 'id' etc The main issue is being able to seperate each piece of info when it...
  10. C

    String help

    Hi all, I need help with the indexof function, basically what I need it to do is when I find the first indexof, loop through until all instances of that char/string Ex: Say a user inputs: - "Hello, my name is craig" into textbox1 - "a" into textbox2 I need the program to add each index of...
  11. C

    Extracting data from HTML

    Could anyone provide me some info on how to extract data from a web page For example, say I want a program that will check stocks from www.nasdaq.com I need the program to be able to extract the section with: NASDAQ 2249.72 -17.74 0.78% DJIA 10972.28 -33.46 0.30%...
  12. C

    HScrollBar

    Could anyone give me some info on using the HScrollBar, I need it placed in a panel which will then scroll left/right to reveal images when it is used. Thanks!
  13. C

    Drag and dropping

    Hi all, I am creating a program where there are a number of pictureboxes on the form. What I need it to do is when the user dragdrops the picturebox onto a panel it will create a new, thumbnailed picturebox within that panel. I searched MSDN and found this on dragging and dropping images, but...
  14. C

    Get data from a .txt file

    Basically I have 12 textboxes, and I need the program to be able to save the text that is stored in each box so that, when the form is closed and opened again, it will still have what was typed in each textbox Any help is appreciated
  15. C

    Hot keys when form isn't in focus

    Hi, I am creating a program where I need it to be able to use hotkeys. Eg. When I press "ctrl+F1" I need it to run some code whether the form has focus or not. After searching this forum, I found this thread. http://www.vbdotnetforums.com/showthread.php?t=7471 However I can't understand...
  16. C

    Mouse clicking

    Is there a way in Visual Basic .NET to make it so the program will click in a certain position, without the user having to do it (obviously) Thanks in advance.
  17. C

    Diagonal Lines

    This may be a very obvious question, is it possible to draw a diagonal line onto a form :confused: Any help would be appreciated.
  18. C

    Problems Compiling

    I recently built an application in VB .NET and when i try to compile it in the Visual studio command prompt using vbc C:\location\form1.vb /out:form1.exe /t:exe But then I get a long list of errors and it then says: Any help would be greatly appreciated!
Back
Top