Posts
 
Reputation
Joined
Last Seen
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
6
Posts with Downvotes
6
Downvoting Members
5
3 Commented Posts
Member Avatar for coollife

I have to insert a image file into sqlserver 2005 in asp.net with c sharp. please provide me with the detailed code

Member Avatar for mostafarafi
0
2K
Member Avatar for coollife

i want to convert HTML page into asp.net , i tried changing the extension and saving it as .aspx . It worked but most of the options didnt work apart from images like submenus, links and other things so i want to know how to fully convert an html page …

Member Avatar for kvprajapati
0
207
Member Avatar for coollife

I am trying to browse an image and i will search for the images with the same name in the folder called IMAGES . If it exists i just replace it when i run my project using Visual Studio its working fine and image is perfectly getting replaced when i …

Member Avatar for YanivC
0
84
Member Avatar for coollife

Frankly speaking 100's of programmers read the problems and not 5 percent of them give suggestions or answers Retrieving the COM class factory for component with CLSID {00024500-0000-0000-C000-000000000046} failed due to the following error: 80070005. when website published not while running through VS 2005 I am trying to export data …

Member Avatar for kvprajapati
0
55
Member Avatar for coollife

this is in windows project i have one form which has a progress bar from that i am calling a class file which has decrypting function in it while it performs decryption of a file i want to show the progress of decryption in my form now how do i …

Member Avatar for Geekitygeek
0
184
Member Avatar for coollife

i have a checkbox inside a datagrid when i select few checkboxes in 1st page and when i move to 2nd page the checked status of 1st checkboxes disappear(they become false) one more doubt if i want to make a checkbox true which is in 3rd page how to do …

Member Avatar for kvprajapati
0
83
Member Avatar for coollife

i created a new folder and took this path and published from windows application to this folder I got three files Project folder Project application manifest setup.exe When i ran setup.exe file i got my winodws application running , but the thing was it didnt got installed on to the …

Member Avatar for avirag
0
113
Member Avatar for coollife

ex : while asp web project is running , i have an option for the user , if the user presses F8 key in index page he will be redirected to login page In the same way while vb application is running i should be able to capture the key …

Member Avatar for jlego
0
86
Member Avatar for coollife

I wil be selecting the image to resize using open file dialog box , That image has to be resized to very small size and then it should be converted to byte array and stored in the database converting to byte array and storing is working Image resizing and storing …

Member Avatar for Geekitygeek
0
93
Member Avatar for coollife

I am fetching the url of internet explorer browser ex: [url]http://google.com/accounts/service=orkut[/url]............................. for orkut.com website but for every page visited inside the orkut website urls keep changing So i was wondering is there any through which a website can be identified uniquely like ip address, or any text scanning or any …

Member Avatar for jlego
0
105
Member Avatar for coollife

is it possible to develop a c program which gets the shell windows and fetches the address bar or internet explorer url or a unique id specific to a website . solution solutin solution PLEASE

Member Avatar for jephthah
-1
81
Member Avatar for coollife

ex : Set ie1 = CreateObject("InternetExplorer.Application") ie.Navigate "http://www.gmail.com" the above code opens the gmail.com page but the url will be something like [url]http://www.google.com/accounts/[/url]......... I want to get the url , whats the code for it and how to get ip address of an website Please HELP

Member Avatar for vb5prgrmr
0
67
Member Avatar for coollife

I want the code to close all mozilla firefox windows I have tried doing it using findwindow function and linkbutton with no success Please provide me the solution

Member Avatar for AndreRet
-1
87
Member Avatar for coollife

<asp:Image ID="imgpdet" runat="server" Height = 350" Width="350"/> I want to assign the height and width of the image which is the same of the original image from database . Actual problem is i have an horizontal and vertical photos , if i give height matching the horizontal photo the vertical …

Member Avatar for kvprajapati
0
115
Member Avatar for coollife

[CODE] public void EncryptFile(string input, string output,RijndaelManaged alg1) { FileStream inputStream = new FileStream(input, FileMode.Open, FileAccess.Read); FileStream outputStream = new FileStream(output, FileMode.OpenOrCreate, FileAccess.Write); SymmetricAlgorithm alg = new RijndaelManaged(); alg.Key = alg1.Key; alg.IV = alg1.IV; byte[] data = new byte[inputStream.Length]; inputStream.Read(data, 0, (int)data.Length); alg.Padding = PaddingMode.PKCS7; ICryptoTransform encryptor = alg.CreateEncryptor(); CryptoStream …

Member Avatar for kvprajapati
0
84
Member Avatar for coollife

1) I want to Close all mozilla firefox windows running , for that to happen as i know there is two ways a) to use link label b) findwindow Link Label finds the mozilla browser but with the found browser i can get the url of the browser but i …

Member Avatar for coollife
0
219
Member Avatar for coollife

[CODE] Set fso = New FileSystemObject If fso.GetFileName(txtPath + sname) = True Then Kill txtPath + sname MsgBox "File Deleted" End If [/CODE] txtpath is the path to C:\Documents and Settings\All Users\Start Menu\Programs\Startup where in startup i have an shortcut file fso.getfilename doesnt find the shortcut file . I want …

Member Avatar for AndreRet
0
91
Member Avatar for coollife

First thing i should be able to access the contents of the aspx webpage ex : [url]http://abcd.com/homepage.aspx[/url] In that web page i should be able to display the name localuser . I heard that using vb6 we can access the HTML contents of a page If yes, then i should …

0
66
Member Avatar for coollife

For ex: i have an aaa.exe running in windows startup and visible in windows startup, What i want is to make aaa.exe invisible or make aaa.exe replaced by null characters .

Member Avatar for AndreRet
0
69
Member Avatar for coollife

For example i have an vb.exe file by name abcd.exe , what i want my vb code to do is to rename the abcd.exe to abcd.dll .

Member Avatar for AndreRet
0
28
Member Avatar for coollife

byte array size is 977kb when i try to store into ms access database its getting stored without error making the ms access database size 140kb(i know it uses different format to store so lesser kb) But when i try retrieving the same code from ms access database and when …

Member Avatar for DdoubleD
0
484
Member Avatar for coollife

[CODE] // writing to access database byte[] buff = null; FileStream fs = new FileStream(fileName, FileMode.Open, FileAccess.Read); BinaryReader br = new BinaryReader(fs); long numBytes = fs.Length; buff = br.ReadBytes((int)numBytes); mycon.Open(); OleDbCommand cmd = new OleDbCommand("INSERT INTO song VALUES('1','" + buff + "')", mycon); cmd.ExecuteNonQuery(); // reading from access database OleDbCommand …

Member Avatar for DdoubleD
0
241
Member Avatar for coollife

i have access file by name song.mdb which has field by name file where i am storing mp3 file in binary format . when i tried to read the field into ret byte array i am able to read only first 25 bytes . Why am i not getting the …

Member Avatar for coollife
0
106
Member Avatar for coollife

In my combo box i have kannada words like karnataka kerala mandya mysore kannada something like this , On key press event of combo box if ka (kannada alphabet is pressed) it should list the karnataka or whichever matches the word how to do this

Member Avatar for AndreRet
0
215
Member Avatar for coollife

what my problem is i have entered few keywords for my website but when i try searching for my website by entering the keywords specifed in the metatag, google doesnt display my website at all so does metatag keywords alone is enough or not if enough then ,if i give …

Member Avatar for mahgobb
0
191
Member Avatar for coollife

I got an excellent code for putting registry entry of my visual basic project in windows start up . Now my project runs automatically when windows starts, but the problem is i am unable to delete the registry entry fully at all. I mean to say in my vb project …

Member Avatar for vb5prgrmr
0
85
Member Avatar for coollife
Member Avatar for vb5prgrmr
0
70
Member Avatar for coollife

Is there a way to make a pen drive/usb drive read only , i mean to say u should not be able to copy its contents to any system or delete its contents or modify its contents, U SHOULD ONLY BE ABLE TO READ ITS CONTENTS Provide the means to …

Member Avatar for debasisdas
0
25
Member Avatar for coollife

dim hwnd as long I am using FindWindow function to find whether Internet Explorer is open or not . hwnd = FindWindow(vbnullstring,"Google - Microsoft Internet Explorer") the problem is it easily find most of the windows , but in few cases for example if i type something in google search …

Member Avatar for marco93
0
120
Member Avatar for coollife

My project is Internet Explorer Blocker which blocks all websites apart from what i have mentioned . Its working fine, now as the user should not be able to close the vb application For that to happen the application should not be visible . So for the what is the …

Member Avatar for omoridi
0
130