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 Shaun E 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: *

  • Users: angela4eva
  • Order by date
  1. angela4eva

    database design help

    I am creating an employee database... this will be used by two different companies the first table is employee and second table is departments is it better to create a autonumber field as primary key and link it departments table or use the esixting employeeidid as primary key? if i use the...
  2. angela4eva

    ftp using wininet.dll file size

    works great..but when i try to rename the fiel on the server it cannot do i need to close the file?
  3. angela4eva

    vb.net getpath

    i am using Console.WriteLine(Path.GetDirectoryName("C:\temp\myfile.txt") and thsi works liek a charm thanks Ali
  4. angela4eva

    vb.net getpath

    its saying Dim strPath() As string Number of indices is less than the number of dimensions of the indexed array.
  5. angela4eva

    vb.net getpath

    how can i get the path from a string c="c:\prodcuts\newone\bestones\values.zip" i need to get hut the path from this "c:\prodcuts\newone\bestones\" is there a way to do this?
  6. angela4eva

    ftp using wininet.dll file size

    how can i find the size of file on the remote server .i am using ftpputfile in wininet.dll..please help urgent
  7. angela4eva

    ftp vb.net

    arznrchrd, How can i check the file of the file on remote server? thanks
  8. angela4eva

    number of bytes

    I am using FTPPUtFILE and FTP_TRANSFER_TYPE_BINARY to upload the files...When i use put command on command prompt o manually upload fiels it gives me number of bytes tranferred..Is it possible to get number of bytes tranferred when using ftpputfile in my vb.net program. thanks
  9. angela4eva

    ftp vb.net

    but i need to loop through every file in the folder and upload it?is it possible with this?
  10. angela4eva

    ftp vb.net

    hi friends.. i am currently using command file arguments to upload files to a server manually..i would like to do it in vb.net program..please help C:\upload\>Ftp FTP> open <ipaddress> username:<username> password:<password> ftp>binary ftp> put <filename> <filename> --please let me know how i...
  11. angela4eva

    loop through and get files name sin folder

    thanks..I need to get each file anme at a time as i need to pass it as parameter to a function thanks
  12. angela4eva

    loop through and get files name sin folder

    I have a folder called c:\input..i need to loop through this folder and get the anmes of all the files..note there are no sub folders in the input folder...please help. thanks
  13. angela4eva

    send a network message

    Hi, I need your help .I am trying to write a program to send a network message from my vb.net message..As i my program is running if the process is successful,i want to send console netwrok message to theconcerned person on network.Can anyone guide me in the right direction as how to do it.i...
  14. angela4eva

    exit code and waitforexit()

    I am using the below code for waiting for the process to finish before i get to next process Dim myProcess As Process = System.Diagnostics.Process.Start("main.exe") myProcess.WaitForExit() myProcess.Close() Dim myProcess1 As Process =...
  15. angela4eva

    search for string in text file

    Hi would appreciate if some one could help me with fatest way to search for a string "asf0798" in my text file data.dat and return a yes or no value(i.e the string exists or not..Some one please help with the fatest way to do this. thanks
  16. angela4eva

    how to wait and execute

    hello, i am trying to write a program that calls many exe's I want to wait till one exe has finished executing and then go the next step.the order is very impotant as one exe loads the data nad next exe processes that data.So my questions is how can i wait till the process has competed and to to...
  17. angela4eva

    small vb.net issues

    The data is imported,i want to keep the rec number same except for the ones with zeros that have to be given the subsequent numbers
  18. angela4eva

    small vb.net issues

    i have a table that have record numbers,but record numbers are zero i want to query that table,get all the records that have a record number as zero then look at thehighest rec number and start increamenting and give the next numbers to the records with recno as zero's.Any help will be...
  19. angela4eva

    basic zip code and state check...

    i am trying to write zip code and state validation checks in a vb6 form.. here i found a script to do zip chekc but i guess its in a different language any help appreciated string REGEX_US_POSTCODE = @"\b[A-Z][A-Z]\s{1,4}\d{5,5}\s?\-?\s?(\d{4,4})?\b"; Regex rx = new...
  20. angela4eva

    stored procedure

    I have a stored procedure and there have been some isuues recarginf the dates and i have to hordcode some dates ..can any one please let me know how i can accomplish times here is my stored proc.can i write a conditional if.. @startdate datetime @enddate datetime select number1,name from log...

Part and Inventory Search

Back
Top