Search results for query: *

  • Users: red
  • Order by date
  1. R

    My First day with C#

    Was thinking if you did something like String username ; String password; If(username =="" || password =="") { Console.Writeln("Username or Password not correct"); } else { // do mysql connection } Forgive me am coding from mobile.
  2. R

    Building xss Vulnerability app. needing Ideas

    Ok I recently moved to penetration testing. I'm trying to design an application in c# that could detect the anomaly for me (xss) while I fix it. So am completely new to this. What do I read up to design something like this. Like what library do I need? Kindly let me know
  3. R

    gridview question

    I'm trying to make a result page using c#, asp.net. Now here is what I want it to display data in rows like a search, and displays results using a search criteria Suppose I type oil and gas, it displays every one selling oil and gas instruments, oil field, it displays, as far as they are saved...
  4. R

    Unable to connect to specified host

    This Code gives me this error Unable to connect to specified host my Code goes like this using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using MySql.Data.MySqlClient; namespace ConsoleApplication3 { class Program {...
  5. R

    design a computer based testing program ?

    Good morning, Like the subject says. How do we design something like this, any ideas pls
  6. R

    how do you connect to a Mysql Server on Webhost

    Ok suppose the remote ip of my mysql database is 62.1.138.51, how do I use this connection string to connect to it I have something like this Driver={MySQL ODBC 5.2 ANSI Driver};Server=62.1.138.51;Database=myDataBase; User=myUsername;Password=myPassword;Option=3;
  7. R

    how do you connect to a Mysql Server on Webhost

    Looking at it now, I presume it allows for data binding also? Pls let me know.
  8. R

    how do you connect to a Mysql Server on Webhost

    Good evening, I have cpanelx, hence I have this problem, am trying to make a program that could run on LAN, but the application should connect to a mysql database on a Cpanel X server (webhosting) how do I go about this? Possible snippets could be helpful.
  9. R

    Thumb Recognition Application?

    Good evening everyone, Been trying to do something like this , except i have been having problems on where to start and where to stop... lol... Ok it goes like this, i am trying to make a thumb recognition Application in c#, the program is supposed to recognize the thumb and print it on the...
  10. R

    Simulation and Modelling software

    Ok, like the name states, I wonna do a quick start on something like this, but if I am to design something like this I would need some libraries and all what not to do this, where do I start to make an I which is gonna be open source. I do need help here.
  11. R

    Console App, Using TextBoxField to Send Email.

    Ok good evening here is what i am trying to acomplish, i have a console application now i addeda windows reference to it and it has this 'using System.Windows.Forms;' now i want to do something again like add a TextBox or RichText to the app so i can output messages like this to send email...
  12. R

    using codedom to compile dll + other files(c#)

    Using codedom to compile different dlls + c# files, has been one of my major issues for sometime. How do I get to use codedom to compile different c#files I was thinking I use referenced aeemblies or it sort of. I need some sort of help, please do help me as soon as possible
  13. R

    Question hooking API functions?

    Ok I read up something yesterday, hooking API using interops? I presume its a good example to begin with, another thing, can I use asm in C# programs? Kindly let me know.
  14. R

    Question hooking API functions?

    Ok I want to hook wininet.dll with function InternetOpenA I do something like [DLLImport("wininet.dll")] now am lost, how do I hook the function? Please I need a source code example.
  15. R

    Question hooking API functions?

    Hello, I have quite some experience with C#, can make webforms, I recently built a web browser with C# and the rest. But I decided to step up to something higher. I want to learn how to hook API with C#, I haven't seen examples on this before, source codes and the rest. Please I would be...
Back
Top Bottom