Delete Dynamically Allocated Array?
Jun 21, 2010
1) How to Delete Dynamically Allocated Array?
a) delete a[]
b)delete a[0]
c) delete[] a
d)delete [0] a
My answer a.Correct or not
2)Can we use DML statement in function?
a)Yes
b)No
c)Temp tables
d)None
My answer d.Correct or not
I read somewhere the diff b/w stored proc & functions?One of them is Stored Procedure returns more than one value whereas functions return single value.When the interviwer ask me the question,i asnwered includg my above point,but he told me no SProc do no return any value.
4)Can we return value from SPROC?
a)No
b)Using O/p Parameters
c)Using return statement
d)B & C Both
ANSWER---??
5)Views are complied or not
a)Yes
b)No
c)Partially Compiled
d)None
ANSWER---??
6)Can we user specific data in application? My answer no.Me correct 7)Diff b/w primary key & UNIQUE key excepts one diff primary doesn't allow NULLS whereas unique does.One diff i told we can craete only one primary key for a table,whereas a table can have more than one unique key.
ANy more differences?????
8) Can we call a fn. widout dbo? I ans NO. Me correct or nt
9) Four types of files created by assembly?
10) What is candidate Key?
11)Can we implement CAS in config file? I ans YES. Me correct or nt
12) dim txt as textbox
dim txt as new textbox
Both the above statements are same or not.If nt wats d diff? I ans both are same. Me correct or nt
13)CAS is part of inbuild framework? I ans YES. Me correct or nt
14)Can constructor call itself?
15)Accept method applies to
a)Textbox
b)Listbox
c)Combobox
d)None of above MY ans a. Me correct or nt
View 4 Replies
ADVERTISEMENT
Aug 9, 2011
I am pulling data in from a query, where three of the columns are being put into the same Listbox.Does anyone know of a sort statement to sort it alphabetically after inserting the data into a listbox, or would I be better putting the results of my query into three arrays and then putting them the arrays in, in the order I want them in.
View 2 Replies
Feb 11, 2012
Once i allocate arrays is the memory allocated for them immediatlyy or once i add data to the array? like say i create an integer with 400 million arrays (lol) would visual basic allocate memory immediately for each of the 400 million arrays or once there is data allocated to one of the 400 million arrays, say when i put the number 4 in the 100th array.
View 1 Replies
Nov 11, 2011
I'm reading data from Excel and processing the file line by line.
If the process succeeds then I need to delete that row from Excel and save it. If it fails, then continue with the next line and so on.
Initially I used OLEDB to read data from Excel, but by using this I cannot delete rows.
I think we can solve this by using COM component.
View 2 Replies
Jun 22, 2012
How do I find the memory or CPU used by my software?
View 8 Replies
Jul 6, 2011
I have a form that has an array of dynamically created labels of varying size based on a search from a database. The problem I'm having is that when the user searches for a different term, it looks like some of the labels don't get new values. Here's my code for adding the labels:
If rdr.HasRows Then
ReDim Preserve entities(cnt)
While rdr.Read()
[Code].....
I've tried for loop over the controls in panel1 to dispose of any still on there in both the page_load and page_init subs, but neither had an effect. I don't know if it might have something to do with controls having the same IDs after the postback.
View 2 Replies
May 12, 2011
In the context of the CLR in .NET how is stack space allocated and what is it typically limited by? For example: Can any given thread continue to add to the stack until memory runs out? If not; how does the CLR decide how much space to allocate and can it change its mind?
PS: Just to put some context on it this all started from a discussion on how to build a method that will calculate the Fibonacci sequence and one of the suggestions was a recursive function.
View 1 Replies
Feb 10, 2012
ive got code like the code below that creates textboxes dynamically. I want to be able to click a button and delete all of these textboxes i make, however im not sure how to do this. When i tell the program to remove the TBIndex control it does not do anything. The only way i get it to work is if i put the command in the same sub as this code. This code runs in a loop by the way.
So if the loop runs one time and creates the TBIndex control and i have a line of code right after to remove the textbox, then it does not show up on my form. But if i put the command in to remove the textboxes somewhere else and run the code the loop runs abunch of times and creates all teh textboxes and the loop is complete, then the remove control part is called and nothing happens. I just need a way to clear all the textboxes off my form with like a button. I also tried painting over the textboxes with a big grey rectangle but that dindt work.
TBIndex.Width = 54
TBIndex.Height = 20
TBIndex.Visible = True
[Code]....
View 2 Replies
Mar 18, 2009
I'm creating a PDF file on the fly using ITextSharp and ASP.NET 1.1. My process is as follows -
Create file on server Redirect browser to newly created PDF file so it is displayed to user
What I'd like to do is delete the PDF from the server as soon it is displayed in the users browser. The PDF file is large so it is not an option to hold it in memory, an initial write to the server is required. I'm currently using a solution that periodically polls for files then deletes them, but I'd prefer a solution that deletes the file immediately after it has been downloaded to the client machine. Is there a way to do this?
View 4 Replies
Jan 20, 2012
I am using zedgraph to draw bar chart in my vb.net project. The bar base is Y (meaning all bars are horizontal). I have 9 fields for user to choose from, and once a user clicks a field, one corresponding bar will show. Of course, the user can click off the selected field to remove the corresponding bar item. I can do this. The basic idea is to get all bar items and set their visibility according to user's selection. My problems is that I want to have a textlabel next to each bar (this text label is different from legend)so I set the yAxis.Type=text. There are two problems:
1) When I add bars, I still need to specify x and y value. How do I set y value in this case to make sure bar ally perfect with its text?
2) As far as I know, I can add text labels by an array as the last line code shows. But obviously this only works for bar chart with fixed bars. In my case, the number of bars and also the order is changing based on user selection. How can I set text labels?
[code...]
View 1 Replies
Nov 15, 2010
I have to retrieve same amount of datas from a variable number of clients in an arraylist. I know I can put arraylists in arraylists but would be easier to get one arraylist for each client dynamically declared.
Ex: alClients (XXX, YYY, ZZZ)
for i as integer = 0 to clientsNumber -1
Dim nameVariable = "al"+ alClients(i) ' = alXXX
Dim nameVariable as New arraylist()
...
Next
But it seems not to be possible to do that so is there a way to do it? By surcharging constructor of the Class New ArrayList(), ok but how??
View 3 Replies
Jun 30, 2010
how to assign a 1-dimensional array value I get from a function directly into an element in a 2-dimensional array. An example would be
Dim Results(7)() as DoubleResults(0) = myFunction() ' returns an array with 5 doubles What is the correct syntax for this, if any? I'm still having a bit of difficulty switching over from Python arrays, which work a lot better, it seems.
View 5 Replies
Jun 24, 2012
How to define ,dynamically initialize and print 3D array in vb.net ?
I have this code that return a 3d array and I have errors telling me the there is an argument out of range [code]...
View 1 Replies
Jul 2, 2009
For example, when I click on the btn(5) I would like the textbox1 says: "5"
[Code]....
View 3 Replies
Apr 11, 2011
I created a custom class for a custom object. I instantiate like so[code]...
Now, I have two problems. First, right now this is just overwriting the same object properties, again, and again. I need to somehow dynamically name the object. Then, I need to place these objects in an array so I can iterate through them...
View 1 Replies
Mar 27, 2012
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim rgen As New Random
[Code].....
View 14 Replies
Apr 30, 2009
I'm calling a webservice that is returning an unknown quantity of images in the form of an a collection of byte arrays. (I can't change this) I need to display each image on a single aspx webpage. I'm currently using the Microsoft.Web.GeneratedImage control; [URL] to display the images.
[Code]...
View 3 Replies
Apr 30, 2009
I am using Visual Basic 2008, and I am making a simple meeting planner program. The data stored for each day is stored into an array with three fields:
calendars.Days
calendars.ToD
calendars.Appointment
[code].....
View 3 Replies
Aug 10, 2010
How can I delete an item from an array in VB.NET?
View 3 Replies
Nov 17, 2008
I have a rather simple question - how do i delete an array of buttons (not reassigning different values, but removing the buttons and keeping the array for storage of other buttons). I haven't got a clue
View 1 Replies
May 4, 2009
I would like to format output to a property of a custom control I have made.For instance I have a literal control in my control and when populated I want to check if it is longer than 30 characters long, if so, then go to the next space (as to not cut the word off) after the 30th character and place a <br /> tag in to place the next 30 characters on the next line.So if there were 100 characters in a string, there would be 3 line breaks in the label.I have the looping worked out to get the label populated but cannot get how to dymaically create the array based on the string lenth property and index of method.
View 7 Replies
Dec 8, 2011
I'm working with a structure array but I don't know how to delete a specific position...
View 8 Replies
Jun 6, 2011
Dim myArray() As Integer = {a, b, c, d, f}[code]...
Based on the code above i would like to remove the largest and smallest element from the array list and then put it into a new array list.
View 3 Replies
Dec 16, 2011
I'm having an array of ListViewItem and I want to delete the first item. I tried doing this with:
myItems(0).Remove()
But it's still there. According to the tooltip:
"Removes the item from it's associated System.Windows.Forms.ListView control"
Since my array isn't associated with a ListView control, could that be it?How to do it?
View 5 Replies
Jun 18, 2009
Is it possable to remove a row from a multi-dimensional array?
View 5 Replies
Jan 13, 2009
I'm having an array of ListViewItem and I want to delete the first item.
I tried doing this with: myItems(0).Remove()
But it's still there. According to the tooltip: "Removes the item from it's associated System.Windows.Forms.ListView control"
Since my array isn't associated with a ListView control, could that be it? How to do it?
View 2 Replies
May 17, 2011
I need a way to delete the last element in an array when I don't know how big the array is.Basically I need the VB version of php array_pop, but nothing relevant seems to be appearing in search results.
View 2 Replies
Mar 11, 2009
have an ArrayList of arrays and I am having issues iterating through it to delete cetain entries.I want to go through the entire ArrayList and check if the array at index 0 equals "". If it does, then put that into another array.heres the exception i get
Quote:
System.ArgumentOutOfRangeException was unhandled
Message="Index was out of range. Must be non-negative and less than the size of the
[code].....
View 5 Replies
Sep 11, 2009
In VB.NET, if I create a class it is a reference-type. But, if that class it chock full of value type properties, how is this handled? If the class is instantied but never filled, I suspect a pointed for to the heap is allocated. But is more space allocated on the stack for all of it's value type properties?
View 4 Replies
Nov 28, 2009
Dim strArray() As String = {"test1", "test2", "test3"}
strArray.SetValue("", 1)
Console.WriteLine(strArray.Length)
Console.ReadKey()
This still leaves me with an empty array value, how can I just delete it or can't I? Do I have to use an arraylist and if so how do I convert an array into an arraylist?
View 1 Replies