- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
22 Posted Topics
Re: I am sorry if I am mistaken but I don't know if it is possible to insert a full PDF file into a database. But I might be wrong. My other question would be, why would you need a PDF file stored in a database? Could you store the PDF … | |
Hey everyone.. I have two tables, newTable and newTable2, I am trying to append newTable into newTable2.. They both have the same column names so I thought it would be cake.. If possible I would like it to remove duplicates also.. The code I have is [CODE]CurrentDb.Execute "INSERT INTO newTable2 … | |
Hey everyone.. I do not know if this is the correct spot to write this but here it goes.. I hate Java.. Its a pain to learn for me.. I know some C++ and VB.net and basically my question is, Is there any compilers or anything out there that can … | |
Re: Do you want to open up notepad externally or still in vb.net?? To open up notepad externally you just [CODE]Dim p As Process = Process.Start("NotePad.exe")[/CODE] Or for a file [CODE]Dim p As System.Diagnostics.Process = Process.Start("c:\test.xls")[/CODE] If you dont want to open it externally, go to project, add form.. and when … | |
Re: I am kinda confused on this question.. If you are running the music inside vb.net by a button click for example. You can create a timer that shows the time from when you clicked the button to now.. Or if you are listening to the music from a windows media … | |
Hey Everyone, Currently I have the code as [CODE]Dim ExcelApp, ExcelWB ExcelApp = CreateObject("Excel.Application") ExcelApp.visible = True ExcelWB = ExcelApp.Workbooks.Open("C:\test.xls") ExcelWB.saveas("C:\test2.xls")[/CODE] This works good but it only opens the excel outside of the webpage and not on the inside.. I have tried the iframes, but, in my opinion, it is … | |
Re: I will explain in sudo code for now.. But if you need assistance I will help you out.. But what I would do, (Which is not always the best thing), is use a loop with a function.. use a loop to go through the length of the word.. if the … | |
Re: What type of file is this?? Is it a doc?? Rtf?? Picture?? [CODE] dim filename as string System.Diagnostics.Process.Start(filename) [/CODE] That works for RTFs and Docs for sure.. Runs it in Microsoft Office.. | |
Re: I just wanna make this question more clear for me.. Are you saying you want a program that repeats keystrokes, mouse clicks and mouse movements?? Like you want to be able to press the record button, do what you want with the mouse.. then press the play button and itll … | |
Re: What are you trying to do with the database exactly?? Your question is too vague for me to even start to help you.. I have used access databases for many reasons in vb.net such as login creation along with many others.. Any ideas?? | |
Re: I learned VB6 in college (last semester) and then learned vb.net from my knowledge from VB6 but I am by no means an "expert".. I am trying to read a book on how to teach myself C and C++ but for some reasons I cant do the books well.. I … | |
Hi All on Daniweb.. I am starting a little project that needs hardware and software.. I decided to first start with the software and thats where Im having some trouble right now.. I can easily make a virtual keyboard that runs in vb.net but what i want it to do … | |
Re: VB6 and VB.Net have some differences.. You can go here to look at some differences.. [url]http://www.programmersheaven.com/2/FAQ-VBNET-VB6-VBNET-Differences[/url].. A couple major differences I feel is the control array.. In VB6 it asks if you would like to create a control array while in VB.net it doesnt.. Also in vb6 they have the … | |
Re: Okay.. If you want to open it EXTERNALLY you can just use the System.Diagnostics.Process.Start("excel.exe") .. If not you need to make a container for the excel to open to.. To create a blank excel file and open it I usually start off with an invisible richtextbox.. Then i use the … | |
Hello All, I have created a page using VB6 dhtml.. It works fine within VB but when I try to export it to my website, the buttons wont function.. I want to now put that DHTML page on my website.. Any ideas on how to get my buttons to function … | |
Okay.. Lets say I have ten labels and I want a random number between one through ten in each label.. But in the labels I dont want to have duplicates so that way in labels 1 through 10 they will have an integer between 1 and 10.. But randomized.. | |
Hi All.. I am angry cause its such a little thing but its a big part of my project so Here is the scenario.. I have an access database with a table called People and a Field called Names.. In the Names field I have five entries. A B C … | |
Okay.. I have an Excel sheet and an Access database.. For example, my Access database has a bunch of numbers in a column.. For example it will look like, Numbers 1 2 3 4 5 6 7 8 I want to be able to look at the field Numbers and … | |
Ok.. Here is my problem.. I have a blank form and I need to add 700 Richtextboxes.. This will act like a table.. It will be 7 Columns with 100 Rows.. Right Now, I know how to make 700 Richtextboxes.. I am using Dim TC as New Richtextbox DIm I … | |
Here is my problem. I have about 100 Richtextboxes in my Form.. All of them have a persons First and Last name in them.. Is there anyway to make a Find button that if I type in someones name into a textbox that It will find the persons name in … | |
Re: Can you give us an example?? I dont quite understand.. Is there 50 words scrambled and you need to Unscramble and find one word?? | |
In VB 2005, I want to be able to make a window and then have a program i already created RUN in the window INSIDE VB 2005.. So for example: I want to be able to make a Window inside VB 2005 and be able to run MS Word.. Is … |
The End.