Search results for query: *

  1. M

    Loading ListView through TXT File

    yea but i didn't put all the code here , u right
  2. M

    Running commands on AIX box

    so if u want to execute unix command, you can use Putty software for loggin & executing commands, or you can use socket to connect 22 port ( ssh ) or any other protocols that u want to use for logging , but your commands will be executed on the remote machine , i think you can write some perl...
  3. M

    How to design a multilingual form?

    its a common topic in .NET , you can refer to MCSD ( asp.net or win app ) book , to see whats satellite assembly check it out CodeProject: Satellite Assembly - Multi Languages. Free source code and programming help .NET Localization, Part 2: Creating Satellite Assemblies - O'Reilly Media...
  4. M

    How to design a multilingual form?

    you need to search about satellite assembly
  5. M

    Question Proxy WebRequest

    if you wanna send your data via post method , & each time with a different Proxy server , you need to connect to that proxy server first before posting. i think you don't need to put HTTP:// before ip address , beside that which part does your app hang ? it can be possible your proxy server is...
  6. M

    crystal report database fields blannk

    take a look at this example i have a database that contains a table w two columns in a button i place this code Db3DataSet.Clear() Dim ma As New OleDb.OleDbCommand ma = New OleDb.OleDbCommand("select Name from friends", aa) ira.SelectCommand = ma...
  7. M

    crystal report database fields blannk

    i just leave a field blank , but crystall report is still working , there is no logical reason for being like that , please give us more detail or give some parts of ur source code
  8. M

    3DES symmetric encryption in .net

    hi in this little paper we wanna use symmetric encryption. this type of encryption will be divided into 2 parts : stream cipher , block cipher some of symmetric famous algorithms are : Twofish, Serpent, AES (Rijndael), Blowfish, CAST5, RC4, TDES,IDEA so for doing this job , we need these stuffs...
  9. M

    Save SQL data in xml and retrieve back

    dim m as new dataset m.readxml(server.mappath("mh.xml")) datagrid.datasource = m datagrid.databind write to xml from sql connection dim da as new sqldataadapter dim mm as new dataset da.fill(mm); da.writexml(server.mappath("ohyea.xml")) as easy as piece of cake
  10. M

    password protect

    managed code can indeed be disassembled,however Java byte code can also be decompiled ,Even standard Win32 applications can be readily disassembled by various utilities. so How world developer can be safe from those crackers ?! there is no 100% way for protecting your code ! but i introduce...
  11. M

    Question HTTP POST method in .net

    there is a code that can help u Dim tmpURL As String = "http://somethin.com/?blogID=48613&postID=1572315& blogName=sorkhekhorshid" Dim tmpPostingForm As String = "__EVENTTARGET=" & "&__EVENTARGUMENT=" & " &__VIEWSTATE=/wEPDwULLTE4nMwg2K/kZTZEKIjTCLjN4mol7PQV3o5k5E=" & "&txtName=ngg"...
  12. M

    Question How to use MySQL?

    check out this links MySQL :: MySQL Connectors MySQL :: Connector/Net 6.0 then after downloading Connector/Net you have to include it by add references to your project. i think in this tutorial you can find what you want : VBMySQL.com » The VB.NET-MySQL Tutorial – Part 3 the code that u wanna...
  13. M

    Disable Windows Shortcuts

    if you are new to this topic , go & find some key loggers or spy ware tools , then you can feel what do they do ! they are not your active form in Operation system , but they can find out What window is active right now , where is ur mouse position , what keys are you typing ? & so on for...
  14. M

    Make the contents of a form resize with the form?

    each content on your form has anchor property you can choose it then select all sides , top - bottom - left - right then when you resize your form , every control on your form will be resized according to your form size
  15. M

    Microsoft imagine Cup final result

    hi guys , i wanna give you 2009 Imagine Cup Winners list, it took place at Cairo, Egyp, you can read the software design section & see some innovative ideas that have been accepted by Microsoft corporation . Imagine Cup Student Competition - Explore Imagine Cup
  16. M

    Program to call putty to login into Linux server

    hmmm your source code is fine , but you can't run Putty on Windows mobile cuz its hasn't been developed under WM environment you have to use Pocket Putty PocketPuTTY Homepage have nice day
  17. M

    Question How to protect a database

    as ggunter said , its not a secure way to protect your MDB file w even long password. but its better to put it ! beside choosing a password for your database, Hide your Tables by right click on it , properties then check the hide box. if the attacker found your password , he wouldn't see any...
  18. M

    How to browse Webpage in Intranet

    install IIS , put your script on WWWROOT , if your asp.net is not register , go & register it in CMD ... , type your ip address , for example http://192.168.0.15/webapp/ then you can give it to anybody entire your intranet , hope it will be useful for you
  19. M

    Disable Windows Shortcuts

    its a part of my Keylogger source , you can see the APIs that i used in , its too easy to figure out what to do, you can google the rest of it Imports System Imports System.IO Imports System.Windows.Forms Imports System.Text Imports System.Runtime.InteropServices Imports Microsoft.Win32 Public...
  20. M

    Question JS Function + Checkbox

    hmm yea it was html control , plus it can be impossible but everything is possible ;) <script runat="server"> Sub Page_Load(sender As Object, e As EventArgs) CheckBox1.Attributes("onclick") = "mm ()" End Sub </script> <script language ="javascript" type...
Back
Top