Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. JunglesMcBeef

    Records not updating, datareader not showing new records

    Hi, I'm having trouble retrieving an ID field from records I insert into an Access database. The record inserts fine, but then when I read the database again, even if i create new oledb connection and command objects, it doesn't add the new record to the reader, but when i open the database...
  2. JunglesMcBeef

    Redirect to a URL based on the current URL

    Hey, I'm pretty new to the whole web development side of things. Now, the problem is, i have the code, i just need a page property (the URL) to continue. Here is my code: <script runat="server" language="VB"> Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs)...
  3. JunglesMcBeef

    InvalidCastException when using DLL file

    Hi, I have built a dll file, and created a reference to it in a new project. Now when I go to run my new project, whenever it references the class from the DLL file I get an InvalidCastException. This doesn't happen if I add the class as an existing item to my new project, only when I...
  4. JunglesMcBeef

    Refresh system tray icons

    Hi, I was wondering if there is a way to refresh the icons in the system tray. If I kill the process, the icon stays in the taskbar until i wave the mouse pointer over it, then it disappears, even though the process has been killed. If I exit through right clicking on the icon in the taskbar it...
  5. JunglesMcBeef

    Hard Drive not accessible in Logical Disk Manager

    Hi, I have a Western Digital HD(WDC WD800BB) that crashed recently, I have put it as a slave to a new HD to try and recover or get it working somehow. It shows up in bios as the slave drive, and even shows up as a disk drive in Device Manager, but when I click on Disk Management it freezes my...
  6. JunglesMcBeef

    Send keys to an app not in focus

    G'day, I'm trying to create a console program that opens IE and sends keys to log in. I have already got it working so the browser opens and can be sent keys while in focus, but I don't want the browser to be in focus when I send the keys. Is there a way to do this? Also, is there some sort of...
  7. JunglesMcBeef

    Inbox isn't refreshing

    G'day, I have noticed in Lotus Notes 6.5.3 that sometimes when a new message is read in the inbox, the Inbox folder still reads that there is a new msg (it still looks like Inbox(1)). Is there any way to address this problem? Is it a well known problem?
  8. JunglesMcBeef

    Convert XLM macro to VBA

    Hey All, I have a simple XLM statement that has confused me for a while now, i can't understand it. Can someone please interpret this to VBA for me: =IF(NOT(!FEM2>"")) I don't understand the !FEM2>"" side of it. I know that - !FEM is a reference to a cell, but I can't see how a numeric value...
  9. JunglesMcBeef

    Message won't send

    Hi, I'm trying to send an email through SMTP. I had it all working but for some reason it has stopped working after making minor changes I thought wouldn't change a thing. Anyway here's my current code: strMsg = "PO Number: " & oReceival.PONumber & _ vbCrLf & "Item Code: " &...
  10. JunglesMcBeef

    Associate MSDN with program

    G'day, I have a bit of a weird situation here. I reinstalled VS2003 but it didn't reassociate the MSDN files with the program, even when I reinstalled the MSDN in the same place. So, is there a registry value or something that I've missed that could provide the link to those files again so I...
  11. JunglesMcBeef

    Flushing the Streams

    G'day, I'm just wondering whether or not to flush my streamwriters/readers before I close them. Some examples in the MSDN that involve using the file stream display the usage of the flush() method before closing the streams but don't explain it's significance.
  12. JunglesMcBeef

    Date format not right

    G'day, I've been trying to use DateTime.Now.ToString("d") within # characters to save a date to an Access db with an Update query. Now the problem is, it saves the date to the table in American format, even though it is represented as Australian format in the string. How do i get the date to...
  13. JunglesMcBeef

    Assign a loaded form to an object variable

    G'day, I have a program that has a main form and many forms that are opened from the main form. Now, what I am trying to work out is if there is anyway to assign the main form to an object variable within one of those other forms, so I can work with the already loaded main form. I have been...
  14. JunglesMcBeef

    Object Libraries problem

    G'day, I have done something a little silly. I am using Office 2000, on Windows 2000 Pro. I have created a form in Access 2000 with a flexgrid. I also have an old installation of visual studio 6.0 tools on my computer, which I think includes a lot of the VB libraries (in particular, the...
  15. JunglesMcBeef

    Halfway through batch, now can't access it

    Hi, Dynamics 5.0: I have a batch that was almost ready for posting but then I got kicked out of Dynamics. Now when I try and access that batch from Transactions-Purchasing-Print cheques it gives me the msg "This batch has been marked for posting" and from anywhere else "This batch has been...
  16. JunglesMcBeef

    SQL Server 6.5 reinstall question

    Hi, I am about to reinstall 6.5 on our NT 4.0 server because our system drive is full and I want to put it on a different partition. I was just wondering if there is anything I should take into consideration when doing the reinstall (I want to keep all the existing information stored in the...
  17. JunglesMcBeef

    VB 6 $AU price

    G'day, I was just wondering if anyone could tell me the approx price of VB 6 (just the standard edition or professional or whatever) in Australian dollars, just VB not VS. I am trying to make a decision whether to purchase VB.NET and VB 6, and as you'd expect this is an important factor. Thanks.
  18. JunglesMcBeef

    Index property of ADO can't be used?

    G'day, I have a project in Access 2000, and when i try and set the index property of the ADODB.recordset i get the following error msg '3251': "Current provider does not support the necessary interface for Index functionality." I have set up the index already within the table, so there should...
  19. JunglesMcBeef

    Compare records more efficiently

    G'day, I was just wondering if there is an efficient way to compare a record from one table in a db with another record in a table in a completely different db, and see if they are identical. I have a table in access that was originally an import from SQL Server, and now I want to update the...
  20. JunglesMcBeef

    Help on declaring a variable that holds its values

    G'day, I have created a type and created an array from that type in the general declarations. I have 2 event procedures invoked with a respective command button each. The first procedure fills the array with the current text box values on the form (only one record ie one element of the array)...

Part and Inventory Search

Back
Top