Posts
 
Reputation
Loading chart. Please wait.
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
1
Posts with Upvotes
1
Upvoting Members
1
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
~18.9K People Reached
Favorite Tags

15 Posted Topics

Member Avatar for cpsusie

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 …

Member Avatar for Zack_7
0
12K
Member Avatar for vivek4020

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

0
140
Member Avatar for vivek4020

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). …

0
71
Member Avatar for vivek4020

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 …

0
119
Member Avatar for vivek4020

[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 …

Member Avatar for pr@+#!
0
124
Member Avatar for vivek4020

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 …

Member Avatar for gandora
0
2K
Member Avatar for Diamonddrake
Member Avatar for Diamonddrake
0
395
Member Avatar for vivek4020

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 …

0
89
Member Avatar for vivek4020

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 …

Member Avatar for vivek4020
0
150
Member Avatar for vivek4020

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 …

Member Avatar for jamesonh20
0
91
Member Avatar for lewashby
Re: Mono

[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] …

Member Avatar for vivek4020
0
131
Member Avatar for vivek4020

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 …

Member Avatar for vivek4020
0
89
Member Avatar for makdu
Member Avatar for vivek4020
0
119
Member Avatar for vivek4020

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

Member Avatar for sknake
0
1K
Member Avatar for vivek4020

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

Member Avatar for sknake
0
2K