Search results for query: *

  • Users: inkedGFX
  • Content: Threads
  • Order by date
  1. I

    Need Help With Loop

    I am working on a tic tac toe game to learn how to generate a 2d array for the board. I can do this fine my question is how to loop over the board to see if there is a winner or a tie. this is the code I have at the moment, I know there has to be a better way to do this , I am having a difficult...
  2. I

    MVVM Binding Textbox to Class Property in WPF

    I need help binding a textbox to a class property.....I am working in a WPF application using the MVVM design Pattern. I have created a few classes to do this. I have a Customer class public class Customer : BaseModel { private string _customerName; public string...
  3. I

    User Log In System

    I am developing a Office Manager Web Application that will create and keep track of invoices, customers, inventory, employee time and a few other things. I am at a point in the process where I need to log the user in with a username and password but don't really know how or where to start, I...
  4. I

    update databound DataGrid ?

    I have searched Google for an answer but have had NO luck finding an answer to this question. I would like to update a DataGrid which is databound to a database....I have a page that creates a new Invoice..and the user can add items to the invoice ,,so when the user adds a item I create a...
  5. I

    both dropdownlist changes?

    I have 2 dropdownlist boxes on a Asp web page , they are both bound to a database , each one to a different table. I am using linq to sql to get the info from the table and display the results some text boxes.....the problem is when I select one Item from a dropdown ..it seems to get the info...
  6. I

    Ajax ToolkitScriptManager help!

    I am working on a website and one of my pages I would like to use the Ajax CalendarExtender control.....I used nuget to get the ajax toolkit dll installed in my project...but when I try to add the calenar extender or the toolkitscriptmanager to the page ...nothing is added..Im using Visual...
  7. I

    Suspicious Cloud 9 attack

    I installed the Visual Studio 2015 Preview the other day..and ever since I did Norton is warning me of a Suspicious Cloud.9 attack in vbupdater.dll was wondering if anyone knew anything about this? should I uninstall the preview? thank you -InkedGFX
  8. I

    Replace square pixel with round dot pixel

    I am attempting to do some image processing operations....what I want to do is take in a bitmap and replace the square pixel with a round dot pixel....I can iterate the bitmap and get the pixel color, brightness and replace them with another color...but would like to know how to change the shape...
  9. I

    Arrange ListBox According To Company Name

    I am attempting to arrange a listbox according to company name....I have the listbox loaded with peoples names and the company they work for like so example Joe - UPS Tim - UPS Sara - FPL Scott - Coastal Alex - UPS Luis - FPL there will be an unknown number of names in the listbox......what I...
  10. I

    Regex expression help

    I need a regular expression to pull out the team name and score from the below string of text can anyone help with this? Thank You -InkedGFX
  11. I

    Xml has invalid charecters

    I would like to know how to close xml tags if an error occurs. I use a try catch block in a method to write a xml file, the method tries to write data to xml , if an error occurs a error text file is written with the error but the remaining tags are not written..and leaves unclosed tags , is...
  12. I

    List<class> Help

    I need some help with adding either a string array or list to a List<class> what I want to do is this: I am collecting data from a website , on this website there is a header section which has breadcrumb links..I get this data and have it in a HtmlNodeCollection header. from there I would like...
  13. I

    Html Parsing Help Needed

    I am trying to write a small app that gets some data from a website....I am using the HtmlAgilityPack to parse the html. I can get most of the data I need to get because it is formatted in a way that makes it easy to locate. there are a few pieces of data that aren't formatted so well and this...
  14. I

    List<int> Sort

    I have a method that generates 5 random numbers....then adds each to a list<int> ..I need to sort the list in accending order . List.Sort() doesn't seem to be working. any ideas ? Thank You -InkedGFX
  15. I

    Rename file with "+" in filename

    I am trying to rename files in a directory, my method works until the filename has a "+" sign in the filename. is there a way to replace the "+" with a "_" and then rename the file...the code I wrote doesnt work. I commented out the part that checks if the txtnewName text box is blank. if...
  16. I

    Processing Large Xml Files

    I am processing large xml files and need an efficient way to load the xml into memory and save the updates....what I am doing is getting data from web pages each page has 30 or more fields , once I have all the fields the program loads the xml with XDocument load....it then saves all the fields...
  17. I

    HtmlAgilityPack Issue

    I am scraping data from a series of web pages, each page has 50 links for other pages , i load these pages one at a time and collect data from each page, each page has up to 60 fields of data that needs to be collected...this is working fine. My issue is that random fields will not be collected...
  18. I

    Saving a List<Listing> to Xml

    I have a program I am currently working on, I would like to know if it is possible to create a List<Listing> listing being the class that holds the data, there are 62 fields that get pulled from a website . my question is . what is the most efficent way to save this data to an xml file...right...
  19. I

    Regex to Get Date and Numbers

    I am trying to get all the numbers for each date in the Florida Lottery History , I have written code to successfully get the dates and numbers. what I would like to know how to do is format it from most recent date with matching numbers to the oldest date with matching numbers...here is the...
  20. I

    HtmlAgilityPack Help

    I am struggling with parsing a web page using htmlagilitypack.....what I am trying to do is pull links for auctions from each page ..there are 33 pages with 25 links on each ...I can get this far.....my problem is I need to get the auction title and description from each of the 25 auctions on...
Back
Top Bottom