vb

Editing a labels text value through JavaScript in VB ASP.NET

I have a simple form containing two text boxes, I am attempting to apply some validation to the first text box using JavaScript. This is the first time I have attempted this and am having some trouble. I have a label beside the text box stating an error, this labels visibility property is set to False. I wish the labels visibility to tu...

Excel 2003 VBA : how to paste a shape after selection

Just wondering how I can paste an object after I have selected it: sheet1.shapes("MyShape").select With Selection basically jsut wondering how to duplicate a shape object, or any object really. Eventually I am looking to use code to copy a shape object like above from Excel, and paste it into an access form automatically. Thanks! ...

Want to send the text to the Active Window

Want to send the text from my current vb application to the Active Window and that text should be displayed in the text area of the active window can anyone help me? ...

Pass parameter as text to JavaScript function from .NET code-behind

Basically, I have a gridview that is opened in a new window from the parent window. It has a bunch of records with a view button to view the details of each record (which stays in the same newly opened window). I have a calendar in the parent window that accepts a Date querystring parameter to set the current date on the calendar at page...

An example of advanced database search

Hi there, im looking for an example script. I saw one yesterday but for the life of me I can't find it again today. The task I have is to allow the user to search 1 database table via input controls on an aspx page where they can select and , or , equals to combine fields, generating the sql on the fly with concat/stringbuilder or sim...

How to make all possible sum combinations from array elements in VB

If there is an array with elements: 1,2,3,4, the program should return another array with sum of all combinations: 1 2 3 4 3 (1+2) 4 (1+3) 5 (1+4) 5 (2+3) 6 (2+4) 7 (3+4) 6 (1+2+3) 7 (1+2+4) 8 (1+3+4) 9 (2+3+4) 10 (1+2+3+4) ...

I need to convert the date from mm/dd/yyyy to dd/mm/yyyy in vbscript.

HI Everyone, So far I have this: FormatDateTime(negativeItemsRS("ItemDate"), 0) Its displaying the date in the format of mm/dd/yyyy. I want to convert that to a dd/mm/yyyy Please help not sure how to do this. Thanks, ...

How to sort a gridview once a radio button is selected

I'm trying to sort records in the gridview right after a radio button is selected. My approach is with the dataview, but because the dataset variable doesn't survive a round trip to the server, I don't know how to make this happen. please help! Public Sub GetCustomers() db.RunProcedure("usp_customers_get_all") db.doSort...

maintain pageViews in global.asax (asp.net)

I need a function in global.asax file which gets called only once when user enter a page url. application_beginrequest gets called 50-60 times in a single page( as to render a page several requests go to server.) i though of a solution - I can write my fucntion in global.asax and call it on page load of other pages but in that solution...

Lose the last 3 chars from string variable

if the last 4 chars in my string(result) are " AND" or the last three chars are " OR" I would like to remove these from the string. So far I have am trying result.trimend and a few other methods but am unsure how to get it working. Thanks ...

Accessing images programmatically in asp.net

Hi. I am using visual studio 2008 coding asp.net.vb I have 20 images on my site, the image holders being named picbox1 picbox2 picbox3 ... picbox20. I want to be able to address each picbox programmatically; pseudo code would look something like this if myvar = 1 then picbox(myvar).imageurl="XXXXXXX" end if Can this be done and if ...

How to generate alphanumeric id in Oracle which can be shown in vb

In my vb application I want an autogenerated id of alphanumeric characters, like prd100. How can I increment it using Oracle as backend? ...

VB .NET Shared Function if called multiple times simultaneously

Consider I have a shared function:- Public Shared Function CalculateAreaFromRadius(ByVal radius As Double) As Double ' square the radius... Dim radiusSquared As Double radiusSquared = radius * radius ' multiply it by pi... Dim result As Double result = radiusSquared * Math.PI 'Wait a bit, for the sake of t...

MS Access 2003 : VBA for INSERT INTO statement, new record: how to grab autoid number created?

I have a button click event that takes information from controls and enters it into a table via INSERT INTO SQL statement in VBA. I was wondering if there is anything I could add to this, or some other method to acquire the record number that is created for the record? Could I just turn around and SELECT against the table and use rs.la...

Print Dialog Does not show up in Crystal Report Viewer on 64 bit machine

Hi: I have a client, who is running Windows 2008 Server 64 bit. He is running our software, it has a built in crystal report viewer functionality. The print dialogue just wouldn't work no matter what. It worked on our 32 bit box and we verified it. I verified it on our 64 bit box, and the print dialogue didn't open either. I did some re...

MS Access 2003 - Save button enabling on form open on different tabs

I have a tab control on a form, and a couple different tabs have save buttons on them. Once the user saves data (via SQL statements in VBA), I set the .enabled = false so that they cannot use this button again until moving to a brand new record (which is a button click on the overall form). so when my form open i was going to reference ...

Not Getting Profile properties in Code Behind.

I am trying to get Profile properties in the code behind. But I am not getting any intellisence like Profile.Homephone or Profile.CellPhone. When I try Dim memberprofile As ProfileBase = HttpContext.Current.Profile Dim homePhone As String = memberprofile.GetPropertyValue("HomePhone").ToString() I get Data is Null. This method or propert...

ACCESS 2003 Excel 2003 : VBA for opening Excel file from Access and copying a pictre from excel then returning it to Access form

So I have an excel workbook that has a nice global map of shaperange objects. With some very simple code I can change the colors, group and ungroup collections of countries into arrays, etc...and it works pretty well. However, I would like to bring this into Access. So I could copy and paste all the shapes into an access form manually, ...

PUMA setup question

Can some one guide me on how to setup the puma project? http://puma.codeplex.com/SourceControl/list/changesets The guide they have is incomplete ...

(VB or C#) Run app in system tray and listen to keyboard input even when the app is not in focus

I want to make an app which on loading sits in the system tray and even after I open another program (say notepad or vlc or anything) i.e. even when the app is not in focus and if I press "G" on my keyboard, the tray icon should show a tool tip - "key G is pressed". I have tried several codes but nothing works when the app goes out of fo...