VS 2012 SQL get values from function
If I have the following SQL function: Code: CREATE FUNCTION usp_GetValueTesting ( Â Â @ID VARCHAR(10), Â Â @Description VARCHAR(10) ) RETURNS VARCHAR(50) AS BEGIN Â Â return @ID + @Description END How...
View ArticleVS 2010 At what .net framework should I compile my software for more stability?
So I coded this software for a shop, and when I presented it I kept having errors. My software was compiled in .net framework 3.0 and it ran perfectly fine in my computers and laptop who are using the...
View Article[VB2010] - show numbers in a PictureBox by line spacing size
i convert these sub from VB6 to VB2010: Code: Private Sub WriteLineNumbers() Â Â Â Â ' write the line numbers in the picture box.. Â Â Â Â ' nice and quick way with the Print method.., ie.. no fancy...
View ArticleVS 2010 webbrowser disable flash and images
I've been searching on how to disable flash and image on webbrowser for few days now but still can't find a solution. some say importing a blank msacm32.dll would do the trick but I still can't get it...
View ArticleHow to Deploy a SQL Server 2008 Express database on a different computer
First time using SQL Server. I have created a SQL server 2008 Express database called "AbcDatabase" using SSMS. I have detached "AbcDatabase" so that I can use it in my application. I have an Windows...
View ArticleHow to get same values into List(of Size)
Hi :wave: please help .... _framelayersize is a LIST(of Size) .. 1) values are .. _framelayersize .Item (0) = {10,10} _framelayersize .Item (1) = {10,10} _framelayersize .Item (2) = {10,10}...
View Articleusing a webbrequest to do functions in webbrowser
INFO: i have a webrequest that i would like to impliment into my program that will do a function on my website but sending the webrequest alone doesnt work and also sending a login request errors with:...
View ArticleMultiple Interfaces
I have an annoying problem I'm pondering: A dll has an object that implements a couple interfaces. One of these interfaces is IMetric, which exposes a couple methods that expose a means to calculate a...
View ArticleActivate a Timer that is Inside a User Control
What I have is a custom made user control, which includes within it a couple of buttons, a textbox, a couple labels, and a timer. Essentially in this control you have one button that starts the timer...
View Articlejquery effects in vb
is it possible to add javascript or anything of the kind to a vb project for visual effect like a image pop up light box when image is clicked then fade away when user exite the pop up most likely a...
View ArticleVS 2012 DataGridView Columns
Can I please have some help with some code. Code: Â Â Private Sub SetupDataGridViewColumns(DataGridView As DataGridView) Â Â Â Â Dim DataGridViewColumnCollection As New...
View ArticleVS 2012 How to replace words in a string
Hi I need to replace sum words in a string. EX: me and amanda are go to town. When I use this Dim s As String = FileString.Replace("and", "") it removes the and but it also removes the and from amanda....
View ArticleVS 2010 Disable adobe reader plugin in Webbrowser
Hi all, I am currently trying to program a web scrapping program, which should be working fine if I searched using internet explorer or chrome - since the results would appear as text (html). However,...
View ArticleShow program above all Windows 8 apps
I made a program like On Screen Keyboard, all is ok except that, its window shown only when select Desktop from Windows 8 start menu, how can i make it shown above all Windows 8 apps e.g. Messaging,...
View ArticleWhat does 'No Source Available' mean ?
I'm trying to debug a project which has gone sick on me... Probably due to some 'weeding' in the Registry Patch. When I run the project all seems to work except that the texts in several TextBoxes...
View ArticleEnable/Disable barcode gun readings
Hello to all, Barcode gun reads a barcode into a textbox. Using the barcode, vb.net implement a code. During implementation I need to block/disable new barcode gun readings. After finishing the...
View ArticleVS 2010 How to Write Clipboard Data (Text, Image, Formats) from Word into a...
Hello community, I'm a little bit in despair because the German forums couldn't help me, excuse my English. First of all, I didn't use VB for 6 years, so I would say I'm a complete newbie by now and I...
View ArticleVS 2010 Data saving error
Hi I am using vb.net with sql server 2010, i am trying to save a single record in my table, pl see code Dim sqlStr As String = "SELECT * From TblLostSale where 1=2" Dim conn As New...
View ArticleVS 2010 Backcolor with disable fields
Hi every one, Have a look on image, all fields are disabled but some fields are with white background and some are with grey background. Help me out to make all fields with white background when...
View ArticleEmbedded Crystal Report Files
I added some Crystal Reports files into bin\debug (default compile folder), using code System.Windows.Forms.Application.StartupPath to load them and run it to create a exe file. I copied this exe file...
View Article