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
Jabbar_espania
Posts
-
Hi there. Looking for help on a vb project. -
phone bookHey 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
-
Get value from listbox itemsHere 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
-
Accepting user input and writing it to a text fileWell 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
-
How to send SMS to multiple recipients?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
-
Error coming from a web service call from a windows application clientWell 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
-
creating icons for windows forms under smart device application of VS2008Its 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
-
how to transfer data between formsWell 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
-
BackColor issue with main form and the controlsWell 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
-
*.ico filesWell 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
-
How to convert (string -> xml) with window mobile?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:...........
-
How Should I startHi, 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
-
Cameraon 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 = "\\";
-
SQLCE Connection Problemsyou 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
-
CameraHi 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
-
Question on Web serivce...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