- Strength to Increase Rep
- +4
- Strength to Decrease Rep
- -1
- Upvotes Received
- 5
- Posts with Upvotes
- 4
- Upvoting Members
- 5
- Downvotes Received
- 6
- Posts with Downvotes
- 5
- Downvoting Members
- 3
I'm a student, vice-president and lecture of the open sourced student organization at the Central University of Technology,free state
- Interests
- Programming Skating Rock 'n Rolling baby
- PC Specs
- 2 GB Memory Intel(R) Celeron(R) CPU 900 @ 2.20Ghz 2.19Ghz 32-bit Windows 7 OS (Partition 1) 64-bit Mandriva…
Re: Why do you have to go through the whole interop thing when you can use .NET build-in features to play back audio files? you can use the windows media player object available to you for free, use the DirectX audio or even use the vlc one (although its not easy … | |
I have a proxy generated class file as [System.SerializableAttribute()] { .. .. [System.Xml.Serialization.SoapTypeAttribute(Namespace="urn:issuing_v_01_02_xsd")] public class XXXX { private Nullable<decimal> income; private Nullable<decimal> expense; private String memeberName; ... //Properties section with decoration: [SoapElementAttribute(IsNullable=true)] } in my consumer class I obviously create an instance for this object, set all values via set … | |
Re: Please explain what exactly are using v,n and d for. are they IV's and Keys ? Did you know you can use .NET building Encryption and Decryption algorithms ? [.NET RSA security](http://msdn.microsoft.com/en-us/library/system.security.cryptography.rsa.aspx) Hope you find it useful. | |
I having been working on java web-start applet for serial communication which I now need to integrate and make it invoke able from an ASP .NET webpage / application. I have tried numerous ways of doing this which all have not yielded anything progressive. including but not limited to the … | |
Re: Are you still accessing these view using the same definer that created them ? MySQL uses DEFINER for stored proc's and views and any change to this [may] result in something simalar to that. I personally have not encoutered such but it's worth having a look at MySQL stored procedures … | |
Re: > Database normalization is the process of organizing the fields and tables of a relational database to minimize redundancy and dependency. Normalization usually involves dividing large tables into smaller (and less redundant) tables and defining relationships between them. The objective is to isolate data so that additions, deletions, and modifications … | |
Re: Hi Isaac, you can grow or shrink any .NET control by setting it's hight or width to whichever size using the [Control].Hight and [Control].Width.... Normally, I use the parent control of my control as a base for my resizing. i.e If you had an outter control which uses docking and … | |
Re: Eclipse flavour shouldn't make any difference. Generally, you would just create the config file by right-clicking your file tree then File >> New >> and giving the newly file a .properties extension. From there you can read and write to it as it was a Bean. Ask if anything is … | |
Re: yes it is possible. But you don't need a gsm simcard for that. you have to options which are almost the same. 1. Use your WLAN 2. Use WAN basically any two devices can communicate using Tcp as long the IP address is known to both parties. what exactly are … | |
Re: The problem could be with your host file. Try 127.0.0.1 instead on localhost and see if the same problem still appears. | |
Re: did you8 set the location property of your label to the new Points using your Xaxis and Yaxis ? | |
Re: Have you went through all the classes in those libraries ? There should be a class for controlling the powering up and down of the interface. | |
Hi Any suggestion on how to save an image file into mysql using the .NET api? I tried code similar to this : MemoryStream stream = new MemoryStream(); byte[] imgData; //previously available image in the program Image.Save(stream,ImageFormat.Jpeg);// saves the image into the stream imgData = stream.ToArray(); //now I have the … | |
Re: Well, if you look at the sales reports between 2010 and 2011 in South Africa you'll notice that Android OS is the leading phone O.S. So if you want to invest in anything rather go for Android because It might be here for a while and it covers Smartphones, Tablet … | |
Re: Your link doesn't work. but most probably it will still use the same method you are using now. the only thing you need to be aware is to resolve the server address before you pass the connection string to the connection string build / before you open the connection. | |
Re: for ease and full control over your chat I suggest you develop a protocol for your server/client first. Avoid using the System.Web members. Rather use the System.Net.Socket members and more specifically use the Socket class or TcpListener and TcpClient for server and client respectively. That way if your protocol is … | |
Re: progress or process? and possibly after your enroll button or save button has been clicked | |
Re: I can't go through all your code but here are a few things you may wanna know. >> if two controls are placed on the form in the same location which I assume it is in your case, the container control will be preferred. your best chance in this instance … | |
Re: Its a bit confusing t hear you talking about Binary and memory addresses in the same context in a .NET / C# forum. But say you really had to, as the previous poster has stated you could use the FileStream class to do some basic workarounds with Binary data. But … | |
Re: This is rather embarrassing and disappointing. You have already asked two questions on one project. most of the times it's better to learn from your own mistakes, besides from what I can tell I assume you're a beginner program and probably using VS,SharpDev or some IDE which most probably has … | |
Re: You have to be more specific as to what are you hoping to archive. 1. as Nick has said, you have an option of removing it from the list (if you don't want it to be selected twice), but what difference will it make if it's selected twice as the … | |
Hi I'm not an asp .net developer although I have done web development with php and mysql, I'm more of a software developer for desktop and mobile devices. So this is my first big project with ASP .NET. I have a question with the ASPNETDB database, understand that the database … | |
Re: Hi, why don't you use the building password validation control provided in .NET, which I highly recommend and is easily customizable and quick 2. Anyway if you want to make your own custom one, here is basically what they where trying to do on the class you got, but mine … | |
Re: It depends on your career goals and level of experience with MS products mate. But the most commonly good ones to start at are the 072-....' ones and they come cheap too, and if you are a student registered in an approved institution you get discounts on most of them. … | |
Re: what control are you using? listbox? listview? or what? all of .NET controls that have collection or capable of holding one have a property similar to selecteValues.Count / selectedItems.Cout. Let intelisense be your friend my friend. hope this helps. happy coding :) | |
Re: Sure mate you must be looking for some sort of an algorithm. I do not know what exactly are you looking for but you can always archieve alot with loops. If you exaplain your problem with human english not computer science language. I'll be glad to help you out | |
Hi can anyone help me out here, I did a class working fine but i can't make objects out of it. do i need to include the file that has the class in my new file? with an include statement? say i have this. #file 1 <?php class foo { … | |
Re: You could do the second insert statement inside the while loop. where you said [code]while(rd.Read())[/code] because you know know from that statement the user login was successful. then you could say something like SELECT userid FROM employee WHERE username = [his/her username] then you will have the employeeid. then you … | |
Hi I made a browser game with php and a little bit of java script, the ask a random question, then i dynamically load answers as image links, which the participant should select the correct one, if it is then he will go to the link the image href points … | |