- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
15 Posted Topics
Re: Assembly code is the faster and lightweight(If written efficiently). People say that C++ code is faster because in most cases and when the program is large, the code optimizer and intermediate code generator of C++ compiler produces more efficient assembly code than those written by hand. If you write Assembly … | |
Hi, I am trying to get data from GetListItems in chunks of 100 so that processing them can be easier. i can specify the row limit like this. <rowLimit>100</rowLimit> But how do i get the next 100 items? Is there any way to skip over the first 100 items? Vivek | |
Hi Everybody, I recently did an iOS project. I did the database part only so i couldn't delve much deeper into the project. It basically does something like this. There is a content management server. There is a nice web based UI through which we add/remove content(Product and its details). … | |
Hi Everyone, I am trying to write a software that can synchronize a folder amongst peers connected in a Wireless Ad-hoc network I have written some code and now i have the IPs of all the peers who wish to sync.(I did this using UDP broadcast. Interested peers will reply … | |
[B]Hi Guys. I am working on my mini project(Intel 8085 Simulator) I am faced with a huge problem How do i store the instruction set?? What i am doing currently is i have made a structure[/B] [CODE]<Serializable()> _ Public Structure inTab Dim iName As String Dim iLen As Integer Dim … | |
Hello Everybody, I have run into a bit of a trouble here I wish to set the background image of a button I have written this XAML [CODE]<Button.Background> <ImageBrush ImageSource="/UIDesign;component/Images/Settings.png" /> </Button.Background>[/CODE] but when i run the application and hover the mouse over the button, the background goes away and … | |
Re: I cant help too but your app sounds like one hell of an app Best of luck | |
Hi I am just learning Java DB Database in NetBeans IDE 6.8 I am following this tutorial [url]http://netbeans.org/kb/docs/java/gui-db.html[/url] The first problem is when creating the database and adding a table to it I was able to create the car_database but when i connected it and expanded the node its not … | |
Hi I am new to Java GUI development I installed the NetBeans IDE I have not used anything other than Visual Studio in my life I have studied Java in school and college and am familiar with it So i was able to create a basic application but don't know … | |
Hi i am new to this I created a masked text box but dont know how to define a mask For example i want the textbox to allow only numbers and maximum size of input must be 4 Another would be that the maximum size should be 2 and it … | |
Re: [B]This is what i understand[/B] [COLOR="Red"]Mono is an implementation[/COLOR] [COLOR="Green"]Monodevelop is an IDE(Like Visual Studio)[/COLOR] [COLOR="Red"]Mono is an alternative to the C# compiler by Microsoft(csc.exe) It has only the command line stuff[/COLOR] [COLOR="Green"]Monodevelop is a full featured IDE[/COLOR] [B]Answer to second question[/B] [COLOR="Green"]If you download Monodevelop, you get Mono+Monodevelop IDE[/COLOR] … | |
Hi I have a database with two tables 1. iSet(which contains data) 2.Table1(which is empty) I have a program that can read from iSet. It uses OleDB Its working properly The problem is that i don't know a thing about writing to a database. The table Table1 has two fields … | |
Re: Right Click On the project >> Add Reference >> .Net >> System.Windows.Forms That should do it | |
Hi, I have a structure declared in C# [CODE]public struct myStruct { int x; }[/CODE] I created a 2D array of structures [CODE]myStruct[,] theStruct = new myStruct[3,3];[/CODE] What is the C# equivalent of the following C++ code? theStruct[0][0].x = 50;?? Please Help Thanks in advance | |
Hi I have a textbox and a listbox. If i write something into the textbox and press the enter key, i would like the content of the textbox to appear in the listbox. What is the best way to do it? Thanks in advance |