Search:

Type: Posts; User: sharpCode#

Page 1 of 2 1 2

Search: Search took 0.02 seconds.

  1. Replies
    0
    Views
    690

    VS 2019 Async webmethod from frontend

    <System.Web.Services.WebMethod()>
    Public Shared Async Function TestAjaxCall(ByVal url As String) As Threading.Tasks.Task(Of Boolean)
    Using client = New HttpClient()
    ...
  2. VS 2019 ASP.NET Web Control custom checkbox events

    I have a Custom User control that is being used through this project and it seems to render based on the Type field. So the code below ends up returning a System.Web.UI.WebControls.CheckBox but my...
  3. Replies
    7
    Views
    2,316

    VS 2013 Re: MVC for simple site?

    I should add the look and feel will be similar to this as it is the main product site. http://urbanenterprise.com.au/monitor/
  4. Replies
    7
    Views
    2,316

    VS 2013 Re: MVC for simple site?

    Yeh its kind of a basic site. One section has an input that takes an email and when they click the button it stores the address in a database and then it sends them to a page with testimonials.
    ...
  5. Replies
    7
    Views
    2,316

    VS 2013 MVC for simple site?

    Hi guys bit new to MVC and especially ASP.NET. I am trying to create a simple site/landing page(s) with a bit or a parallax feel to it. Would it be best to go with MVC or use Web Forms?

    I am...
  6. Replies
    12
    Views
    1,062

    Re: How to copy text from a web page

    Are you viewing the page in the app using the control? Need a bit more information on what you are trying to accomplish.
  7. Replies
    5
    Views
    1,283

    Re: New Laptop Recommendations

    I have decided to go with an Ultrabook, I don't need it for gaming just programming and working with office majority of the time. So I am keen on something with SSD so I can install the OS, VS 2012,...
  8. Replies
    5
    Views
    1,283

    New Laptop Recommendations

    My current laptop which is my main computer at the moment is the ASUS K72JR - Specs and it is quite heavy and it is about time I upgrade.

    Found this DELL Inspirion which seems quite good. I am...
  9. Thread: URL rewrite

    by sharpCode#
    Replies
    0
    Views
    1,063

    URL rewrite

    I have a number of url's that are all in a similar format too the following.


    page.php?param1=2&param2=5

    Some pages might have 2 and others more. I am unsure how to use RewriteRule to rewrite...
  10. Replies
    9
    Views
    2,779

    Re: Printer advice

    Are inkjet printers a lot slower as well? Also are there any problems that could occur with using re-manufactured toner cartridges?

    Main selling point for me will be cost cause I am only printing...
  11. Replies
    9
    Views
    2,779

    Re: Printer advice

    Yea that first printer has a cartridge for $114~ that is meant to print 5000 pages. That doesn't seem to bad and honestly with the amount of page coverage I will have could push for more. I am happy...
  12. Replies
    9
    Views
    2,779

    Re: Printer advice

    Quality and all of there cartridges seem to do 2000+ pages :D

    Will definitely look into Xerox!
  13. Replies
    9
    Views
    2,779

    Re: Printer advice

    Definitely suggestions, cause I will just buy bw ink cartridges.
  14. Replies
    9
    Views
    2,779

    Printer advice

    I require a printer to print just black and white. Could be printing up from 10-100 pages a day. A friend had a printer in the past that had a great long lasting cartridge could easily print 1500+...
  15. Replies
    1
    Views
    1,400

    5.0 Running from command prompt

    static void Main(string[] args)
    {
    ViewController view = new ViewController();
    view.Run();
    }

    This is the entry point and then I have the following in Run()


    //....
  16. 4.0 Foreach Loop - get index of current string

    string line = lines[i];
    string[] values = line.Split(',');

    if (line.Contains("#"))
    {
    foreach (string val in values)
    {
    if (val.Contains("System"))
    {
    sysCol =...
  17. Re: Game save file, format and etc. for vb .net games - this is a general question.

    kivisoft, while .ini is an option it has quite a number of limitations considering it only has two parts (sections and properties). Depending on the game best option is definitely XML or JSON, which...
  18. Replies
    10
    Views
    1,671

    Poll: Re: [Serious] Family Guy, Simpsons, South Park

    Simpsons is easily my favourite animated sitcom and Seinfeld my favourite sitcom.
  19. Replies
    2
    Views
    1,605

    Re: Bill calculator question

    It might be best to declare them as private at module level incase you need to reuse them in that particular form. Read this MSDN link on how scope and visibility works.

    Also please resolve your...
  20. Re: Game save file, format and etc. for vb .net games - this is a general question.

    Using My.Settings - it is for VB 2005 but should still work.

    Though there are any number of ways to do this depends on what you are loading i guess. But some sort of delimited file would probably...
  21. Replies
    84
    Views
    10,913

    Re: Visual Basic 6.X is the future !

    Does VBA rely on the runtime at all? I imagine that could be part of the reason they want to support it until they make VBA.NET or something.
  22. Replies
    15
    Views
    4,610

    Re: Xamarin vs Native Android

    There's so bloody many it seems! All powerful as one another. First set of games will be pretty simple like pong with powerups and maybe some sort of slots thing. But yeh will need to do some...
  23. Replies
    15
    Views
    4,610

    Re: Xamarin vs Native Android

    Yeh I've read a few objective-c tutorials and I am way out of my depth really just want to understand game theories and patterns before I bother with a language like that.

    So once I've created my...
  24. Replies
    15
    Views
    4,610

    Re: Xamarin vs Native Android

    That looks quite promising! I guess the only benefit of learning native android and native iOS would be that game companies probably would prefer knowledge in those, so would help career wise...
  25. Replies
    702
    Views
    214,042

    Re: VB6 is DEAD!

    Saw a few comments I found interesting in the link. I never got to involved in VB6 though it was the first language I used and still love it. But even now is .NET still feature-less compared to VB6?...
  26. Replies
    15
    Views
    4,610

    Xamarin vs Native Android

    Seen quite a bit of hype about Xamarin. I have sort of begun working on a small project (android application only at first) in native android. And then hopefully will look at porting it over to iOS...
  27. Replies
    702
    Views
    214,042

    Re: VB6 is DEAD!

    Only thing I can see that is a considerable negative about .NET is that you need to install the whole framework even when most programs will barely begin to use a tenth of it. So I think as someone...
  28. Replies
    7
    Views
    5,672

    Re: Sign a pdf using usb token

    If they are not there then you have to do what you are trying an entire different way. Would be best to talk to iText's developers or support group.
  29. Replies
    5
    Views
    1,543

    Re: php services need help

    You can do anything and everything with Visual Studio :) (maybe not everything lol)

    Create a Windows Service project and go from there! There are plenty of tutorials that will help you. They are...
  30. Replies
    7
    Views
    3,580

    Re: Unable to call PHP function in javascript

    This.

    Though looking at your code the JS is validating your form making sure everything is set (Client Side)

    Then if it is you will use the PHP to check the login (Server Side)

    What you are...
  31. Replies
    2
    Views
    1,313

    Re: VB Script failing to run

    Not sure why you are creating a command object? You should only need a connection object then obviously configure everything as needed and then...


    Set objRecordSet = objConnection.Execute(...
  32. Replies
    3
    Views
    762

    VS 2010 Re: Move control on page

    Could you please post your code though here are a few different ways to do it.

    jqueryui draggable example
    ASP.Net User Controls as Static or Movable PopUps
  33. Replies
    7
    Views
    5,672

    Re: Sign a pdf using usb token

    4.1.X to 5.5.X seems like quite a jump. I am sure certain namespaces in that code did not exist in 4.1.X, or if they did they probably have to be used a different way.

    Also could be a pretty silly...
  34. Replies
    3
    Views
    916

    Re: I have problem on my code.

    I think UseShellExecute should be set to true. So the command.exe can execute it. Also try starting the process using


    Process.start(processInfoListener);
  35. Replies
    20
    Views
    4,295

    Re: VBF > Stack OverFlow

    This.

    SO Google description... "Stack Overflow*is a question and answer site for professional and enthusiastprogrammers"
  36. Replies
    3
    Views
    953

    5.0 Re: [RESOLVED] Open a CSV file

    Decided to change bytes to list<string> and then convert it later on.
  37. Replies
    7
    Views
    5,672

    Re: Sign a pdf using usb token

    If you app is APGL should be fine to use the most recent version, but should check the site and contact iTextSharp developers to be sure.
  38. Replies
    3
    Views
    953

    5.0 Re: Open a CSV file

    corpus = new Corpus(locCorpus, system);
    var dir = corpus.location + "\\Systems\\" + system;

    string[] versionFolders = Directory.GetDirectories(dir);

    foreach (string version in versionFolders)...
  39. Replies
    0
    Views
    775

    code hightlight

    string[] versionFolders = Directory.GetDirectories(dir);

    foreach (string version in versionFolders)
    {
    corpus.systems[system].addVersion(version);
    ...
  40. Replies
    3
    Views
    953

    5.0 [RESOLVED] Open a CSV file

    this code doesn't seem to error but it also doesn't print out anything not even the dir at the top (second line)!

    o.O


    class MetricReader
    {
    public Corpus corpus;

    public...
Results 1 to 40 of 79
Page 1 of 2 1 2



Click Here to Expand Forum to Full Width