Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
J

Jabbar_espania

@Jabbar_espania
About
Posts
16
Topics
0
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Hi there. Looking for help on a vb project.
    J Jabbar_espania

    Hi if you are familiar with Visual basic then it's so easy to creat that kind of software . At first your must to know all atribute . Make a design of data base E-R diagram depand on your requrement. First : you design the diagram and make relation with all entity ( Entity-Relationship Model ) Second : Make form depand on those table you made and relationship of model ( You must to make a table of user name and password and make relation with users ) Then it will be more easy. If You want source code or if you want sample Please write would try to reply you as soon as possible Good luck

    Visual Basic help tutorial announcement

  • phone book
    J Jabbar_espania

    Hey you can do that First of all you need to write program which convert windows mobile contact to xml list and then you can publish that xml file in your website if your website support php need to make sure your script read xml file. if you want I can send you source code for contacts -> xml good luck

    Mobile question learning

  • Get value from listbox items
    J Jabbar_espania

    Here i provide you source code wish that help you : for example if you want to calculate all values of liste item . Dim sum As Integer For Each item As String In data.ListBox1.Items sum += Double.Parse(item) Next textbox1.text = sum It will show total value of Items

    C# question

  • Accepting user input and writing it to a text file
    J Jabbar_espania

    Well I can give you simple idea. I provide you source code you need to modify it. I am having some problem with my computer else I will do that proper code for you . just post you some my old exercise . just put this function on the button click I mean where you want it will save . If you want to save automaticaly you just modify . private void savingtext() { SaveFileDialog savetx = new SaveFileDialog(); savetx.DefaultExt = "rtf"; savetx.Filter = "Texto enrriquecido (*.rtf)|*.rtf"; savetx.FileName = "Log.rtf"; if (savetx.ShowDialog() == Windows.Forms.DialogResult.OK) { textbox1.text.SaveFile(savetx.FileName); } } Wisht it will help you

    Windows Forms csharp help

  • How to send SMS to multiple recipients?
    J Jabbar_espania

    SmsMessage sms = new SmsMessage(); sms.Body = “Write your text here .”; sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123121” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123123123” ) ); sms.To.Add( new Recipient( “”, “123132123” ) ); Msg.Send(); I think you can also try that way Hope it will help you

    Mobile json tutorial question

  • Error coming from a web service call from a windows application client
    J Jabbar_espania

    Well I think You can see right side your project where you can see all class there will be webreference you must to update everytime you make new funcion to execute . The error you said should be not adding correctly the reference of your webservice to your applicacion. If you can execute your program in webservie in xml you will see the result with invoke button . If you write details or send me your application wish could solve your problem .. regards jabbar

    Windows Forms

  • creating icons for windows forms under smart device application of VS2008
    J Jabbar_espania

    Its really so simple . If you have I can maker first make icon you want with 16*16 pixel go to properties of your project Then in Aplication you will see Resource there you will get ICON and examin button from there select your icaon what you made before . Thats all Hope it will help you

    Windows Forms

  • how to transfer data between forms
    J Jabbar_espania

    Well I can say if you make a class which is global then can tranfer parent form to child form . The easiest way is example if your form1 have textbox1.text = "....." and if you want to show that string in another form name form2 it would be label1.text=form1.textbox1.text then it would show the string have in your textbox1.text Hope it will help you

    Windows Forms question tutorial

  • BackColor issue with main form and the controls
    J Jabbar_espania

    Well if you want that I can give you little source code wish that help you : I give this code here in vb 2005 it's almost same in c# . dont know where you want to use visual basic or c# Private Sub lblbgcl_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblbgcl.Click Dim mybackcolor As New ColorDialog() If mybackcolor.ShowDialog() = Windows.Forms.DialogResult.OK Then Me.BackColor = mybackcolor.Color Me.MenuStrip1.BackColor = nothing '' Write here what you want Me.Groupbox1.backcolor=nothing End If End Sub

    C# help question

  • *.ico files
    J Jabbar_espania

    Well I can give you advice If you are using visual basic . net Framework There you can make icon for you .exe files Here I give you a link they have licence about you can free download there Icons for windows applicacion or what ever you want . The link : miloszwl.deviantart.com

    C# csharp help

  • How to convert (string -> xml) with window mobile?
    J Jabbar_espania

    I give you here complete example for xml in windows mobile : It would show you in listbox all title and link of xml > using System.Net; using System.IO; using System.Xml; XmlTextReader reader = new XmlTextReader(filename ); while (reader.Read()) // if stream readed { XmlNodeType nodetype = reader.NodeType; // checking nodes every type if (nodetype == XmlNodeType.Element) { if (reader.Name == "title") { listBox1.Items.Add("........................"); listBox1.Items.Add(reader.ReadString()); } if (reader.Name == "link") { listBox1.Items.Add(reader.ReadString()); } } } reder.Close(); xml : Newgame http:........... Newpc http:...........

    Mobile question php mysql xml tutorial

  • How Should I start
    J Jabbar_espania

    Hi, At first you need good programming skill well I can say if you have more or less good idea on visual studio 2005 or visual studio 2008 (compact Framework ) the best for Windos mobile programming . For symbian I can say best NETBEANS . If you are familiar with Java I am sure you heard about that . you can see article on CODE PROJECT there are so far good tutorial help and Also can see on MSDN microsoft . Wish Help . If you want help dont be hesitate

    Mobile career learning

  • Camera
    J Jabbar_espania

    on which operating system you are compiling this project ? You can compile in VS2008 and save the exe in your mobile divice and can run from there put one botton on your Form which will active your camera on mobile device and later can see that on My documents on mobile devie . Hope it helps cc.DefaultFileName = "Picture .jpg"; cc.InitialDirectory = "\\";

    Mobile question

  • SQLCE Connection Problems
    J Jabbar_espania

    you should to add the data base trough add elements there you can see your data base and can execute program to compile if you want to compile trough mobile device add the data base in mobile device Thanks

    Mobile database algorithms question

  • Camera
    J Jabbar_espania

    Hi You can easily work with windows mobile camera on your appliacion add reference of microsoft using Microsoft.WindowsMobile.Forms; CameraCaptureDialog cc = new CameraCaptureDialog(); cc.Mode = CameraCaptureMode.Still; // if you wanna take still photos cc.StillQuality = CameraCaptureStillQuality.High; put file name as you want to save. If you need more help reply here Good luck

    Mobile question

  • Question on Web serivce...
    J Jabbar_espania

    You can precompile trough desktop project too I give you example how you can compile trough webservice and desktop application Webserive :: on the service.cs [WebMethod] public int sum (int a , int b) { return a + b; } and now run the webservice on local host there you will see input textbox1 and input textbox 2 then invoke button you will see the result on xml page Compile trough desktop applicacion : public partial class Form1 : Form { applicationname.Service ws = new localhost.applicacionname.Service(); // this conect you to webservice but dont forget to add web reference (which display you when you will run the webservice) public Form1() { InitializeComponent(); } private void button2_Click(object sender, EventArgs e) // make button on your form and put three txtbox // { int a = int.Parse(textBox2.Text); int b = int.Parse(textBox3.Text); int result= ws.sum(a, b); textBox4.Text = result.ToString(); } Hope it will help you , good luck

    C# question csharp windows-admin xml
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups